/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
:root {
    --primary-color: #f15b41;
    --primary-dark: #d4452e;
    --primary-light: #ff7a62;
    --secondary-color: #F5F5F5;
    --tertiary-color: #193661;
    --text-color: #333333;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --dark-blue: #003565;
    --bg-color: #fafafa;
    --font-primary: 'Switzer', sans-serif;
    --font-heading: 'Khand', sans-serif;
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gray-900);
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1800px;
    padding: 0 15px;
    margin: 0 auto;
}

.container-short {
    max-width: 1495px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title,
.about-content h2 {
    font-size: 52px;
    margin-bottom: 0;
    color: var(--gray-900);
    line-height: 1;
    font-weight: 600;
    margin-bottom: 50px;
}

.section__line {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.btn {
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.rounded-pill {
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 47px 0 30px;
    height: 177px;
}

.header .container {
    position: relative;
}

.navbar {
    transition: var(--transition);
    border-radius: 18px;
    padding: 22px 0;
    background-color: #fff;
    border: 1px solid rgba(234, 235, 235, 1);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    position: fixed;
    width: auto;
    left: 50%;
    z-index: 9999;
    max-width: calc(1800px - 30px);
    width: 100%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
}

.navbar>.container {
    padding: 0 70px;
}

.navbar .container-fluid {
    padding: 0 40px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-collapse {
    padding-right: 70px;
}

.logo {
    height: 40px;
}

.navbar-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--gray-600);
    font-weight: 400;
    padding: 8px 0;
    transition: var(--transition);
    font-size: 18px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #000;
}

.navbar-nav .nav-link.active,
.navbar-nav .current-menu-item .nav-link {
    color: #000;
    position: relative;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after,
.navbar-nav .current-menu-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.navbar-toggler {
    border: none;
    color: var(--dark-blue);
}

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

.navbar-toggler-icon {
    color: var(--dark-blue);
}

/* Sticky Navigation */
.navbar.sticky {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.sticky .nav-link {
    /* color: var(--gray-500); */
}

.navbar.sticky .nav-link:hover {
    color: var(--primary-color);
}

/* Contact Button */
.contact-btn-item {
    margin-left: 15px;
}

.contact-btn {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 8px 34px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    padding-left: 8px;
    position: relative;
    z-index: 1;
}

.contact-btn::before,
.contact-btn::after,
.explore-btn::before,
.explore-btn::after,
.btn-submit::before,
.btn-submit::after {
    content: '';
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    position: absolute;
    left: -6px;
    top: -6px;
    background-color: var(--dark-blue);
    z-index: -1;
    opacity: 0.15;
    border-radius: 50px;
    animation: fadeOutBefore 1s infinite alternate;
}

.contact-btn::after,
.explore-btn::after,
.btn-submit::after {
    height: calc(100% + 24px);
    width: calc(100% + 24px);
    left: -12px;
    top: -13px;
    opacity: 0.1;
    animation: fadeOutAfter 1s infinite alternate;
}

.contact-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 9px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    position: relative;
    /* height: 100vh; */
    /* min-height: 700px; */
    color: var(--white);
    text-align: left;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
    /* display: flex; */
    /* align-items: center; */
    padding: 70px 100px 170px;
    aspect-ratio: 1800/900;
}

.hero-slide:before,
.inner-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* .inner-wrap:before {
    background: transparent;
} */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
}

.hero__title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero__subtitle {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1;
}

.hero__text {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--gray-400);
    line-height: 1.6;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 343px;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
    border: 1px solid var(--primary-color);
}

.explore-btn>* {
    position: relative;
    z-index: 1;
}

.explore-btn::before,
.explore-btn::after,
.btn-submit::before,
.btn-submit::after {
    background-color: var(--primary-color);
    border-radius: 12px;
    opacity: 0.2;
    animation: fadeOutBeforeOrange 1s infinite alternate;
}

.explore-btn::after,
.btn-submit::after {
    animation: fadeOutAfterOrange 1s infinite alternate;
}

.explore-btn svg {
    transition: transform 0.3s ease;
}

.explore-btn:hover {
    background-color: transparent;
    color: #fff;
    border-color: var(--primary-color);
}

.explore-btn:hover svg path {
    stroke: var(--primary-color);
}

.explore-btn svg path {
    transition: var(--transition);
}

.explore-btn:hover svg {
    transform: translateX(4px);
}

/* Slider Controls */
.hero-slider-bottom {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 0 100px;
}

.hero-slider-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 15px;
}

