body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    max-height: 100px;
    background: #fff;
    padding: 5px;
    border-radius: 3px;
}

.navbar {
    align-items: center;
    padding: 10px 0;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
    background: #cda86a;
    border-radius: 100px;
    padding: 17px 30px;
    margin-right: 50px;
    border: none;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

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

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #cda86a;
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px auto;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background: var(--accent-secondary-color);
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
}

.btn-default.btn-highlighted:hover {
    color: #1c3556;
}

.btn-default.btn-highlighted::after {
    background: #fff;
}





.topbar {
    background: var(--accent-secondary-color);
    padding: 15px 0;
}

.topbar-contact-info p {
    line-height: normal;
    color: #fff;
    margin-bottom: 0;
}

.topbar-contact-info p a {
    color: inherit;
    text-decoration: underline;
    transition: all 0.4s ease-in-out;
}

.topbar-contact-info p a:hover {
    color: #cda86a;
}

.topbar-link-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center;
}

.topbar-contact-info-list {
    border-right: 1px solid #ffffff1a;
    margin-right: 25px;
    padding-right: 25px;
}

.topbar-contact-info-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-contact-info-list ul li {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
}

.topbar-contact-info-list ul li::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -15px;
    background: #fff;
    width: 2px;
    height: 100%;
    transform: rotate(8deg);
}

.topbar-contact-info-list ul li:last-child:before {
    display: none;
}

.topbar-contact-info-list ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.topbar-contact-info-list ul li a:hover {
    color: #cda86a;
}

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

.topbar-social-links ul li a {
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
    color: #cda86a;
}

.topbar-social-links ul li a i {
    color: inherit;
}

header.main-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: transparent;
    border-bottom: 1px solid #ffffff1a;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    background: var(--accent-secondary-color);
    border-bottom: 1px solid #ffffff1a;
    border-radius: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    position: relative;
    margin: 0 10px;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 12px 10px !important;
    color: #fff;
    background: transparent;
    border-radius: 0px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: #cda86a;
}

.main-menu ul ul {
    position: absolute;
    left: 0;
    top: 100%;
    transform: scale(1, 0.8);
    transform-origin: top;
    width: 235px;
    background: #cda86a;
    border-radius: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: #1c3556;
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: #fff;
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    position: relative;
    top: 0;
}

.slicknav_btn {
    background: #cda86a;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: #1c3556;
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: #cda86a;
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 7px 20px;
    color: #1c3556;
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: #fff;
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: #1c3556;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: #fff;
}




/************************************/
/*** 	    Hero css	      ***/
/************************************/

.hero .container {
    position: relative;
    z-index: 2;
}

.hero {
    position: relative;
    background-image: url(../images/hero_banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    align-content: end;
    padding: 210px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #1a2636d9 0%, #1a2636d9 45%, #1a2636d9 55%, #1a2636d9 85%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .section-title .section-sub-title {
    background: #ffffff1a;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-color: transparent;
}

.company-slider {
    border-top: 1px solid #ffffff1a;
    padding-top: 40px;
}

.company-slider-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 2.083vw;
    border-top: 1px solid #ffffff1a;
    padding-top: 40px;
}

.company-slider-title {
    width: calc(26% - 1.042vw);
    border-right: 1px solid #ffffff1a;
    padding-right: 2.083vw;
}

.company-slider-title h2 {
    font-size: 22px;
    color: #fff;
    line-height: 1.4em;
}

.company-supports-slider {
    width: calc(74% - 1.042vw);
}

.company-supports-logo {
    text-align: center;
}

.company-supports-logo img {
    width: 100%;
    max-width: 164px;
    height: 40px;
}


.hero .container {
    position: relative;
    z-index: 2;
}

.section-title h1 {
    font-size: 72px;
    line-height: 1.1em;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    
    color: #fff;
}

.hero-sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff1a;
    backdrop-filter: blur(30px);
    border-radius: 100px;
    padding: 5px 20px 5px 5px;
    margin-bottom: 15px;
}

.satisfy-client-image figure {
    display: block;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.satisfy-client-image {
    position: relative;
    display: inline-block;
    margin-left: -12px;
    border: 1px solid #fff;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.satisfy-client-image:first-child {
    margin: 0;
}

.hero-sub-heading .satisfy-client-image:first-child {
    margin-left: 0;
}

.satisfy-client-images {
    display: flex;
    align-items: center;
}

.satisfy-client-image figure img {
    width: 100%;
    max-width: 30px;
    border-radius: 50%;
}

.hero-sub-heading .satisfy-client-image figure img {
    max-width: 28px;
}

.hero-sub-heading .satisfy-client-content p {
    font-weight: 500;
    color: #fff;
    margin: 0;
}

figure {
    margin: 0;
}

.section-title {
    margin-bottom: 40px;
}

.hero-content .section-title p {
    max-width: 720px;
    color: #fff;
    letter-spacing: 0.5px;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.hero-contact-item {
    max-width: 420px;
    border: 1px solid #ffffff1a;
    background-color: #0f0e2d1a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 30px;
}

.hero-contact-item-header h2 {
    font-size: 22px;
    color: #fff;
}

.hero-contact-item-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #ffffff1a;
    margin-top: 30px;
    padding-top: 30px;
}

.hero-contact-item-body .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: #cda86a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-contact-item-body .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.hero-contact-item:hover .hero-contact-item-body .icon-box::before {
    transform: scale(1);
}

.hero-contact-item-content p {
    color: #fff;
    margin: 0;
}

.hero-contact-item-content h3 {
    font-size: 22px;
    color: #fff;
    margin-top: 5px;
}

.hero-contact-item-body .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.hero-contact-item-content h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

/************************************/
/*** 	   About Us css		  ***/
/************************************/
.section-title .section-sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    color: #1c3556;
    border: 1px solid #0f0e2d1a;
    border-radius: 100px;
    padding: 8px 20px 8px 41px;
    margin-bottom: 15px;
}

.section-title .section-sub-title::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-section-sub-title-primary.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translateY(-50%);
}


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

.about-us-image-box {
    display: flex;
    flex-wrap: wrap;
    margin-right: 15px;
}

.about-us-image-box-1 {
    width: 57%;
    align-content: end;
}

.about-us-image {
    position: relative;
}

.about-us-image figure {
    display: block;
    border-radius: 14px;
}

.about-us-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.about-us-image-box-1 .about-us-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -85%);
    background: url('../images/about-us-arrow (1).svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 126px;
    height: 123px;
}

.about-us-image-box-1 .about-us-image figure {
    position: relative;
    border: 6px solid #ffffff;
    border-radius: 20px;
    z-index: 1;
    max-width: 332px;
    max-height: 350px;
    width: 100%;
    height: 100%;
}

.about-us-image-box-1 .about-us-image figure img {
    aspect-ratio: 1 / 1.053;
    max-width: 332px;
    max-height: 350px;
    width: 100%;
    height: 100%;
}

.about-us-image-box-2 {
    width: 43%;
    text-align: right;
}

.about-us-image-box-2 .about-us-image {
    position: relative;
    margin-left: -165px;
    z-index: 0;
}

.about-us-image-box-2 .about-us-image figure img {
    aspect-ratio: 1 / 1.225;
    max-width: 425px;
    width: 100%;
    max-height: 520px;
    height: 100%;
    object-fit: cover;
}

.contact-us-circle {
    display: inline-block;
    transform: translateY(-50%);
    margin-right: 50px;
}


.contact-us-circle a {
    position: relative;
    display: inline-block;
    border: 6px solid #fff;
    border-radius: 50%;
    z-index: 1;
}

.contact-us-circle a img {
    width: 100%;
    max-width: 130px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    animation: infiniterotate 20s linear infinite;
}

/* @keyframes infiniterotate {
    100% {
    transform: rotate(360deg);
}
} */


.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.section-title h2 {
    font-size: 46px;
    line-height: 56px;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    
}

.about-highlighted-box {
    background: #f7f0e3bd;
    border-left: 6px solid #1c3556;
    border-radius: 14px;
    padding: 30px;
}

.about-highlighted-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.about-body-content-box {
    width: calc(62% - 15px);
    align-content: center;
}

.about-counter-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.about-counter-item {
    position: relative;
    width: calc(50% - 30px);
}

.about-counter-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    background: #0f0e2d1a;
    width: 1px;
    height: 70%;
    transform: translateY(-50%);
}

.about-counter-item:nth-child(2n + 2)::before,
.about-counter-item:last-child::before {
    display: none;
}

.about-counter-item h2 {
    font-size: 40px;
    line-height: 1em;
}

.about-counter-item p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.about-us-btn {
    border-top: 1px solid #0f0e2d1a;
    margin-top: 30px;
    padding-top: 30px;
}

.about-us-body-image {
    width: calc(38% - 15px);
}

.about-us-body-image figure {
    display: block;
    border-radius: 14px;
    height: 100%;
}

.about-us-body-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.75;
    object-fit: cover;
    border-radius: 14px;
}

.about-us-content .section-title p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: #000;
}


.about-us-btn .btn-default.btn-highlighted::after {
    background: #1c3556;

}

.about-us-btn .btn-default.btn-highlighted:hover {
    color: #fff;
}


/************************************/
/*** 	    Services css	      ***/
/************************************/
.services-section {
    background-color: #f4f7fb;
    padding: 100px 0;
}

/* ───────────── HEADER ───────────── */
.services-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cda86a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-subtitle::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #cda86a;
    border-radius: 50%;
}

.services-heading {
    color: #1c3556;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-heading span {
    font-style: italic;
}

.services-description {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ───────────── CARDS WRAPPER ───────────── */
.cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}


.card-col {
    flex: 1 1 calc(33% - 23px);
}

/* ───────────── SERVICE CARD ───────────── */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px 30px;
    box-shadow: 0 4px 24px rgba(28, 53, 86, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    background: #1c3556;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(28, 53, 86, 0.28);
}

/* ───────────── ICON ───────────── */
.icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #1c3556;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.icon-wrap i {
    font-size: 26px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-card:hover .icon-wrap {
    background-color: #cda86a;
}

.service-card:hover .icon-wrap i {
    color: #1c3556;
}

/* ───────────── CARD TITLE ───────────── */
.service-card .card-title-text {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #1c3556;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.service-card:hover .card-title-text {
    color: #ffffff;
}

/* ───────────── CARD DESCRIPTION ───────────── */
.service-card .card-desc {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #5c5c5c;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.service-card:hover .card-desc {
    color: #fff;
}

/* ───────────── DIVIDER ───────────── */
.service-card .card-divider {
    height: 1px;
    background-color: #e8edf3;
    margin: 22px 0;
    transition: background-color 0.3s ease;
}

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


.service-card:hover .btn-default {
    color: #ffffff;
}

/* .services-section .btn-default {
    width: max-content;
    padding: 0px 0px;
    color: #000;
    background: transparent;
}



.services-section .btn-default::before {
    width: 26px;
    height: 26px;
    background-position: center center;
    background-size: 16px auto;
}  */

.services-section .service-content-pane .btn-default.btn-highlighted::after {
    background: #1c3556;
}

.services-section .section-title p {
    width: 100%;
    max-width: 740px;
    margin: 25px auto 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;

}


/************************************/
/*** 	Why Choose Us css	  ***/
/************************************/

.why-choose-us {
    padding: 120px 0;
}

.why-choose-us-content {
    height: 100%;
    align-content: center;
}

.why-choose-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.why-choose-list ul li:last-child {
    margin-bottom: 0;
}

.why-choose-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-secondary-color);
}

.why-choose-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.why-choose-item {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.why-choose-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: #cda86a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.why-choose-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #1c3556;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.why-choose-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.why-choose-item-content {
    width: calc(100% - 65px);
}

.why-choose-item-content h3 {
    font-size: 18px;
    line-height: 1.4em;
}

.why-choose-btn {
    border-top: 1px solid #0f0e2d1a;
    margin-top: 40px;
    padding-top: 40px;
}

.why-choose-us-image-box {
    position: relative;
    height: 100%;
    margin-left: 15px;
}

.why-choose-us-image {
    height: 100%;
}

.why-choose-us-image figure {
    display: block;
    height: 100%;
    border-radius: 14px;
}

.why-choose-us-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.207;
    object-fit: cover;
    border-radius: 14px;
}

.why-choose-cta-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    max-width: 350px;
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    margin-left: auto;
    z-index: 1;
}