.fraction-pagination {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: end;
    gap: 3px;
    position: unset;
    justify-content: flex-end;
    font-family: var(--font-heading);
}

.swiper-pagination-current {
    color: var(--primary-color);
    font-size: 36px;
    line-height: 1;
}

.swiper-pagination-total {
    color: #888e91;
}

.fraction-separator {
    color: #888e91;
    padding: 0 2px;
}

.slider-nav-buttons {
    display: flex;
    gap: 6px;
}

.slider-button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.slider-button-prev {
    color: var(--white);
}

.slider-button:hover {
    color: var(--white);
}

.slider-button i {
    font-size: 0.8rem;
}

.slider-progress-bar {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
    border-radius: 1px;
    overflow: hidden;
}

.progress-bar-line {
    height: 100%;
    background-color: var(--primary-color);
    width: 0;
    transition: width 0.4s ease;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-section {
    /* background-color: var(--gray-100); */
    position: relative;
}

.services-bg {
    position: absolute;
    z-index: -2;
    bottom: -110px;
    width: 100%;
}

.services-bg svg {
    width: 100%;
    height: auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.services-header .section__title {
    margin-bottom: 0;
    text-align: left;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--primary-color);
}

.view-all-link:hover svg {
    transform: translateX(60px);
}

.view-all-link svg {
    transition: var(--transition);
}

.service-card {
    background-color: var(--white);
    padding: 50px 50px 50px;
    border-radius: 10px;
    /* box-shadow: var(--box-shadow); */
    transition: var(--transition);
    height: 100%;
    text-align: left;
    border: 1px solid rgba(234, 235, 235, 1);
    /* background-color: var(--tertiary-color); */
    position: relative;
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    position: relative;
}

.service-card__icon img.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: inherit;
    opacity: 1;
}

.service-card__icon img.service-icon-img.white {
    position: absolute;
    z-index: -1;
}

.service-card:hover .service-card__icon img.service-icon-img.black {
    opacity: 0;
}

.service-card__title {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
    transition: inherit;
}

.service-card__text {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.6;
    transition: inherit;
}

.read-more-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #000;
    transition: inherit;
}

.service-card:hover a.read-more-link {
    justify-content: space-between;
}

.read-more-link svg,
.view-all-link svg {
    transition: transform 0.3s ease;
}

.read-more-link:hover svg,
.view-all-link:hover svg {
    /* transform: translateX(4px); */
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
    padding: 90px 0;
}

.about-content {
    padding-right: 24px;
}

.about__text {
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-content p {
    font-size: 20px;
}

.about-box {
    flex-direction: column;
    gap: 16px;
    padding: 30px 22px;
    display: inline-flex;
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--Border-Primary, rgba(234, 235, 235, 1));
    position: absolute;
    z-index: 1;
    border-radius: 15px;
}

.about-box .title {
    font-size: 36px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1;
    margin-bottom: -10px;
}

.about-box .title span {
    color: var(--primary-color);
}

.about-box .content {
    font-size: 18px;
    line-height: 1;
}

.about-box-1 {
    left: calc(30% - 0px);
    top: -150px;
}

.about-box-2 {
    left: 65%;
    top: 38px;
}


.about-image img {
    /* border-radius: var(--border-radius); */
    /* box-shadow: var(--box-shadow); */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    max-width: min-content;
    width: 100%;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-section {
    background-color: var(--bg-color);
    padding-bottom: 140px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.team-section .section-header {
    margin-bottom: 16px;
}

.team-description {
    max-width: 970px;
    margin: 0 auto 40px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 60px 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.team-card {
    text-align: center;
    transition: var(--transition);
    padding: 50px 20px;
    height: 100%;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
}

.team-card__image {
    width: 182px;
    height: 182px;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: var(--bg-color);
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card__name {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1;
}

.team-card__position {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
}

.team-card__position::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 183px;
    height: 1px;
    background-color: #e0e0e0;
}

.team-card__contact {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.team-card:hover .team-card__image img {
    scale: 1.15;
}

.team-card:hover .phone-link,
.team-card:hover .phone-link svg path {
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.team-card .phone-link svg path {
    transition: var(--transition);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--tertiary-color);
    font-size: 18px;
    font-weight: 400;
    transition: var(--transition);
}

.phone-link i {
    font-size: 0.8rem;
}

.phone-link:hover {
    color: var(--primary-dark);
}

/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.news-section {
    padding: 80px 0;
    /* background-color: var(--bg-color); */
}

.news-header {
    margin-bottom: 40px;
    text-align: left;
}

.news-header .section__title {
    font-size: 52px;
    margin-bottom: 0;
    text-align: left;
}

/* Featured Article Styles */
.featured-article-container {
    margin-bottom: 40px;
}

.featured-article {
    position: relative;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1500/580;
}

.featured-article::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.featured-article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-article__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%); */
    padding: 30px;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%); */
}

.featured-article__content {
    color: var(--white);
}

.featured-article__title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.3;
    max-width: 90%;
    max-width: 854px;
}