.why-choose-cta-box-content h3 {
    font-size: 18px;
    line-height: 1.4em;
}


.why-choose-author-image figure {
    display: block;
    border-radius: 50%;
}

.why-choose-author-content h3 {
    font-size: 22px;
}

.why-choose-author-content p {
    margin: 5px 0 0;
}


.why-choose-list-item ul {
    list-style: none;
    padding: 0;
}

.why-choose-list-item ul li {
    position: relative;
    line-height: 26px;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.why-choose-list-item ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    line-height: 28px;
    font-weight: 900;
    color: #1c3556;
    top: 0;
    left: 0;
    margin-bottom: 15px;
}

.why-choose-image-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-image-box-1 {
    width: calc(65% - 15px);
    background-color: #f5f9ff;
    text-align: center;
    padding: 10px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.why-choose-header {
    padding: 30px;
    margin-bottom: 10px;
}

.why-choose-client-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.satisfy-client-images {
    display: flex;
    align-items: center;
}

.why-choose-header .satisfy-client-image {
    border-color: #f8f6f2;
}

.satisfy-client-image:first-child {
    margin: 0;
}

.satisfy-client-image {
    position: relative;
    display: inline-block;
    margin-left: -12px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}



.why-choose-header .satisfy-client-image figure img {
    max-width: 40px;
}

.satisfy-client-image figure img {
    width: 100%;
    max-width: 30px;
    border-radius: 50%;
}

.why-choose-image {
    height: 100%;
}

.why-choose-image figure {
    display: block;
    height: 100%;
    border-radius: 14px;
}

.why-choose-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 14px;
}

.why-choose-image-box-2 {
    width: calc(35% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.Why-choose-support-box {
    background-color: #cda86a;
    border-radius: 14px;
    padding: 20px;
    overflow: hidden;
}

.why-choose-image-box-2 .why-choose-support-content {
    margin-bottom: 30px;
}

.why-choose-image-box-2 .why-choose-support-content p {
    color: #fff;
    margin: 0;
}

.why-choose-author-box {
    background-color: #f5f9ff;
    border-radius: 14px;
    text-align: center;
    padding: 20px;
}

.why-choose-author-image figure {
    display: block;
    max-width: 75px;
    border-radius: 50%;
    margin: 0 auto;
}

.why-choose-author-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.why-choose-author-content {
    margin-top: 20px;
}

.why-choose-author-content p {
    margin: 0;
}

.why-choose-support-image figure {
    display: block;
    max-width: 175px;
    border-radius: 14px;
    margin: 0 0 -30px -30px;
}

.why-choose-support-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
    border-radius: 14px;
}

.why-choose-client-content {
    margin-top: 15px;
}

.why-choose-client-counter h2 {
    margin: 0;
}

.why-choose-content .section-title p {
    line-height: 26px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/************************************/
/*** 	Process Section css	  ***/
/************************************/

.process-wrapper {
    background-color: #e8ecee;
    padding-top: 70px;
    padding-bottom: 90px;
}

.process-wrapper .section-title p {
    width: 100%;
    max-width: 740px;
    margin: 25px auto 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;

}

/* Header */
.label-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #1c3556;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1c3556;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.section-title strong {
    font-weight: 800;
}

.section-subtitle {
    font-size: 15px;
    color: #6c7a89;
    text-align: center;
    line-height: 1.6;
    max-width: 530px;
    margin: 0 auto 60px auto;
}


/* Individual card wrapper with offset logic */
.card-wrapper {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    max-width: 265px;
}

.card-wrapper.offset-down {
    margin-top: 90px;
}

/* Step Card */
.step-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
    padding: 30px 28px 40px 28px;
    position: relative;
    min-height: 230px;
}

.step-card .card-icon-wrap {
    width: 50px;
    height: 50px;
    border: 1.8px solid #1c3556;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-card .card-icon-wrap i {
    font-size: 22px;
    color: #1c3556;
}

.step-card .card-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #1c3556;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}



.step-card .card-text {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #5c5c5c;
    margin-top: 0px;
}

/* Step Badge */
.step-badge {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    position: absolute;
    z-index: 10;
    padding: 9px 9px 9px 9px;
    border-style: solid;
    border-width: 7px 7px 7px 7px;
    border-color: #e8ecee;
    border-radius: 40px 40px 40px 40px;
    width: 56px;
    height: 56px;
}

.step-badge.dark {
    background-color: #1c3556;
}


/* Badge positions per card */
.card-wrapper-1 .step-badge {
    bottom: -23px;
    right: 50%;
    left: 45%;
    padding: 9px 9px 9px 9px;
    border-style: solid;
    border-width: 7px 7px 7px 7px;
    border-color: #e8ecee;
    border-radius: 40px 40px 40px 40px;
    width: 56px;
    height: 56px;
}

.card-wrapper-2 .step-badge {
    top: 0px;
    right: 35%;
}

.card-wrapper-3 .step-badge {
    bottom: -23px;
    right: 50%;
    left: 45%;
}

.card-wrapper-4 .step-badge {
    top: 0px;
    right: 35%;
}

/* Arrows between cards */
.arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    flex-shrink: 0;
}

/* Arrow 1: goes DOWN-RIGHT (from card 1 bottom to card 2 top) */
.arrow-1 {
    align-self: flex-end;
    margin-bottom: 50px;
}

/* Arrow 2: goes UP-RIGHT (from card 2 bottom area to card 3 top area) */
.arrow-2 {
    align-self: flex-start;
    margin-top: 50px;
}

/* Arrow 3: goes DOWN-RIGHT again */
.arrow-3 {
    align-self: flex-end;
    margin-bottom: 50px;
}

.arrow-connector svg {
    display: block;
}


/* Full layout using flex for desktop */
.steps-flex {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 55px;
}


.card-wrapper-1::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 0;
    transform: translateY(20%);
    background: url(../images/how-work-box-arrow-1.webp) no-repeat;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
    width: 100px;
    height: 30px;
}

.card-wrapper-2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0px;
    transform: translateY(-20%);
    background: url(../images/how-work-box-arrow-2.webp) no-repeat;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
    width: 100px;
    height: 30px;
    bottom: auto;
    top: -50px;
}

.card-wrapper-3::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 0;
    transform: translateY(20%);
    background: url(../images/how-work-box-arrow-1.webp) no-repeat;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto;
    width: 100px;
    height: 30px;
}

.card-wrapper-1 {
    margin-top: 0px;
}

.card-wrapper-3 {
    margin-top: 0px;
}

.card-wrapper-2 .step-card {
    margin-top: 23px;
}

.card-wrapper-4 .step-card {
    margin-top: 23px;
}

/************************************/
/*** 	Testimonial Section css	  ***/
/************************************/

.testimonial-section {
    padding-top: 80px;
    padding-bottom: 90px;
}

/* ===== LABEL ===== */
.testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #cda86a;
    margin-bottom: 14px;
}

.testimonial-label i {
    font-size: 13px;
    color: #cda86a;
}

/* ===== HEADING ===== */
.testimonial-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1c3556;
    line-height: 1.25;
    max-width: 480px;
    margin: 0 auto 56px auto;
}

/* ===== SWIPER WRAPPER ===== */
.testimonial-section .swiper {
    padding-bottom: 52px !important;
    padding-top: 40px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

/* ===== CARD ===== */
.testi-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(28, 53, 86, 0.10);
    padding: 45px 28px 0 28px;
    position: relative;
    min-height: 300px;
}

/* ===== PROFILE ROW ===== */
.testi-profile {
    display: flex;
    align-items: end;
    gap: 16px;
    margin-bottom: 22px;
    margin-top: -56px;
}

.testi-img-wrap {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(28, 53, 86, 0.15);
    background: #e0e4ec;
}

.testi-img-wrap img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    display: block;
}

.testi-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #1c3556;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.testi-role {
    font-size: 14px;
    line-height: 24px;
    color: #484848;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ===== QUOTE TEXT ===== */
.testi-text {
    font-size: 16px;
    line-height: 26px;
    color: #5c5c5c;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* ===== STARS ===== */
.testi-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
}

.testi-stars i {
    font-size: 18px;
    color: #cda86a;
}

/* ===== BOTTOM DECORATIVE SHAPE ===== */
.testi-deco {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 80px;
    pointer-events: none;
}

.testi-deco::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 80px;
    background: #1c3556;
    border-radius: 80px 0 0 0;
}

.testi-deco::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 110px;
    height: 55px;
    background: #cda86a;
    border-radius: 60px 0 0 0;
}

/* ===== SPEECH BUBBLE TRIANGLE UNDER CARD ===== */
.testi-card-outer {
    position: relative;
    padding-bottom: 18px;
}

.testi-card-outer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 18px solid #ffffff;
    filter: drop-shadow(0 4px 4px rgba(28, 53, 86, 0.08));
}

/* ===== SWIPER PAGINATION ===== */
.testimonial-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #1c3556;
    opacity: 0.3;
}

.testimonial-section .swiper-pagination-bullet-active {
    background: #cda86a;
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* ===== PLACEHOLDER AVATARS ===== */
.testimonial-section .avatar-placeholder {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #c5cfe0 0%, #e8ecf3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}



.testimonial-section .section-title p {
    width: 100%;
    max-width: 740px;
    margin: 25px auto 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;

}

/************************************/
/*** 	Form Faq Section css	  ***/
/************************************/
.form-faq-wrapper .section-sub-title {
    color: #fff;
    border: 1px solid #ffffff59;
}

.form-faq-wrapper .section-title h2 {
    color: #fff;
}

.form-faq-wrapper .section-title p {
    color: #fff;
    width: 100%;
    max-width: 740px;
    margin: 25px auto 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
}

.form-faq-wrapper .section-title .section-sub-title::before {
    filter: brightness(0) invert(1);
}

.form-faq-wrapper::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(205, 168, 106, 0.06);
    pointer-events: none;
}

.form-faq-wrapper::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(205, 168, 106, 0.04);
    pointer-events: none;
}

.form-faq-wrapper {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d2240 0%, #1c3556 50%, #0d2240 100%);
}

.main-row {

    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

/* ── LEFT COLUMN ─────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cda86a;
    margin-bottom: 14px;
}

.section-heading {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 40px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.form-faq-wrapper .glass-card label, .form-faq-wrapper .glass-card .text-succses {
    color: #fff !important;
}
.form-faq-wrapper .glass-card input.form-control {
    color: #ffffff;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 22px;
}

.form-floating-custom label {
    position: absolute;
    top: 16px;
    left: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    transition: all 0.22s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
    font-weight: 400;
}

.form-floating-custom input,
.form-floating-custom textarea,
.form-floating-custom select {
    width: 100%;
    height: 56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 20px 18px 8px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    appearance: none;
}

.form-floating-custom textarea {
    height: 120px;
    resize: none;
    padding-top: 24px;
}

.form-floating-custom input::placeholder,
.form-floating-custom textarea::placeholder {
    color: transparent;
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus,
.form-floating-custom select:focus {
    border-color: #cda86a;
    background: rgba(205, 168, 106, 0.07);
    box-shadow: 0 0 0 4px rgba(205, 168, 106, 0.12);
}

.form-floating-custom input:hover,
.form-floating-custom textarea:hover,
.form-floating-custom select:hover {
    border-color: rgba(255, 255, 255, 0.25);
}

.form-floating-custom input:focus+label,
.form-floating-custom input:not(:placeholder-shown)+label,
.form-floating-custom textarea:focus+label,
.form-floating-custom textarea:not(:placeholder-shown)+label,
.form-floating-custom select:focus+label,
.form-floating-custom select.has-value+label {
    top: 6px;
    font-size: 11px;
    color: #cda86a;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-floating-custom input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(28, 53, 86, 0.9) inset;
    -webkit-text-fill-color: #ffffff;
}

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

.btn-submit {
    width: 100%;
    height: 56px;
    background: #1c3556;
    border: 1.5px solid rgba(205, 168, 106, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #cda86a;
    transform: translateY(100%);
    transition: transform 0.28s ease;
    border-radius: 12px;
}

.btn-submit span,
.btn-submit i {
    position: relative;
    z-index: 1;
    transition: color 0.28s ease;
}

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

.btn-submit:hover {
    box-shadow: 0 12px 32px rgba(205, 168, 106, 0.35);
    transform: translateY(-2px);
    border-color: #cda86a;
}

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

/* ── RIGHT COLUMN ────────────────────────── */
.faq-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cda86a;
    margin-bottom: 14px;
}