.featured-article__meta {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 16px;
}

.article-date,
.article-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
}

.article-date i,
.article-time i {
    font-size: 0.8rem;
}

.featured-article__meta-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0 20px;
    border-radius: 15px;
    height: 50px;
}

.article-date span,
.article-time span {
    line-height: 1;
}

.read-article-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    height: 50px;
    border: 1px solid var(--primary-color);
}

.read-article-btn svg {
    transition: transform 0.3s ease;
}

.read-article-btn:hover {
    border-color: var(--primary-color);
    color: var(--white);
    background-color: transparent;
    color: var(--primary-color);
}

.read-article-btn svg path {
    transition: var(--transition);
}

.read-article-btn:hover svg path {
    stroke: var(--primary-color);
}

.read-article-btn:hover svg {
    transform: translateX(4px);
}

/* Related News Styles */
.related-news {
    /* margin-top: 40px; */
}

.related-news__heading {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(234, 235, 235, 1);
    padding-bottom: 30px;
}

.news-card {
    /* background-color: var(--white); */
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.news-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
}

.news-card__image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    aspect-ratio: 351/248;
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #fff;
}

.news-card__date i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.news-card__content {
    padding: 20px 0 0;
}

.news-card__title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-600);
}

.learn-more-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 0.85rem;
    font-weight: 500;
}

.learn-more-link svg {
    transition: transform 0.3s ease;
}

.learn-more-link:hover {
    color: var(--primary-color);
}