.faq-heading {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.faq-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 36px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(205, 168, 106, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.faq-item.active {
    border-color: #cda86a;
    background: rgba(205, 168, 106, 0.07);
    box-shadow: 0 8px 32px rgba(205, 168, 106, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
}

.faq-q-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    flex: 1;
    transition: color 0.22s ease;
}

.faq-item.active .faq-q-text {
    color: #cda86a;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, color 0.25s ease;
}

.faq-item.active .faq-icon {
    background: #cda86a;
    border-color: #cda86a;
}

.faq-item.active .faq-icon i {
    color: #1c3556;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ── DECORATIVE DOTS ─────────────────────── */
.gold-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cda86a;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}



/************************************/
/*** 	   Our Blog css 	  ***/
/************************************/

.our-blog {
    padding: 120px 0 90px;
}

.post-tag-links {
    display: none;
}

.post-item {
    background: #f5f9ff;
    border-radius: 14px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
}

.post-featured-image {
    position: relative;
    margin-bottom: 10px;
}

.post-featured-image a {
    
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.post-featured-image figure {
    display: block;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 0.731;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.06);
}

.post-item-body {
    padding: 20px;
}

.post-item-content h2 {
    font-size: 22px;
    line-height: 1.4em;
}

.post-item-content p {
    margin: 15px auto 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
        display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.post-item-content h2 a {
    color: inherit;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.2px;
}

.post-item .post-item-btn {
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
    margin-top: 25px;
}


.our-blog .section-title p {
    width: 100%;
    max-width: 740px;
    margin: 25px auto 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
}

.our-blog .btn-default {
    width: max-content;
    padding: 0px 0px;
    color: #000;
    background: transparent;
}

.our-blog .btn-default::before {
    width: 26px;
    height: 26px;
    background-position: center center;
    background-size: 16px auto;
}

.our-blog .btn-default.btn-highlighted::after {
    background: transparent;
}

/************************************/
/*** 	   Scrolling Ticker css 	  ***/
/************************************/

.our-scrolling-ticker {
    position: relative;
    background: #cda86a;
    padding: 30px 0;
    z-index: 1;
}


.scrolling-ticker-box {
    --gap: 30px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
    gap: 30px;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: 30px;
    min-width: 100%;
    animation: scroll 80s linear infinite;
}

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

    100% {
        transform: translateX(calc(-100% - 30px));
    }

}


.scrolling-content span {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: #0d2240;
    text-transform: capitalize;
}

.scrolling-content span img {
    width: 100%;
    max-width: 40px;
}


/************************************/
/*** 	   Footer css 	  ***/
/************************************/

.main-footer {
    padding: 120px 0 0;
    background-color: #0d2240;
    background-image: url(../images/dark-section-bg-image.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.footer-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff1a;
    margin-bottom: 60px;
    padding-bottom: 60px;
    gap: 15px;
}

.footer-logo img {
    width: 100%;
    max-width: 141px;
    background: #fff;
    padding: 5px;
    border-radius: 3px;
}

.main-footer .section-title h2 {
    color: #fff;
}

.main-footer .section-title {
    margin-bottom: 0px;
}

.about-footer {
    max-width: 340px;
}

.about-footer-content h2 {
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.2px;
}

.about-footer-content p {
    color: #fff;
    margin: 20px 0 0;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
}

.footer-social-links {
    border-top: 1px solid #ffffff1a;
    margin-top: 30px;
    padding-top: 30px;
}

.footer-social-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 1px solid #ffffff1a;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li i {
    font-size: 18px;
    color: inherit;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
}

.footer-links {
    max-width: 26%;
}

.footer-links h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
}

.footer-links ul {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 20px;
}

.footer-links ul li {
    text-transform: capitalize;
    color: #fff;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.footer-links ul li::marker {
    color: #cda86a;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-working-hour-info {
    padding: 30px;
}

.footer-working-hour {
    width: 100%;
    max-width: 40%;
    background-color: #ffffff1a;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 14px;
    overflow: hidden;
}

.footer-working-hour-info h2 {
    margin-bottom: 20px;
}

.footer-working-hour-info ul {
    list-style: none;
    padding: 0;
}

.footer-working-hour-info ul li {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-working-hour-btn a {
    display: block;
    background: #cda86a;
    line-height: normal;
    font-weight: 600;
    color: #000;
    text-align: center;
    padding: 12px 30px;
    transition: all 0.4s ease-in-out;
}

.footer-working-hour-btn a:hover {
    background: #fff;
}

.footer-copyright-text {
    border-top: 1px solid #ffffff1a;
    text-align: center;
    margin-top: 60px;
    padding: 20px 0;
}

.footer-copyright-text p {
    color: #fff;
    margin: 0;
}


/************************************/
/*** 	   Service Page Css 	  ***/
/************************************/

.page-header {
    position: relative;
    background-image: url(../images/page-header-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 280px 0 170px;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #1a2636d9 0%, #1a2636d9 45%, #1a2636d9 55%, #1a2636d9 85%);
    opacity: 100%;
    z-index: 1;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 2;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 72px;
    line-height: 1.1em;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 10px;
    
}

.page-header-box ol {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 8px;
    color: #fff;
    content: "/";
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.service_page {
    background-color: #fff;
    padding: 100px 15px;
}


/* ── Individual Service Section ── */
.service-section {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0px 4px 24px rgba(29, 59, 102, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-section:hover {
    box-shadow: 0px 12px 48px rgba(29, 59, 102, 0.14);
    transform: translateY(-4px);
}

.service-section:last-child {
    margin-bottom: 0;
}

/* ── Image Pane ── */
.service-image-pane {
    position: relative;
    height: 100%;
    overflow: hidden;
    max-height: 550px;
}

.service-image-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-section:hover .service-image-pane img {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 59, 102, 0.45) 0%, rgba(29, 59, 102, 0.1) 100%);
}

/* ── Icon Badge on Image ── */
.icon-badge {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #1d3b66;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #c89b4b;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
}

.icon-badge i {
    color: #ffffff;
    font-size: 24px;
}

/* Badge on left side for right-image sections */
.icon-badge-left {
    right: auto;
    left: 28px;
}

/* ── Content Pane ── */
.service-content-pane {
    padding: 60px 56px 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 550px;
    height: 100%;
}

.service-tag {
    display: inline-block;
    background-color: rgba(200, 155, 75, 0.12);
    color: #c89b4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}

.service-title {
    font-size: 34px;
    font-weight: 700;
    color: #1d3b66;
    letter-spacing: 0.5px;
    line-height: 44px;
    margin-bottom: 18px;
}

.service-divider {
    width: 48px;
    height: 3px;
    background-color: #c89b4b;
    border-radius: 2px;
    margin-bottom: 22px;
}

.service-description {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #5c5c5c;
    margin-top: 0px;
}

.service-content-pane .btn-default {
    width: max-content;
}

.service-content-pane .btn-default.btn-highlighted::after {
    background: #1c3556;
}

.service-content-pane .btn-default.btn-highlighted:hover {
    color: #fff;
}

/* ── Features List ── */
.feature-list {
    list-style: none;
    margin-bottom: 36px;
    padding: 0;
}

.feature-list li {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #5c5c5c;
    padding: 6px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #c89b4b;
    font-size: 13px;
    flex-shrink: 0;
}


/* ── Section Number ── */
.section-number {
    font-size: 96px;
    font-weight: 700;
    color: rgba(29, 59, 102, 0.06);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 32px;
    pointer-events: none;
}

.service-content-pane {
    position: relative;
}

.service-section.mb-5 {
    margin-bottom: 50px;
}

/* Modal animation */
.custom-modal .modal-dialog {
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.custom-modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Modal box */
.custom-modal .modal-content {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(29, 59, 102, 0.18);
    position: relative;
}



/* Header */
.custom-modal .modal-header {
    background: linear-gradient(135deg, #1d3b66, #2a4f87);
    color: #fff;
    padding: 15px 28px;
    border: none;
}

.custom-modal .modal-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Body */
.custom-modal .modal-body {
    padding: 35px 30px;
    background: #fff;
}

/* Inputs */
.custom-modal .form-control {
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.custom-modal .form-control:focus {
    border-color: #c89b4b;
    box-shadow: 0 0 0 4px rgba(200, 155, 75, 0.15);
}

/* Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #c89b4b, #b88a3d);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(200, 155, 75, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(200, 155, 75, 0.35);
}

/* close button */
.btn-close {
    filter: brightness(0) invert(1);
}

/************************************/
/*** 	  Contact Us Css 	  ***/
/************************************/
.contact-us-page {
    padding: 100px 15px;
}


.contact-info-item-list {
    background: #fdf8ef;
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
}

.contact-info-item {
    position: relative;
   max-width: 28%;
   width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    background: #0f0e2d1a;
    transform: rotate(10deg) translateY(-50%);
    width: 1px;
    height: 70%;
}

.contact-info-item.mail-item {
        max-width: 37%;
    width: 100%;
}

.contact-info-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: #cda86a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #0d2240;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item-content {
    width: calc(100% - 65px);
}

.contact-info-item-content h2 {
    font-size: 22px;
}

.contact-info-item-content p {
    margin: 5px 0 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #5c5c5c;
    margin-top: 0px;
}

.contact-info-item-content p a {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #5c5c5c;
    margin-top: 0px;
    word-wrap: break-word;
}

.contact-info-item.location-item {
    width: calc(38% - 4.167vw);
}

.contact-info-item.location-item::before {
    display: none;
}

.contact-location-form-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    border-top: 1px solid #0f0e2d1a;
    margin-top: 80px;
    padding-top: 80px;
}

.contact-location-info-box {
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 100%;
    border-radius: 14px;
}

.contact-location-info-box .section-title p {
    line-height: 26px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.contact-location-form-box .contact-us-form {
    width: calc(50% - 25px);
    background: #fdf8ef;
    border-radius: 14px;
    padding: 50px;
}

.contact-form label {
    font-size: 16px;
    font-weight: 500;
    color: #0d2240;
    margin-bottom: 15px;
}

.contact-us-form .contact-form .form-control {
    background: #fff;
    border: none;
    padding: 18px 20px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #0d2240;
    border-radius: 10px;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form .btn-default::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background: #0d2240;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.contact-form .btn-default:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
}


/************************************/
/*** 	   Blog Page Css 	  ***/
/************************************/

.blog_page .row>div:nth-child(3) {
    display: block;
}


/************************************/
/*** 	  Single Blog Page Css 	  ***/
/************************************/
.single-post-page {
    padding: 100px 15px;
}

.post-single-meta {
    margin-top: 10px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: #fff;
    margin-right: 15px;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: #fff;
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 14px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    /* border-bottom: 1px solid #0f0e2d1a; */
    /* padding-bottom: 30px;
    margin-bottom: 30px; */
}

.post-entry p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
}

.post-entry blockquote {
    background: #fdf8ef url(../images/icon-blockquote.svg);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 14px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #0d2240;
}

.post-entry h2 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #cda86a;
    text-decoration: underline;

}

.post-entry h3 {
    font-size: 23px;
    line-height: 33px;
}

.post-entry ul {
    margin-top: -10px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #212529;
}

.tag-links {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: #0d2240;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links span {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: #c89b4b;
    color: #0d2240;
    border-radius: 100px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #c89b4b;
    color: #0d2240;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links span:hover {
    background: #0d2240;
    color: #fff;
}

.post-social-sharing ul li:hover a {
    background: #0d2240;
    color: #fff;
}

/************************************/
/*** 	   Responsive Css 	  ***/
/************************************/

@media screen and (min-width: 1200px) and (max-width: 1600px) {
    .section-title h1 {
        font-size: 60px;
    }

    .about-us-image-box-1 .about-us-image::before {
        left: 40%;
        width: 113px;
        height: 110px;
    }

    .cards-row {
        gap: 15px;
    }

    .hero-content {
        margin-top: 0px;
    }
    .services-section .panel-tagline {
            font-size: 28px;
    }
    .contact-info-item-list {
            gap: 35px;
    }
    .contact-info-item {
            max-width: 27%;
    }
    .contact-info-item.mail-item {
    max-width: 39%;
    width: 100%;
}
}


@media screen and (min-width: 992px) and (max-width: 1024px) {
    .hero-contact-item {
        margin-top: 30px;
    }

    .about-us-image-box {
        justify-content: center;
    }

    .about-us-image-box-1 {
        width: 38%;
        align-content: end;
    }

    .about-us-image-box-2 {
        width: 30%;
        text-align: right;
    }

    .card-col {
        flex: 1 1 calc(50% - 23px);
    }

    .why-choose-image figure img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 0.81;
        object-fit: cover;
        border-radius: 14px;
        max-height: 280px;
        object-position: top;
    }

    .card-wrapper::after {
        content: unset;
    }

    .card-wrapper .step-badge {
        display: none;
    }

    .steps-flex {
        flex-wrap: wrap;
        gap: 35px;
    }

    .card-wrapper {
        max-width: 48%;
    }

    .card-wrapper.offset-down {
        margin-top: 0px;
    }

    .card-wrapper-2 .step-card {
        margin-top: 0px;
    }

    .card-wrapper-4 .step-card {
        margin-top: 0px;
    }

    .form-faq-wrapper {
        min-height: unset;
    }



    .footer-links-box {
        margin-top: 60px;
    }

    .contact-info-item-list {
        padding: 20px;
    }

    .contact-location-form-box {
        margin-top: 40px;
        padding-top: 40px;
    }

    .contact-location-info-box,
    .contact-location-form-box .contact-us-form {
        width: 100%;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 500px;
    }

    .contact-info-item {
       max-width: 40%;
    }

    .contact-info-item:nth-child(2)::before {
        display: none;
    }

    .contact-info-item.location-item {
           max-width: 100%;
           width: 100%;
    }

    .contact-info-item.mail-item {
    max-width: 45%;
    width: 100%;
}

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .services-section .panel-tagline {
        font-size: 23px;
        font-weight: 600;
        color: #ffffff;
        text-align: center;
        line-height: 33px;
        max-width: 700px;
    }

    .service-bottom-cta .title {
        font-size: 20px !important;
    }

    .service-bottom-cta .mid-image {
        left: 50% !important;
    }

    .service-bottom-cta p {
        font-size: 20px !important;
    }

}

@media screen and (max-width: 991px) {

    .card-col {
        flex: 1 1 calc(50% - 23px);
    }

    .why-choose-image figure img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 0.81;
        object-fit: cover;
        border-radius: 14px;
        max-height: 280px;
        object-position: top;
    }

    .card-wrapper::after {
        content: unset;
    }

    .card-wrapper .step-badge {
        display: none;
    }

    .steps-flex {
        flex-wrap: wrap;
        gap: 35px;
    }

    .card-wrapper {
        max-width: 47%;
    }

    .card-wrapper.offset-down {
        margin-top: 0px;
    }

    .card-wrapper-2 .step-card {
        margin-top: 0px;
    }

    .card-wrapper-4 .step-card {
        margin-top: 0px;
    }

    .form-faq-wrapper {
        min-height: unset;
    }




    .footer-links-box {
        margin-top: 60px;
    }

    .testi-card {
        min-height: 350px;
    }

    .main-row {
        grid-template-columns: unset;
    }

    .main-footer .section-title h2 {
        font-size: 40px;
        line-height: 50px;
        margin-top: 30px;
    }

    .hero-contact-item {
        margin-top: 30px;
    }

    .about-counter-item p {
        font-size: 18px;
        line-height: 28px;
    }

    .main-menu {
        background: #fffaf3;
        padding: 15px;
        margin-top: 15px;
        border-radius: 10px;
    }

    .header-btn {
        margin-top: 10px;
    }

    .main-menu .nav-menu-wrapper>ul {
        align-items: flex-start;
    }

    .main-menu ul li a {
        color: #000;
        padding: 12px 0px !important;
    }

    .main-menu .nav-menu-wrapper {
        text-align: left;
    }

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

    .navbar-toggler {
        background: #d2ae75;
    }

    .section-title h1 {
        font-size: 58px;
        line-height: 1.1em;
    }

    .about-us-content {
        margin-top: 20px;
    }

    .section_padding {
        padding: 70px 10px 70px;
    }

    .main-footer.section_padding {
        padding-bottom: 0;
    }

    .service-content-pane {
        padding: 50px 30px 50px 30px;
    }

    .service-image-pane {
        max-height: 450px;
    }

    .contact-info-item-list {
        padding: 20px;
    }

    .contact-location-form-box {
        margin-top: 40px;
        padding-top: 40px;
    }

    .contact-location-info-box,
    .contact-location-form-box .contact-us-form {
        width: 100%;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 500px;
    }

.contact-info-item {
       max-width: 40%;
    }

    .contact-info-item:nth-child(2)::before {
        display: none;
    }

    .contact-info-item.location-item {
           max-width: 100%;
           width: 100%;
    }

    .contact-info-item.mail-item {
    max-width: 45%;
    width: 100%;
}


    .contact-info-item:nth-child(2)::before {
        display: none;
    }

    .contact-info-item.location-item {
        width: calc(100% - 4.167vw);
    }

    .contact-form label {
        margin-bottom: 10px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .post-entry h2 {
font-size: 28px;
        line-height: 38px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-bottom-cta .mid-image {
        display: none;
    }

    .service-bottom-cta .title {
        font-size: 20px !important;
    }

    .service-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-bottom-cta p {
        font-size: 20px !important;
    }

    .section-title h2 {
        font-size: 38px;
        line-height: 48px;
    }
}

@media screen and (max-width: 768px) {
        .contact-info-item {
        max-width: 100%;
    }
    .contact-info-item::before {
        display: none;
    }
        .contact-info-item.mail-item {
        max-width: 90%;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .hero {
        background-position: center;
    }

    .about-us-image-box {
        display: none;
    }

    .about-us-image-box-1 .about-us-image::before {
        display: none;
    }


    .about-us-body {
        justify-content: center;
    }

    .service-content-pane {
        max-height: 100%;
    }

    .about-counter-item p {
        font-size: 16px;
        line-height: 26px;
    }

    .about-body-content-box {
        width: calc(100% - 15px);
    }

    .about-us-body-image {
        width: calc(100% - 15px);
    }

    .section-title h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .why-choose-image-box-1 {
        width: calc(100% - 15px);
    }

    .why-choose-image-box-2 {
        width: calc(100% - 15px);
    }

    .card-wrapper {
        max-width: 100%;
    }

    .footer-links {
        max-width: 100%;
    }

    .footer-working-hour {
        max-width: 100%;
    }

    .section_padding {
        padding: 70px 10px 70px;
    }


    .main-footer.section_padding {
        padding-bottom: 0;
    }

    .main-footer .section-title h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .footer-header {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .hero-contact-item {
        display: none;
    }

    .section-title h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .page-header-box h1 {
        font-size: 42px;
    }

    .page-header {
        padding: 200px 0 90px;
    }

    .service-title {
        font-size: 30px;
        line-height: 40px;
    }

    .contact-info-item {
        width: calc(100% - 4.167vw);
    }

    .contact-info-item:nth-child(1)::before {
        display: none;
    }

    .contact-info-item.location-item {
        width: calc(100% - 4.167vw);
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .contact-location-form-box .contact-us-form {
        padding: 20px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry h2 {
        font-size: 24px;
        line-height: 34px;
    }

    .post-entry blockquote {
        padding: 65px 20px 20px 20px;
    }

    .post-entry blockquote p {
        font-size: 16px;
        line-height: 26px;
    }

    .services-section .card-content-panel {
        padding: 52px 20px 48px !important;
    }

    .services-section .panel-tagline {
        font-size: 28px !important;
        line-height: 38px !important;
    }
    .services-section .card-icon-panel {
            padding: 52px 20px;
    }
    .form-row-2 {
        display: block;
    }

    .card-col {
        flex: 1 1 calc(100% - 23px);
    }

    .service-bottom-cta .title {
        font-size: 18px !important;
        text-align: center;
    }

    .service-bottom-cta p {
        font-size: 18px !important;
        text-align: center;
    }
    .service-bottom-cta {
            padding: 20px 24px;
    }
        .contact-info-item {
        max-width: 100% !important;
        width: 100% !important; 
    }
    .contact-info-item-content {
         width: 100% !important;
    }
}




/* ── Feature Card ── */
.services-section .feature-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(42, 79, 168, 0.10), 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 0;
    overflow: hidden;
    border: 1px solid #e3e8f4;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services-section .feature-card:hover {
    box-shadow: 0 18px 60px rgba(42, 79, 168, 0.15), 0 4px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

/* ── Card Left Panel ── */
.services-section .card-icon-panel {
    background: linear-gradient(135deg, #1d447c 0%, #040404 50%, #1c4072 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 36px;
    position: relative;
    min-height: 340px;
}

.services-section .card-icon-panel::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.services-section .card-icon-panel::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.services-section .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.services-section .icon-circle i {
    font-size: 42px;
    color: #ffffff;
}

.services-section .panel-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.services-section .panel-tagline {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 44px;
    max-width: 700px;
}

.services-section .trust-badge {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 7px 16px;
}

.services-section .trust-badge i {
    font-size: 13px;
    color: #7cefbd;
}

.services-section .trust-badge span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

/* ── Card Right Panel ── */
.services-section .card-content-panel {
    padding: 52px 52px 48px;
}


.services-section .card-title {
    font-size: 30px;
    font-weight: 700;
    color: #0d1628;
    line-height: 1.25;
    margin-bottom: 16px;
}

.services-section .card-desc {
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #212529;
}

/* ── Divider ── */
.services-section .card-divider {
    border: none;
    border-top: 1px solid #e8ecf6;
    margin-bottom: 30px;
}

/* ── Bullet Points ── */
.services-section .bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 38px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-section .bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.services-section .bullet-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #faf4e8;
    border: 1px solid #e5d0aa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 7px;
}

.services-section .bullet-icon i {
    font-size: 22px;
    color: #cda86a;
}

.services-section .bullet-text strong {
    display: block;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: #1a1f2e;
    margin-bottom: 2px;
}

.services-section .bullet-text span {
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 26px;
    color: #212529;
}

.services-section .btn-default.btn-highlighted::after {
    background: #1c3556;
}

.services-section .btn-default.btn-highlighted:hover {
    color: #fff;
}

/* ── CTA Button ── */
.services-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #cda86a;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 15px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 20px rgba(205, 168, 106, 0.40);
}

.services-section .btn-cta:hover {
    background: #b8924f;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(42, 79, 168, 0.40);
    color: #ffffff;
    text-decoration: none;
}

.services-section .btn-cta:active {
    transform: translateY(0px);
    box-shadow: 0 4px 14px rgba(42, 79, 168, 0.28);
}

.services-section .btn-cta i {
    font-size: 13px;
    transition: transform 0.2s ease;
}

.services-section .btn-cta:hover i {
    transform: translateX(3px);
}

/* ── Stats row ── */
.services-section .stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e8ecf6;
}

.services-section .stat-item {
    display: flex;
    flex-direction: column;
}

.services-section .stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #cda86a;
    line-height: 1;
}

.services-section .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #8892aa;
    letter-spacing: 0.6px;
    margin-top: 4px;
    text-transform: uppercase;
}

.services-section .stat-divider {
    width: 1px;
    height: 36px;
    background: #d8dff0;
}


.services-section2 .btn-default.btn-highlighted::after {
    background: #fff;
}


.services-section2 .btn-default.btn-highlighted:hover {
    color: #1c3556;
}

.services-section2 .btn-default.btn-highlighted {
    width: max-content;
}

.inclusion_section {
    background-color: #f4f7fb;
        padding-bottom: 150px;
}

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

.contact_footer ul li {
    word-break: break-all;
    text-transform: none;
}


.service_cta {
    padding: 0px 15px 0;
    margin-top: -50px;
}

.service-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    border-radius: 50px;
    background: #1c3556;
    position: relative;
}

.service-bottom-cta .title {
    margin: 0;
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}

.service-bottom-cta p {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.service-bottom-cta p a {
    text-decoration: none;
    color: #fff;
}

.service-bottom-cta .mid-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 8px 55px rgba(0, 0, 0, 0.12);
    border-radius: 50%;
}

.hero-content {
    margin-top: -500px;
}


#loadMoreBtn {
        position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
    background: #cda86a;
    border-radius: 100px;
    padding: 17px 30px;
    margin-right: 50px;
    border: none;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}



#loadMoreBtn:hover::after {
    left: 0;
    right: 0;
    opacity: 1;
}

#loadMoreBtn:hover {
    color: #fff;
}

#loadMoreBtn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background: #1c3556;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