.learn-more-link:hover svg {
    transform: translateX(60px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    padding: 100px 0;
    position: relative;
    /* overflow: hidden; */
    /* border-top: 1px solid #f1f1f1; */
    /* background-color: var(--white); */
}

.contact-bg {
    position: absolute;
    bottom: 100px;
    left: 0;
    z-index: -2;
    width: 100%;
}

.contact-bg svg {
    width: 100%;
    height: auto;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(1495px - 30px);
    height: 1px;
    background-color: #eaebeb;
    z-index: -2;
    transform: translateX(-50%);
}

/* Contact Info Section */
.contact-info-section {
    /* margin-bottom: 80px; */
    /* background-color: transparent; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.contact-info-block {
    padding: 0;
    max-width: 246px;
}

.info-label {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--gray-600);
}

.info-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.info-divider {
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 15px 0;
}

.info-content {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 15px 0;
    font-family: var(--font-heading);
}

.assistance-hours {
    margin-top: 20px;
}

.assistance-hours p {
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--text-muted);
}

.assistance-hours p:first-child {
    font-weight: 400;
    color: var(--text-dark);
}

/* Get in Touch Section */
.contact-header {
    margin-bottom: 60px;
    padding-top: 20px;
}

.contact-titles {
    padding-right: 20px;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-circle:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.social-circle i {
    color: rgba(136, 142, 145, 1);
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-circle:hover i {
    color: #fff;
}

.contact-form-container {
    padding: 0;
}

.cf7-compatible-form {
    width: 100%;
}

.form-row {
    margin-left: -10px;
    margin-right: -10px;
}

.form-row>div {
    padding-left: 10px;
    padding-right: 10px;
}

.form-control {
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0;
    background-color: transparent;
    height: auto;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.message-area {
    resize: none;
    height: 130px;
}

.btn-submit {
    background-color: #132246;
    color: var(--white);
    border: none;
    padding: 18px 25px;
    font-size: 0.95rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    width: 343px;
    justify-content: center;
    height: 60px;
    position: relative;
    z-index: 1;
    animation: fadeOutButtonBlueToOrange 1s infinite alternate;
}

.btn-submit:hover {
    background-color: #0c1528;
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.testimonial-card__text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-card__text::before {
    content: "\201C";
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-card__name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-card__company {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Newsletter Section
--------------------------------------------------------------*/
.newsletter-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 120px 0;
    text-align: left;
}

.newsletter-content {
    max-width: 90%;
}

.newsletter__title {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
}

.newsletter__text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 20px;
}

.newsletter-input-group p {
    display: flex;
    width: 100%;
    max-width: 680px;
    margin-left: auto;
}

.newsletter-input-group span.wpcf7-not-valid-tip {
    position: absolute;
}

.newsletter-input {
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px 20px;
    flex-grow: 1;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
    height: 84px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background-color: #132246;
    color: var(--white);
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 0 25px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #0c1528;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--tertiary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    position: relative;
}

.footer-main {
    padding-bottom: 30px;
}

.footer-column {
    position: relative;
    /* padding: 0 55px; */
}

.footer-column-spacing {
    padding-left: 57px;
    padding-right: 57px;
}

.footer-column:not(:last-child) {
    position: relative;
}

.footer-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    height: 100vh;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
}

.footer__text {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 175px;
    max-width: 345px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-link-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 1);
    color: var(--tertiary-color);
    border-radius: 5px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.social-link-box:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-heading {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.footer-icon {
    margin-right: 8px;
    font-size: 17px;
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border-radius: 10px;
}

.footer__title {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 16px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-address-section {
    margin-bottom: 30px;
}

.address-title {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 27px;
    font-weight: 600;
}

.address-content {
    color: var(--white);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 220px;
}

.footer-contact-item {
    margin-bottom: 10px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--primary-color);
}

.footer-contact-link i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.copyright {
    margin: 15px 0 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
}

.back-to-top-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/*--------------------------------------------------------------
# Scroll To Top Button
--------------------------------------------------------------*/
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}



/*--------------------------------------------------------------
# Inner Banner
--------------------------------------------------------------*/
.inner-wrap {
    padding: 70px 100px 70px;
    aspect-ratio: 1800 / 500;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.inner-banner .hero__text {
    margin: 0;
}

.inner-banner .hero__text,
.inner-banner p {
    margin: 0;
    font-size: 24px;
    color: var(--gray-400);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inner-content {
    position: relative;
    z-index: 2;
}

/*--------------------------------------------------------------
# Main Services
--------------------------------------------------------------*/
.serv-content {
    max-height: 708px;
    overflow-y: auto;
    padding-right: 10px;
}

.serv-image img {
    aspect-ratio: 873/708;
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.serv-content .title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.serv-content h2 {
    margin: 0;
    font-size: 35px;
}

.serv-content p,
.serv-content ul li {
    font-size: 18px;
    color: var(--text-light);
}

.serv-content ul li,
.serv-content ul li p {
    font-size: 16px;
    margin-bottom: 10px;
    list-style: disc;
}

.serv-content ul li:last-child {
    margin-bottom: 0px;
}

.serv-content ul li:not(:last-child) {
    /* margin-bottom: 10px; */
}

/*--------------------------------------------------------------
# Main Career
--------------------------------------------------------------*/


.career-nav-section {
    padding: 0 0 30px;
}

.career-content-section {
    padding-top: 0;
}

.page-template-career .inner-banner {
    padding-bottom: 30px;
    padding-top: 0;
}

.inner-banner {
    padding: 0 0 30px;
}

.career-content h2 {
    font-size: 53px;
    margin-bottom: 30px;
}

.career-content p {
    font-size: 20px;
}

.career-breadcrumb {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #000;
}

.career-breadcrumb a {
    color: #000;
    text-decoration: underline;
}

.career-breadcrumb a:hover {
    color: var(--primary-color);
}

.career-content {
    margin-bottom: 40px;
}

.career-application-inner {
    background: rgba(239, 239, 239, 1);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.career-application-inner h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.career-application-inner p {
    font-size: 18px;
    color: var(--tertiary-color);
}

.career-application-inner p:last-of-type {
    margin-bottom: 0;
}

.career-application-inner p a {
    color: var(--tertiary-color) !important;
    text-decoration: underline;
}

.career-application-inner p a:hover {
    color: var(--primary-dark) !important;
}

.view-positions-section p {
    font-size: 18px;
    color: var(--tertiary-color);
    margin-bottom: 30px;
}

.position-card {
    background-color: var(--tertiary-color);
    padding: 30px;
    border-radius: 18px;
    display: block;
    aspect-ratio: 885/482;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.position-card .position-type {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-primary);
    margin: 0;
}

.position-card .position-content {
    display: flex;
    /* aspect-ratio: 520/150; */
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    margin-bottom: 140px;
    position: relative;
    z-index: 1;
}

.position-card .position-location {
    align-self: end;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}



.job-card {
    /* background-color: var(--tertiary-color); */
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(234, 235, 235, 1);
    background: rgba(255, 255, 255, 1);
}

.job-card p {
    color: rgba(136, 142, 145, 1);
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1;
}

.job-card h4 {
    font-size: 46px;
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.author-wrap {
    height: 100%;
    position: relative;
}

.author-wrap .title {
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.author-wrap .author-details {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: #000;
    position: sticky;
    top: 50px;
}

.author-wrap img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50px;
}



.news-single-content h2 {
    font-size: 52px;
    margin-bottom: 60px;
    font-weight: 700;
}

.news-single-content h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.news-single-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #444;
}

.news-single-content p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 2rem;
}

.news-single-content strong {
    font-weight: 600;
}

.news-single-content em {
    font-style: italic;
}

.news-single-content figure {
    margin: 2rem 0;
    text-align: center;
}

.news-single-content figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.news-single-content figcaption {
    font-size: 0.9rem;
    color: #777;
    margin-top: 0.5rem;
}

.news-single-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #333;
    background-color: #f9f9f9;
}

.news-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.news-single-content th,
.news-single-content td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
}

.news-single-content th {
    background-color: #f1f1f1;
    font-weight: 600;
}

.news-single-content .cta-section {
    background-color: #eef6ff;
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 2rem 0;
    text-align: center;
    border-radius: 6px;
}

.news-single-content .cta-section p {
    margin-bottom: 1rem;
}

.news-single-content .cta-section button {
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.news-single-content .cta-section button:hover {
    background-color: var(--primary-color);
}

.services-main-row:not(:last-child) {
    margin-bottom: 100px;
}

.active>.page-link,
.page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

a.page-link {
    color: var(--primary-color);
}

.page-link:hover {
    color: var(--primary-color);
}

.active>.page-link:hover,
.page-link.active:hover {
    color: #fff;
}

.news-single-section {
    padding-top: 0;
}

.service-cad-bg {
    position: absolute;
    top: 0;
    right: 0;
}

.service-card:hover {
    background-color: var(--tertiary-color);
}

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

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

.service-card:hover .read-more-link {
    color: #fff;
}


@keyframes fadeOutBefore {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOutAfter {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOutBeforeOrange {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOutAfterOrange {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOutButtonBlueToOrange {
    from {
        background-color: var(--primary-color);
    }

    to {
        background-color: var(--tertiary-color);
    }
}


.page-template-contact-us .contact-section {
    padding-top: 50px;
    border: unset;
}

.page-template-contact-us .contact-section::before {
    display: none;
}

.team-section .section__title {
    margin-bottom: 15px;
}


.stat-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 24px;
    color: #333;
    line-height: 1;
}

.section-content h2 {
    font-size: 52px;
}

.section-content p {
    font-size: 20px;
}

.section-content p:last-of-type {
    margin-bottom: 40px;
}

.map-animate-wrap img {
    filter: brightness(0.8);
    max-width: 100%;
}

.map-animate-wrap figure {
    margin: 0;
}



.map-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.map-animate-wrap {
    position: relative;
}

.map-mask .map-path-setting {
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.map-mask .map-path-setting li {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.map-mask .map-path-setting li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(44, 193, 181, 0.4);
    transform: scale(1.7);
    z-index: 0;
    animation: glow-after 1s infinite alternate;
    background-color: var(--primary-color);
    top: 0px;
    left: 0px;
    opacity: 0.4;
}

.map-mask .map-path-setting li::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(44, 193, 181, 0.4);
    transform: scale(2.3);
    z-index: 0;
    animation: glow-before 1s infinite alternate;
    background-color: var(--primary-color);
    opacity: 0.2;
}

li.path-1 {
    top: 49%;
    left: 63.7%;
}

li.path-2 {
    top: 47%;
    left: 60%;
}

li.path-3 {
    top: 52.7%;
    left: 67.8%;
}

li.path-4 {
    top: 42%;
    left: 57.7%;
}


@keyframes glow-after {
    0% {
        /* opacity: 0.4; */
        transform: scale(1);
    }

    /* 50% {
        opacity: 0.3;
        transform: scale(2.8);
    } */

    100% {
        /* opacity: 0; */
        transform: scale(1.7);
    }
}

@keyframes glow-before {
    0% {
        /* opacity: 0.3; */
        transform: scale(1);
    }

    /* 50% {
        opacity: 0.3;
        transform: scale(2.8);
    } */

    100% {
        /* opacity: 0; */
        transform: scale(2.3);
    }
}


.position-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.position-bottom .job-opened {
    color: #fff;
    font-size: 36px;
    display: block;
    font-family: var(--font-primary);
}

.position-bottom .job-opened span {
    font-weight: 700;
    color: var(--primary-color);
}

.position-bottom .read-article-btn {
    padding-left: 30px;
    padding-right: 30px;
}

.position-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    +w: ;
    left: 0;
    z-index: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.career-application-inner h3 {
    font-family: var(--font-primary);
    font-weight: 500;
}

.view-positions-section {
    margin-top: 20px;
}

.position-buttons-container {
    margin-top: 50px;
}

.further-details {
    padding-top: 30px;
    border-top: 1px solid rgba(234, 235, 235, 1);
    max-width: 100%;
    width: 870px;
}

.further-details span {
    font-size: 20px;
    font-weight: 400;
    color: rgba(78, 83, 86, 1);
}

.job-card .read-article-btn {
    width: 252px;
    justify-content: center;
}

.job-card .sub-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: block;
}


.career-breadcrumb .current-page span {
    color: var(--primary-color);
}

.view-positions-section>h3 {
    font-size: 36px;
    margin-bottom: 50px;
    line-height: 1;
}

.view-positions-section>h4 {
    font-size: 48px;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(234, 235, 235, 1);
}

.moretext {
    display: none;
}

.featured-article_slider {
    position: relative;
}

.services-nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

.featured-nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}

.featured-button-next,
.featured-button-prev,
.services-button-next,
.services-button-prev {

    height: 50px;
    width: 50px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.map-mask .map-path-setting li span {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 105px;
    line-height: 1.2;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--Border-Primary, rgba(234, 235, 235, 1));
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    display: none;
}

.map-mask .map-path-setting li:hover span {
    display: block;
}

.map-mask .map-path-setting li {
    cursor: pointer;
}

.services-slider .swiper-slide {
    height: auto;
}

.services-slider .service-card-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.single-team-card {
    background: transparent;
    border: 0;
    padding: 0;
}

.single-team-card .team-card__image {
    width: 113px;
    height: 113px;
    margin: 0;
}

.single-team-card .team-card__content {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 8px;
    margin-top: 20px;
}

.single-team-card .team-card__content span {
    font-size: 18px;
    font-weight: 500;
}

.single-team-card .team-card__contact {
    display: flex;
    justify-content: start;
    margin-top: 0px;
}

.single-team-card .team-card__position {
    width: 100%;
    text-align: start;
}

.single-team-card .team-card__position::after {
    width: 100%;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-text h3 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}


.service-block {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    padding-bottom: 20px;
}

.service-block h4 {
    font-size: 23px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.service-block ul {
    list-style: disc inside;
    color: var(--text-light);
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 15px;
    margin: 0px;
}

.service-block ul li strong {
    color: #000;
    font-weight: 500;
}

.service-block ul li::marker,
.choose-content ul li::marker {
    color: var(--primary-color);
}

.choose-content h2 {
    font-size: 35px;
    margin-bottom: 40px;
}

.choose-content ul {
    list-style: disc inside;
    list-style-type: "✔";
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0px;
}


.choose-content ul li strong {
    color: #000;
    font-weight: 500;
    padding-left: 10px;
}

.testimonial-card-main {
    background: #fff;
    height: 100%;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(234, 235, 235, 1);
}

.testimonial-content-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}


.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    ;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #fff;
}

.quote-icon svg {
    width: 28px;
    height: 28px;
}

.testimonial-content p {
    line-height: 1.8;
    font-style: italic;
}


.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.testimonials-slider .swiper-slide {
    height: unset;

}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.author-details h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0px;
}

.rating {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
    padding: 15px 10px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.contact-form-container input[type="submit"] {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s ease;
}