* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* Success Messages */
.success-msg,
.error-msg{
    display: none;
    margin: 16px 0;
    font-size: 15px;
    text-align: center;
}

input[type="tel"]::placeholder, input[type="email"]::placeholder{
    color: #6b7280 !important;
}

.success-msg{
    color: #198754;
}

.error-msg{
    color: #dc3545;
}

.text-center {
    text-align: center;
}

/* TOP BAR */
.top-bar {
    background-color: #2f5597;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

/* .top-bar marquee {
    width: 100%;
} */

.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* NAVBAR */
.navbar {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    max-width: 100%;
    margin: auto;
    padding: 10px 20px;
}

.navbar nav a {
    font-size: 16px;
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar .logo-text {
    font-size: 13px;
    text-align: center;
    color: gray;
    margin: -5px 0 0 0;
    font-weight: 800;

}

.navbar nav {
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.2s;
}

.partner {
    margin-left: 7px;
    margin-bottom: -2px;
    color: gray;
    font-weight: 800;
    font-size: 14px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown-content {
    position: absolute;
    top: 2rem;
    left: 0;
    background: white;
    min-width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

.dropdown-content.dropdown-content2 {
    min-width: 230px;
}

.dropdown-content a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    color: #1F5C9F;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Active Menu */
.navbar nav a.active,
.navbar nav .active {
    color: #355FA1;
    /* Blue */
    font-weight: 600;
}

/* HERO */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -2;
    transform: scaleX(-1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.347) 40%, rgba(255, 255, 255, 0.2));
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    margin-top: 6%;
    width: 45%;
}

/* TEXT */
.hero-text h1 {
    font-size: 60px;
    line-height: 1.2;
    margin: 15px 0 20px;
    color: #fff;
    /* -webkit-text-stroke: 2px #fff; */
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-shadow: 0 4px 4px #000000f0;
}

.subtitle {
    color: #e91e63;
    font-size: 14px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-title {
    position: relative;
    display: inline-block;
    font-weight: 700;
    z-index: 1;
}

.btn {
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
}

.primary {
    background: #1f4383;
    color: white;
}

.outline {
    border: 2px solid #e91e63;
    color: #fff;
    background-color: #e91e63;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    background: white;
    padding: 20px 35px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stats p {
    color: #777;
    font-size: 12px;
}

.stats div {
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 18px;
    color: #1f4383;
}

/* IMAGE CARD */
.hero-image img {
    width: 40rem;
    height: 30rem;
    border-top-left-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/* FLOATING FORM */
.availability-box {
    max-width: 1200px;
    margin: -50px auto 20px;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.378);
    border: 4px solid rgba(6, 113, 253, 0.705);
}

.availability-box .form-row .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.availability-box .form-row .form-group label {
    font-size: 14px;
}

.availability-box .form-row .form-group i {
    margin-right: 8px;
    margin-bottom: 12px;
    margin-left: 2px;
    color: #D1348E;
    font-size: 16px;
}

.hidden {
    visibility: hidden;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: space-between;
    align-items: end;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 10px 0 10px 6px;
    border-radius: 10px;
    border: 1px solid #ccc;
    color: gray;
}

.contact-btn {
    background: #D1348E;
    color: white;
    border: none;
    padding: 11px 22px;
    border-radius: 10px;
    cursor: pointer;
}

/* Assisted Living Section */
.assisted-section {
    padding: 40px 20px;
}

.container {
    max-width: 1150px;
    margin: auto;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 40px;
    color: #314A6A;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    margin: 0 auto 50px;
    color: #1A202C;
    line-height: 1.6;
    font-size: 16px;
    width: 950px;
    font-weight: 400;
}

.read-more {
    text-align: center;
}

.read-more-btn {
    text-align: center;
    margin-top: -20px;
    padding: 12px 22px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 30px;
}

.read-more-btn:hover {
    color: #fff;
    background: #1f5c9f;
    border-color: #1f5c9f;
}

/* GRID */
.assisted-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE */
.assisted-image {
    position: relative;
}

.assisted-image img {
    width: 100%;
    border-radius: 30px;
}

.assisted-image .google-badge img {
    width: 270px;
}

.google-badge {
    position: absolute;
    right: 50px;
    bottom: 100px;
    background: rgba(255, 255, 255, 0.484);
    border-radius: 14px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.social-icons {
    display: flex;
    gap: 20px;
    position: absolute;
    right: 76px;
    bottom: 8px;
}

.social-icons a {
    padding: 18px;
    height: 25px;
    width: 25px;
    color: #fff;
    background: #000;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* FEATURES */
.assisted-features {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature h3 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1A202C;
    font-size: 22px;
}

.feature p {
    font-weight: 400;
    color: #1A202C;
    line-height: 1.5;
    letter-spacing: 1px;
    font-size: 16px;
}

/* ICON */
.icon {
    min-width: 48px;
    height: 48px;
    background: #e91e63;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* Segment Section */

.segments-section {
    background: #f3f6fb;
    padding: 40px 20px;
}

.segments-swiper .swiper-wrapper {
    align-items: stretch;
}

.segments-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.segment-card {
    width: 100%;
}

/* DIVIDER LINE */
.divider {
    width: 100%;
    height: 2px;
    background: #cfd8e3;
    margin: 30px 0 50px;
}

/* GRID */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */
.segment-card {
    background: transparent;
    border-radius: 18px;
    transition: .3s;
}

.segment-card img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 15px;
}

.segment-card h3 {
    color: #1A202C;
    margin-bottom: 8px;
    font-size: 16px;
}

.segment-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* BUTTON */
.plan-btn {
    display: inline-block;
    border: 1px solid #b8c2d0;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: .25s;
}

.plan-btn:hover {
    background: #2F5497;
    color: white;
    border-color: #2F5497;
}

/* ACTIVE CARD (middle blue button like screenshot) */
.plan-btn.primary {
    background: #2F5497;
    color: white;
    border-color: #2F5497;
}

/* HOVER LIFT */
.segment-card:hover {
    transform: translateY(-6px);
}

/* MOMENT SECTION */
.moments-section {
    position: relative;
    background: #f4f7fb;
    padding: 40px 10px;
}

.moments-section .section-title {
    margin-bottom: 30px;
}

.swiper.moments-swiper {
    width: 100%;
    height: 100%;
}

.moments-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 0;
    cursor: pointer;
}

.moments-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.moments-swiper .swiper-slide.swiper-slide-next {
    transition:
        transform 700ms cubic-bezier(.22, .61, .36, 1),
        opacity 700ms cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
    transform: scale(1) !important;
}

.moments-swiper .swiper-slide {
    transform: scale(.85) !important;
    transition:
        transform 700ms cubic-bezier(.22, .61, .36, 1),
        opacity 700ms cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.moments-section .swiper-nav {
    text-align: center;
}

.moments-section .custom-pagination {
    margin-top: 20px;
}

.moment-caption {
    background: #D1348EA1;
    position: absolute;
    bottom: 0;
    height: 90px;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    opacity: 0;
}

.swiper-slide-next .moment-caption {
    opacity: 1 !important;
}

.moment-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: block;
    justify-content: space-between;
}

.moment-arrow .insta-post-next {
    position: absolute;
    right: clamp(10px, 4vw, 9rem);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #314a6a;
}

.moment-arrow .insta-post-prev {
    position: absolute;
    left: clamp(10px, 4vw, 9rem);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #314a6a;
}

.moment-arrow .insta-post-arrow:after,
.moment-arrow .insta-post-arrow:before {
    font-size: 18px;
    font-weight: bold;
    color: #314a6a;
}

.moment-caption h4 {
    color: white;
    margin: 0;
    font-size: 14px;
    text-align: left;
}

.moment-caption p {
    color: white;
    margin-top: 5px;
    font-size: 12px;
    text-align: left;
}

/* Menu Section */
.menu-section {
    background: #f5f7fb;
    padding: 40px 20px;
}

.menu-section .menu-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.menu-grid .menu-list,
.menu-grid .schedule {
    width: 50%;
}

.mySwiper {
    width: 100%;
    height: 100%;
    z-index: 1 !important;
}

.mySwiper2 .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #1F5C9F;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper,
.mySwiper2 {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
    margin-top: -35px;
    z-index: 0 !important;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 15px 0 !important;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

/* .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */


.mySwiper2 .meal {
    width: 100px;
    bottom: 13px;
    position: absolute;
    right: 54px;
}

.mySwiper2 ul {
    padding: 110px 40px;
    text-align: left;
    border-radius: 56px;
}

.mySwiper2 ul li {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
}

.mySwiper2 ul li .bullet {
    height: 10px;
    width: 10px;
    background: #EC268F;
    border-radius: 50%;
    margin-right: 20px;
    margin-top: 4px;
}

.mySwiper2 ul {
    list-style: none;
}

.mySwiper2 ul li::marker {
    font-size: 30px;
}

.mySwiper2 .swiper-slide {
    border-radius: 30px;
}

.mySwiper h4 {
    text-align: center;
    padding: 0 10px 25px 10px;
    color: #696868;
    font-size: 20px;
    cursor: pointer;
}

.mySwiper .swiper-slide-thumb-active h4 {
    text-align: center;
    background: #f5f7fb;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


.mySwiper .swiper-slide-thumb-active h4::after {
    content: '';
    position: absolute;
    left: 13px;
    right: 14px;
    bottom: 10px;
    height: 6px;
    border-radius: 6px;
    background: #e91e63;
    width: 44px;
}

.meal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 520px;
}

.meal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    line-height: 1.4;
    color: #fff;
    font-size: 18px;
}

.meal-list .bullet {
    width: 8px;
    height: 8px;
    background: #ff2c7d;
    border-radius: 50%;
    margin-top: 9px;
    flex-shrink: 0;
}

.meal-list .label {
    font-weight: 600;
    min-width: 140px;
    /* keeps alignment */
}

.meal-list .text {
    flex: 1;
}

.curve-box1 {
    position: absolute;
    height: 50px;
    width: 127px;
    color: #fff;
    bottom: 0;
    left: 0;
    background: #fff;
    border-top-right-radius: 20px;
}

.curve-box2 {
    position: absolute;
    height: 30px;
    width: 30px;
    color: #fff;
    bottom: 0px;
    left: 127px;
    background: #1f5c9f;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 14px #fff;
}

.curve-box3 {
    position: absolute;
    height: 47px;
    width: 30px;
    color: #fff;
    bottom: 50px;
    left: 0px;
    background: #1f5c9f;
    border-bottom-left-radius: 20px;
    box-shadow: -3px 18px #fff;
}

.mySwiper2 .curve-img {
    position: absolute;
    height: 23%;
    width: 32%;
    bottom: 0;
    left: 0;
}

/* TIMELINE */
.schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule .schedule-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.schedule .schedule-text h4 {
    font-size: 18px;
    color: #1f5c9f;
}

.schedule .schedule-text h5 {
    font-size: 14px;
    color: #1f5c9f;
}

.time-item {
    padding: 18px;
    border-radius: 12px;
    font-size: 14px;
}

.time-item span {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #2c5f9b;
}

.time-item.blue {
    background: #d9e6f5;
    border-left: 5px solid #2c5f9b;
    font-size: 15px;
    font-weight: 600;
    color: #2c5f9b;
}

.time-item.pink {
    background: #f3d8e6;
    border-left: 5px solid #e91e63;
    font-size: 15px;
    font-weight: 600;
    color: #e91e63;
}


/* TEAM */
.team-section {
    text-align: center;
    background: #f5f7fb;
    padding: 40px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* cards */
.team-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* overlay */
.team-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    /* background: rgb(255 255 255 / 40%); */
    background: #fff;
    padding: 15px 15px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    text-align: center;
}

.item-info h3 {
    color: #fff;
    margin-bottom: 5px;
}

.item-info span {
    font-size: 16px;
    color: #1f5c9f;
}

/* hidden */
.hidden-card {
    display: none;
}

/* button */
.view-more-btn {
    margin-top: 35px;
    padding: 12px 22px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.view-more-btn:hover {
    color: #fff;
    background: #1f5c9f;
}

/* WHY */

.why-section {
    background: #f5f7fb;
    padding: 40px 20px;
    text-align: center;
}

.why-grid-2 {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    align-items: center;
}

.why-grid-2 .gif-why {
    text-align: end;
}

.gif-why img {
    width: 95%;
}

/* GRID */
.why-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;

    grid-template-areas:
        "big two two"
        "big three four";
}

.why-points {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
    text-align: left;
}

.why-points div {
    color: #314a6a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

/* big card spans 2 rows */

.area-big {
    grid-area: big;
}

/* .area-two {
    grid-area: two;
} */

.area-three {
    grid-area: three;
}

.area-four {
    grid-area: four;
}

/* right side stacked */
.why-card.small {
    height: 100%;
}

/* CARD BASE */
.why-card {
    background: #d9e6f5;
    border-radius: 22px;
    padding: 35px;
    position: relative;
    text-align: left;
    min-height: 160px;
}

/* different colors */
.why-card.big {
    background: #ead6df;
}

.why-card:nth-child(2) {
    background: #d8e6f5;
}

.why-card:nth-child(3) {
    background: #d8e6f5;
}

.why-card:nth-child(4) {
    background: #d8e6f5;
}

/* number */
.number {
    font-size: 64px;
    font-weight: 700;
    opacity: .18;
    position: absolute;
    top: 15px;
    left: 20px;
}

/* heading */
.why-card h3 {
    position: relative;
    z-index: 2;
    margin-top: -10px;
    font-size: 22px;
    color: #1d2b4f;
    margin-left: 2rem;
}

/* image */
.train-img {
    position: absolute;
    width: 60%;
    opacity: .9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loc-img1 {
    position: absolute;
    left: 0;
    width: 40%;
    bottom: 0;
}

.loc-img2 {
    position: absolute;
    right: 0;
    width: 40%;
    bottom: 0;
}

/* LEFT FLOATING CONTACT BUTTONS */
.floating-left-buttons {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-left-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
}

.floating-left-btn.whatsapp {
    background: #25D366;
}

.floating-left-btn.call {
    background: #1f5c9f;
}

.floating-left-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

/* PRIVACY PAGE / LEGAL STYLES */
.privacy-page .page-hero {
    text-align: center;
}

.privacy-page .page-hero h1 {
    color: #fff;
    font-size: 34px;
    margin: 6px 0 6px;
}

.privacy-page .page-hero .subtitle {
    margin-bottom: 6px;
}

.privacy-page .legal-section {
    background: transparent;
}

.privacy-page .legal-section .container {
    max-width: 1100px;
    margin: 20px auto;
    background: #ffffff;
    padding: 30px 34px;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(28,50,90,0.06);
    color: #444;
}

.privacy-page .legal-section h2 {
    color: #173a66;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
}

.privacy-page .legal-section h3 {
    color: #2b4a78;
    font-size: 16px;
    margin-bottom: 8px;
}

.privacy-page .legal-section p,
.privacy-page .legal-section li {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 15px;
}

.privacy-page .legal-section ul {
    margin-left: 18px;
    margin-bottom: 12px;
}

.privacy-page .legal-section hr {
    border: 0;
    height: 1px;
    background: #eef6ff;
    margin: 22px 0;
}

.privacy-page .legal-section a {
    color: #1f5c9f;
}

@media (max-width: 768px) {
    .privacy-page .legal-section .container { padding: 20px; margin: 12px; }
    .privacy-page .page-hero h1 { font-size: 26px; }
}


.zero-img {
    position: absolute;
    width: 30%;
    bottom: 5px;
    left: 20px;
}

.free-img {
    position: absolute;
    width: 40%;
    bottom: 5px;
    left: 0;

}


.footer-wrapper {
    background: #020c18;
    margin-top: 15rem;
    position: relative;
}

/* FLOATING CARD */
.newsletter-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e23a8e, #c92f7f);
    border-radius: 26px;
    padding: 85px 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    transform: translateY(-80px);
}

.newsletter-left {
    width: 50%;
}

.newsletter-left img {
    position: absolute;
    top: -100px;
    width: 35%;
}

.newsletter-right h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-right p {
    color: #fff;
    font-size: 17px;
    margin-top: 13px;
    font-weight: 400;
}

/* input */
.subscribe-form {
    background: #1f4383;
    padding: 6px;
    border-radius: 40px;
    display: flex;
    max-width: 476px;
}

.subscribe-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: white;
    padding: 12px 18px;
    outline: none;
    font-size: 16px;
}


.subscribe-form button {
    background: white;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.footer {
    padding: 0px 20px 30px;
    color: #cbd5e1;
}

.footer .mt-16 {
    margin-top: 16px;
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 30px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 40px;
}

.footer-about p {
    margin: 15px 0;
    line-height: 1.6;
}

.footer-about img {
    width: 90%;
    filter: brightness(10);
}

/* socials */
.socials i {
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #000;
    background: #ffffff;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    margin-right: 8px;
}

.contact p {
    margin-top: 15px;
}


.contact a{
    color: #fff;
}

.contact i {
    color: #1f5c9f;
    font-size: 18px;
    margin-right: 10px;
}

/* bottom */
.footer-bottom {
    max-width: 1100px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-bottom: 20px;
}

.footer-links a {
    margin-left: 18px;
    cursor: pointer;
    color: #fff;
}

.footer-seo {
    max-width: 1100px;
    margin: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cfd8e3;
}

.footer-seo h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-seo p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 10px;
    justify-content: space-between;
    /* color: #1f5c9f; */
}

.seo-links a {
    font-size: 13px;
    color: #9ecbff;
    text-decoration: none;
}

.seo-links a:hover {
    text-decoration: underline;
}


/* overlay */
.popup-overlay {
    position: fixed;
    inset: 0;

    background: rgba(10, 20, 40, .35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}


/* visible state */
.popup-overlay.active {
    display: flex;
}

/* box */
.popup-box {
    width: 690px;
    background: #dbe7f3;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    overflow: hidden;
    position: relative;
    animation: popup .35s ease;
}

.instant-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-schedule {
    background: linear-gradient(135deg, #3360a2, #0072ff);
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 0;
}

@keyframes popup {
    from {
        transform: scale(.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-box .top-bar {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;

}

.popup-box .input-group {
    position: relative;
}

.popup-box .input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 15px;
}

/* input style */
.popup-box .input-group input {
    width: 100%;
    padding: 14px 14px 14px 42px;
    /* space for icon */
    border-radius: 12px;
    border: none;
    outline: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
    font-size: 15px;
}

/* focus effect */
.popup-box .input-group input:focus {
    box-shadow: 0 0 0 2px #2f5e9b inset, 0 6px 14px rgba(0, 0, 0, .15);
}


/* close */
.close-popup {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 26px;
    border: none;
    background: none;
    cursor: pointer;
}

/* left image */
.popup-left {
    background: #2f5e9b;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.popup-left img {
    max-height: 340px;
}

/* right */
.popup-right {
    padding: 40px;
}

.popup-right p {
    font-size: 14px;
    margin-top: 10px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.callback-form input {
    padding: 14px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
}

.callback-form button {
    background: #2f5e9b;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}



.widget-container {
    text-align: center;
    background: #fff;
    padding: 2.5rem;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 400px;
    border: 2px solid #e1e8ed;
}

.clock {
    width: 220px;
    height: 220px;
    border: 8px solid #1f4383;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    background: #fff;
}

.hand {
    width: 50%;
    background: #e91e63;
    position: absolute;
    top: 50%;
    transform-origin: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.hour-hand {
    height: 6px;
    width: 30%;
    left: 20%;
    z-index: 3;
}

.min-hand {
    height: 4px;
    width: 45%;
    left: 5%;
    z-index: 2;
}

/* Center Pin */
.clock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #e91e63;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.display-area {
    min-height: 0;
}

.time-label {
    font-size: 1.5rem;
    color: #1f4383;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.activity-text {
    font-size: 16px;
    color: #1d2b4f;
    line-height: 1.4;
    font-weight: 600;
    transition: opacity 0.3s;
}

.widget-title {

    font-size: 1.5rem;
    color: #1f4383;
    font-weight: 800;
    margin-bottom: 10px;
}


.maps iframe {
    border-radius: 20px;
    margin-top: 20px;
}

/* Testimonial Section */

.testimonial-section {
    background: #f5f7fb;
    padding: 40px 20px;
    text-align: center;
    position: relative;

}

.testimonial-section .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* also safe for swiper */
.video-swiper {
    width: 100%;
    max-width: 100%;
    text-align: center;
    text-align: -webkit-center;
}

.text-swiper {
    width: 100%;
    max-width: 100%;
    text-align: center;
    text-align: -webkit-center;
}

.video-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    transform: translateY(-50%);
    display: none;
    justify-content: space-between;
    pointer-events: none;
}

@media (min-width: 640px) {
    .video-arrow {
        display: flex;
    }
}

.video-arrow .swiper-button-prev {
    position: absolute;
    left: -57px;
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #314a6a;
}

.video-arrow .swiper-button-next {
    position: absolute;
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    right: -25px;
    border: 2px solid #314a6a;
}

.video-arrow .swiper-button-prev:after,
.video-arrow .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
    color: #314a6a;
}

.shorts-video {
    width: 240px;
    aspect-ratio: 9/16;
    border-radius: 26px;
    overflow: hidden;
    background: #000;
}

.shorts-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-swiper .section-title,
.text-swiper .section-title {
    margin-bottom: 30px;
}

/* TEXT */
.review-card {
    text-align: center;
}

.review-card img {
    width: 100px;
}

.user {
    font-weight: 700;
    margin-top: 10px;
    font-size: 22px;
}

.stars {
    color: #fbbf24;
    margin-bottom: 10px;
    font-size: 26px;
}

.review {
    color: #374151;
    font-size: 16px;
}

.text-swiper .review-card {
    padding: 30px 100px;
}

/* .text-nav {
    width: auto;
    position: absolute;
    right: 27rem;
    bottom: 4rem;
} */


.text-nav {
    width: 50%;
    /* text column */
    margin-left: 50%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.text-pagination,
.moments-pagination,
.video-pagination,
.segments-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #c7d2e5;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #314a6a;
}

/* FAQS */

/* PAGE HERO */
.page-hero {
    background: linear-gradient(120deg, #1f4383, #2f5e9b);
    padding: 70px 20px;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.breadcrumb {
    opacity: .9;
    font-size: 14px;
}

/* FAQ */
.faq-page {
    background: #f4f7fb;
    padding: 80px 20px;
}

.faq-container {
    max-width: 1150px;
    margin: auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #1d2b4f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    color: #6b7280;
    line-height: 1.7;
    transition: max-height .4s ease, padding .3s;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 26px 22px;
}

/* plus icon */
.plus {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #1f4383;
    position: relative;
}

.plus::before,
.plus::after {
    content: '';
    position: absolute;
    background: #1f4383;
}

.plus::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.plus::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .plus::after {
    display: none;
}

/* CTA */
.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta a {
    display: inline-block;
    background: #e91e63;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

/* Blogs */


/* HERO */
.blog-hero {
    background: linear-gradient(120deg, #1f4383, #2f5e9b);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* BLOG SECTION */
.blog-section {
    background: #f4f7fb;
    padding: 80px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    position: relative;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

/* IMAGE */
.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background: #eaf1fb;
    color: #1f4383;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d2b4f;
    margin-bottom: 8px;
}

.blog-date {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.blog-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-section .featured-content p {
    padding-bottom: 10px;
}

.blog-section .read-more {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
}

.blog-section .blog-grid .read-more {
    text-decoration: none;
    font-weight: 600;
    color: #1d2b4f;
}

.read-more {
    text-decoration: none;
    font-weight: 600;
    color: #1d2b4f;
}

.blog-section .side-content h3 {
    padding-bottom: 10px;
}

/* PAGINATION */
.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .08);
    color: #1f4383;
    text-decoration: none;
}

.pagination a.active {
    background: #1f4383;
    color: #fff;
}

/* FEATURED SECTION */
.featured-blogs {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* MAIN */
.featured-main {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    position: absolute;
    bottom: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
    color: #fff;
}

.featured-content h2 {
    margin: 10px 0;
}

/* SIDE */
.featured-side {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.featured-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-content {
    position: absolute;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent);
    color: #fff;
}

/* HERO */
.blog-detail-hero {
    background: #f4f7fb;
    padding: 20px 20px;
    text-align: center;
}

.blog-detail-hero h1 {
    font-size: 38px;
    margin: 15px 0;
    color: #222;
}

.blog-meta {
    color: #777;
    font-size: 14px;
}

.blog-category {
    background: #e83e8c;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* LAYOUT */
.blog-layout {
    max-width: 900px;
    margin: auto;
}

.blog-feature-img img {
    width: 100%;
    border-radius: 10px;
    margin: 40px 0;
}

.blog-content-area {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

.blog-content-area h2,
.blog-content-area h3 {
    margin-top: 30px;
}

/* RELATED BLOGS */
.related-blogs {
    background: #fafafa;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
}

.related-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.related-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.related-card:hover {
    transform: translateY(-5px);
}


/* RESPONSIVE */
@media(max-width:900px) {
    .featured-blogs {
        grid-template-columns: 1fr;
    }
}


/* RESPONSIVE */
@media(max-width:1000px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


/* About */

/* HERO */
.about-hero {
    height: 420px;
    background: url('assets/img/about-3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 45, 90, .75), rgba(20, 45, 90, .15));
}

.about-hero h1 {
    position: relative;
    color: white;
    font-size: 46px;
    margin-left: 8%;
    padding: 14px 28px;
    background: rgba(20, 45, 90, .65);
    border-radius: 6px;
}

/* SECTION BASE */
.about-section {
    background: #f5f7fb;
    padding: 50px 20px;
}

.container {
    max-width: 1050px;
    margin: auto;
}

/* HEADINGS */
.section-title {
    text-align: center;
    color: #314A6A;
    font-size: 40px;
    margin-bottom: 35px;
    position: relative;
}


/* STORY */
.story {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
    font-size: 16px;
    text-align: justify;
    line-height: 28px;
}

.story img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.highlight {
    background: #fff7e6;
    border-left: 4px solid #e91e63;
    padding: 18px 20px;
    margin: 20px 0;
    font-style: italic;
}

/* CENTRES */
.centres {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.centres span {
    background: #1F5C9F;
    color: #fff;
    padding: 15px 60px;
    border-radius: 30px;
    font-weight: 600;
}

/* SERVICES */
.services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.service {
    cursor: pointer;
    background: #fff;
    padding: 22px 15px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
    transition: .25s;
}

.service i {
    font-size: 60px;
    color: #1f4383;
    margin-bottom: 25px;
}

.service p {
    font-weight: 600;
    color: #374151;
    font-size: 18px;
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}


/* QUOTE */
.quote {
    text-align: center;
    font-size: 20px;
    color: #1f4383;
    margin-top: 45px;
    font-style: italic;
}

/* END BANNER */
.about-end {
    height: 450px;
    background: url('assets/img/about-4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 10%;
    color: white;
}

.about-end h2 {
    font-size: 80px;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 5px 18px rgba(0, 0, 0, .4);
    opacity: 0.3;
    font-style: italic;
}

.quote-highlight {
    margin: 50px 0;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(120deg, #f0f5fb, #ffffff);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.quote-highlight.new {
    margin: 40px 0;
}

.quote-highlight.new h1 {
    font-size: 20px;
}

/* soft background accent */
.quote-highlight::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #1f4383;
    opacity: .06;
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.quote-highlight::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: #e91e63;
    opacity: .05;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

/* main text */
.quote-highlight h1 {
    position: relative;
    font-size: 32px;
    font-weight: 600;
    color: #1f4383;
    line-height: 1.4;
    max-width: 850px;
    margin: auto;
}

/* emphasize last part */
.quote-highlight span {
    color: #e91e63;
    font-weight: 700;
}

.quote-highlight h3 {
    margin-bottom: 5px;
    color: #374151;
}

.about-page .footer-wrapper {
    margin-top: 0;
}

.about-section .section-title {
    margin-bottom: 15px;
}

.about-section .section-subtitle {
    margin-bottom: 25px;
}

/* MOBILE */
@media(max-width:900px) {
    .story {
        grid-template-columns: 1fr;
    }
}

/* Appointment */
/* Main Section */
.appointment-section {
    padding: 30px 20px;
}

.appointment-container {
    max-width: 1100px;
    margin: auto;
}

/* 2 Column Layout */
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Boxes */
.calendar-box,
.slots-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Header */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h2 {
    font-size: 20px;
    color: #1f2937;
}

.slots-box .tour {
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
    color: gray;
}

.month-nav button {
    padding: 6px 12px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 6px;
}

/* Weekdays */
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

/* Calendar Day */
.calendar-day {
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.day-available {
    background: #dcfce7;
    color: #166534;
}

.day-booked {
    background: #991b1b;
    color: white;
    cursor: not-allowed;
}

.day-none {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

.day-selected {
    background: #D1388D !important;
    color: white !important;
    transform: scale(1.1);
}

/* Slots */
.slots-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.selected-date {
    margin-bottom: 15px;
    font-weight: 600;
    color: #D1388D;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.time-slot {
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.2s;
}

.slot-available {
    background: #dcfce7;
    color: #166534;
    cursor: pointer;
}

.slot-available:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.slot-booked {
    background: #991b1b;
    color: white;
    cursor: not-allowed;
}

/* MODAL OVERLAY */
.booking-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

/* MODAL CONTENT */
.booking-modal-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 90%;
    max-width: 500px;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: scale(0.95);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: modalFade 0.3s ease forwards;
}

.booking-modal.active .booking-modal-content {
    transform: scale(1);
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* SUMMARY */
.modal-summary {
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #D1388D;
}


/* FORM */
.booking-modal .form-group {
    margin-bottom: 15px;
}

.booking-modal .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.booking-modal .form-group input,
.booking-modal .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: gray !important;
}

.booking-modal .confirm-btn {
    width: 100%;
    padding: 12px;
    background: #D1388D;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.booking-modal .confirm-btn:hover {
    background: #a0256f;
}


.floating-visit-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #3360a2, #0072ff);
    color: #fff;
    padding: 14px 15px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 10px 25px rgba(0, 114, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
}

.floating-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.6);
}

.floating-visit-btn .icon {
    background: transparent !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 28px;
}

/* SUCCESS MODAL */
.success-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1100;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: popIn 0.3s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #dcfce7;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 15px;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


.pinned-badge {
    background: yellow;
    color: black;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

/* Services */
/* HERO */
.service-hero {
    height: 420px;
    background: url('assets/img/assisted3.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.service-hero2 {
    background: url('assets/img/dementia2.jpg') center/cover no-repeat;
}

.service-hero3 {
    background: url('assets/img/palliative2.jpg') center/cover no-repeat;
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 45, 90, .8), rgba(20, 45, 90, .2));
}

.service-hero-content {
    position: relative;
    color: rgb(55, 65, 81);
    text-align: center;
    margin-bottom: 20px;
}

.service-hero-content h1 {
    margin-bottom: 12px;
}

.service-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.service-hero p {
    font-size: 18px;
    opacity: .95;
}

/* SECTION BASE */
.service-section {
    padding: 40px 20px;
    background: #f4f7fb;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* OVERVIEW */
.service-overview {
    text-align: center;
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
    color: #374151;
    font-size: 17px;
}

/* OFFER GRID */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.offer-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    transition: .3s;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

.offer-card h3 {
    color: #1f4383;
    margin-bottom: 12px;
}

.offer-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* CTA */
.cta-section {
    margin-top: 45px;
    text-align: center;
}

.primary-btn {
    background: #1f4383;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.primary-btn:hover {
    background: #a0256f;
}
.btn-reverse{
    background: #a0256f;
}
.btn-reverse:hover{
    background: #1f4383;
    border: 2px solid #fff;
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: #1f4383;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.offer-icon i {
    font-size: 40px;
}

.card-data {
    display: flex;
    gap: 30px;
    align-items: center;
}


/* MOBILE */
@media(max-width:900px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 32px;
    }
}

/* DIMENTIA */
/* HERO */
.dimentia .page-hero {
    height: 420px;
    background: url('assets/img/dementia-under.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.page-hero-faqs {
    height: 420px;
    background: url('assets/img/faqs.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.dimentia .page-hero h1 {
    font-size: 38px;
}

/* CONTENT */
.dimentia .content-section {
    padding: 5px 20px;
    background: #f4f7fb;
}

.dimentia .intro-section {
    padding: 50px 20px;
    background: #f4f7fb;
}

.dimentia .intro-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
}

/* TEXT */
.dimentia .intro-content h2 {
    font-size: 32px;
    color: #1f4383;
    margin-bottom: 15px;
}

.dimentia .intro-content p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* HIGHLIGHT BOX */
.dimentia .intro-highlight {
    margin-top: 20px;
    padding: 18px 20px;
    background: #fff;
    border-left: 5px solid #e91e63;
    border-radius: 10px;
    font-weight: 600;
    color: #1f4383;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

/* IMAGE */
.dimentia .intro-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

/* MOBILE */
@media(max-width:900px) {
    .dimentia .intro-wrapper {
        grid-template-columns: 1fr;
    }
}


.dimentia .container {
    max-width: 1150px;
    margin: auto;
}

/* TEXT */
.dimentia .content p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* HEADINGS */
.dimentia .content h2 {
    margin: 50px 0 15px;
    color: #1f4383;
}

/* LIST */
.dimentia .content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.dimentia .content ul li {
    margin-bottom: 10px;
}

/* STATS BOX */
.dimentia .stats-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    margin: 30px 0;
}

/* CTA */
.dimentia .cta-box {
    background: #1f4383;
    color: #fff;
    padding: 40px;
    border-radius: 16px;
    margin-top: 60px;
    text-align: center;
}

.dimentia .cta-box button {
    margin-top: 20px;
    background: #e91e63;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.dimentia .content-image {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.dimentia .content-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.dimentia .content-image img {
    transition: 0.4s;
}

.dimentia .content-image:hover img {
    transform: scale(1.05);
}

.dimentia .section-title {
    text-align: center;
    margin-top: 50px;
    color: #1f4383;
}

/* GRID */
.dimentia .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

/* CARD */
.dimentia .stat-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.dimentia .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

/* ICON */
.dimentia .stat-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #eaf1fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1f4383;
}

/* NUMBER */
.dimentia .stat-card h3 {
    color: #1f4383;
    font-size: 22px;
    margin-bottom: 6px;
}

/* TEXT */
.dimentia .stat-card p {
    font-size: 14px;
    color: #6b7280;
}

.dimentia .stat-card h3 {
    font-size: 26px;
    font-weight: 700;
}

.dimentia .types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.dimentia .type-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.dimentia .type-card i {
    font-size: 35px;
    color: #1f4383;
    margin-bottom: 15px;
}

.dimentia .type-card:hover {
    transform: translateY(-6px);
}

.dimentia .stage-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.dimentia .stage-item {
    border-left: 4px solid #1f4383;
    padding-left: 15px;
    margin-bottom: 20px;
}

.dimentia .info-box {
    background: #fff;
    padding: 25px;
    border-left: 5px solid #1f4383;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.highlight-box {
    background: #fff7e6;
    border-left: 4px solid #e91e63;
    padding: 18px 20px;
    margin: 20px 0;
    font-style: italic;
    /* background: #eaf1fb;
        padding: 25px;
        border-radius: 14px;
        color: #1f4383;
        font-weight: 500; */
}

.dimentia .authority-box {
    background: #fff;
    padding: 25px;
    border-left: 5px solid #1f4383;
    border-radius: 12px;
}

.dimentia .premium-cta {
    background: linear-gradient(120deg, #1f4383, #2f5e9b);
    color: #fff;
    padding: 50px;
    border-radius: 18px;
    text-align: center;
    margin-top: 60px;
}

.dimentia .premium-cta p,
.dimentia .premium-cta h2 {
    color: #fff;
    margin: 10px;
}

/* Gallery */

.branch-tabs {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.branch-btn {
    border: none;
    background: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #1f4383;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.branch-btn.active {
    background: #1f4383;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-content {
    display: none;
}

.gallery-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* MOBILE */
@media(max-width:900px) {
    .dimentia .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .dimentia .stats-grid {
        grid-template-columns: 1fr;
    }
}

.text-justify {
    text-align: justify;
}

a:focus {
    outline: 0 !important;
    border: 0 !important;
}

/* MAIN SLIDER  */
.swiper.mainSwiper {
    width: 100%;
    position: relative;
}

/* .mainSwiper .overlay-img{
	background-color: #0000006b;
} */

.mainSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.mainSwiper .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
}

.mainSwiper .overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 6s forwards;
}

.mainSwiper .overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
}

.mainSwiper .main-banner-text .highlight {
    display: inline;
    border-bottom: 3px solid #003d70;
    line-height: 1;
    /* ensure tight vertical alignment */
    padding-bottom: 10px;
    /* gives a little space below the text */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mainSwiper .fade-up {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.mainSwiper .text,
.mainSwiper .underline,
.mainSwiper .quote-btn {
    position: absolute;
    left: 10%;
    z-index: 2;
}

.mainSwiper .text {
    top: 28rem;
    animation-delay: 0.5s;
}

.dark h1 {
    color: #000 !important;
}

.mainSwiper .text h1 {
    font-size: 38px;
    font-family: "Playfair Display", Sans-serif;
    font-weight: 400;
    color: #fff;
}

.mainSwiper .underline {
    top: 40rem;
    animation-delay: 1s;
}

.mainSwiper .underline img {
    width: 250px;
}

.mainSwiper .quote-btn {
    top: 45rem;
    animation-delay: 1.5s;
}

.mainSwiper .quote-btn button {
    padding: 5px 35px;
    border: 2px solid #b23f43;
    border-radius: 30px;
    background: transparent;
    color: #000;
    font-size: 14px;
    font-family: "Gotham Book", Sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mainSwiper .quote-btn button:hover {
    background: red;
    color: white;
}

/* TEXTURE TEXT */
.texture-text {
    background: url('https://lightgrey-fox-176265.hostingersite.com/wp-content/uploads/2025/05/texture-1.jpg') no-repeat;
    background-position: bottom;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Products */
.elementor-element.dynamic-section::before {
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease;
    background-color: #1b1b1ba8 !important;
}

.left-content {
    width: 60%;
}

.left-content a h1, .left-content a p {
    color: #fff !important;
}

.content-item {
    display: none;
    font-size: 24px;
}

.content-item.active {
    display: block !important;
}

.right-list a h1 {
    width: 80%;
    border-bottom: 2px solid #fff;
    /* padding: 0 39px 10px 2px; */
    padding-bottom: 14px;
    color: #fff !important;
}

.right-list a.active h1 {
    font-weight: 800 !important;
    text-shadow: 2px 6px 8px #000;
}

.right-list a.active .underline-gray {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.underline-gray {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* MEDIA CONTNET */

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.tab-content.active {
    display: inherit;
    opacity: 1;
    animation: fadeIn 1s ease;
}

.tab-link .underline-white img {
    opacity: 0;
}

.tab-link.active .underline-white img {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#gallery-1 img {
    width: 130px;
    cursor: pointer;
}

/* #gallery-1 img:hover {
  filter: none;
}
 */
.fixed-header.scrolled {
    background-color: white !important;
}

.accordian-pre svg {
    border: 1px solid gray;
    height: 25px !important;
    width: 25px;
    padding: 3px 6px 3px 7px;
    border-radius: 12px;
}

.elementor-10 .elementor-element.elementor-element-efc394b .menu-item.current-menu-ancestor a.hfe-menu-item {
    font-weight: 800;
}

.clients img {
    width: 170px !important;
}

.elementor-10 .elementor-element.elementor-element-efc394b .menu-item.current-menu-item a.hfe-menu-item {
    font-weight: 800;
}

.gallary-single img {
    width: 100% !important;
}

.uc_border_overlay_banner {

    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.uc_border_overlay_banner a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.uc_banner-img img {
    width: 100%;
    display: block;
    height: auto;
}

.overlay-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transform: scale(0);
    transition: transform 0.4s ease-in-out;
    z-index: 1;
}

.uc_content_outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: transform 0.4s ease-in-out;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /*       padding: 1.2rem 0.8rem; */
}

.uc_banner-content-inner {
    /*       border-left: 2px solid #fff;
      border-right: 2px solid #fff; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6.5rem;
    align-items: center;
    /* optional inner spacing for text */
}

.uc_banner-content {
    width: 100%;
    /*       border-top: 2px solid #fff;
      border-bottom: 2px solid #fff; */
    padding: 0;
    /* remove vertical padding */
    text-align: center;
    height: 100%;
    /* allow full stretch */
    display: flex;
    align-items: center;
    justify-content: center;
}


.uc_banner-content h3 {
    font-family: "Raleway", Sans-serif;
    font-weight: 600;
    margin: 0;
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
}

/* Hover Effects */
.uc_border_overlay_banner:hover .overlay-box, .uc_border_overlay_banner:hover .uc_content_outer {
    transform: scale(1);
}

.hover-icon {
    width: 25%;
    margin-bottom: 10px;
}

.swiper.aboutSwiper {
    width: 100%;
    box-sizing: border-box;
}

.aboutSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutSwiper .card {
    font-family: "Raleway", Sans-serif;
    background-color: #003c71;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.aboutSwiper .card h2 {
    font-size: 22px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 10px;
}

.aboutSwiper .card p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.aboutSwiper .card button {
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 14px;
}

/* Button styles */
.aboutSwiper .btn-filled {
    background-color: white;
    color: #003c71;
    border: none;
}

.aboutSwiper .btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.aboutSwiper .btn-outline:hover {
    background-color: white;
    color: #003c71;
}

/* Swiper arrows */
.aboutSwiper.swiper-button-next,
.aboutSwiper.swiper-button-prev {
    color: #003c71;
}

.aboutSwiper.swiper-button-prev {
    margin-left: -6rem;
}

.aboutSwiper.swiper-button-next {
    margin-right: -6rem;
}

.twenty {
    font-size: 80px;
    font-style: italic;
}

.outline-building {
    position: absolute;
    bottom: 0;
    width: 30%;
    left: 49%;
    transform: translate(-50%, 0);
}

.years {
    position: fixed;
    top: 110px;
    left: 10px;
    height: 85vh;
    width: 120px;
    /* adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    z-index: 999;
}

.arrow {
    color: gray;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    padding: 5px;
}

.years-list-wrapper {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.years-list {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.years-btn.active, .years-btn:hover {
    background: #fff;
    padding: 2px 15px;
    border-radius: 30px;
    color: gray;
}

.years-btn img {
    filter: brightness(0.5);
}

.years-btn span {
    opacity: 0;
}

.years-btn:hover span {
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
}

.years-btn.active span {
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
}

.years-btn {
    padding: 2px 15px;
    font-size: 16px;
    font-family: "Raleway", Sans-serif;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 5px;
}

.years-btn img {
    width: 12px;
}

.bg-new-era {
    background-position: 0 40px;
}

@media (min-width: 1024px) and (max-width: 1370px) {
    .mainSwiper .text h1 {
        font-size: 30px;
    }

    .mainSwiper .text {
        top: 22rem;
    }
}


.hidden-content {
    display: none;
}

.hidden-content.active {
    display: block;
}

.indus-slider img {
    height: 356px !important;
}

.career-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    background: #ffffffbf;
    padding: 50px;
    border-radius: 20px;
    z-index: 99;
}

.careers-slider .elementor-image-carousel-caption h1 {
    font-family: "Raleway", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 29px;
    color: #2C4163;
}

/* Contact Form 7 */
.custom-contact-form p {
    font-family: 'Raleway', sans-serif;
    display: flex;
    gap: 10px;
    margin-bottom: -10px;
    margin-left: -10px;
}

.custom-contact-form p span {
    flex: 1;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #bcc4c5 !important;
}

.custom-contact-form textarea {
    min-height: 50px;
    resize: none;
    height: 120px;
}

.custom-contact-form input[type="file"] {
    display: none;
}

.custom-contact-form input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder, textarea::placeholder {
    color: #000;
    font-weight: 500;
}

.custom-contact-form label {
    border: 1px solid #bcc4c5;
    padding: 6px 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
}

.custom-contact-form input[type="submit"] {
    padding: 17px;
    font-size: 14px;
    text-transform: capitalize;
    background: #003b6f;
}

.custom-contact-form p:nth-child(5) {
    margin-bottom: -45px;
}

.contact-us-header h1 {
    border-bottom: 2px solid #2c4163;
    display: inline-block;
    padding-bottom: 14px;
}


/* Move Elementor Lightbox arrows outside */
.media-slider .swiper .elementor-swiper-button {
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    /* rounded buttons */
    padding: 10px;
}

.media-slider .swiper .elementor-swiper-button-prev {
    left: -60px !important;
    /* move left arrow outside */
}

.media-slider .swiper .elementor-swiper-button-next {
    right: -60px !important;
    /* move right arrow outside */
}

/* Push down every 2nd, 4th, 6th... slide */

.media-slider .swiper .swiper-wrapper .swiper-slide:nth-child(even) {
    margin-top: 60px;
}

/* Optional: keep odd slides aligned */

.media-slider .swiper .swiper-wrapper .swiper-slide:nth-child(odd) {
    margin-top: 0;
}

.media-slider .swiper .swiper-wrapper .swiper-slide {
    transition: margin 0.3s ease;
}

.media-slider .swiper .elementor-image-carousel-caption {
    font-family: "Raleway";
    background: #fff;
    padding: 10px 20px;
}

.media-slider .swiper .elementor-image-carousel-caption h5 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    color: #000;
}

.media-slider .swiper .swiper-slide.elementor-lightbox-item.swiper-slide-active {
    margin-top: 0;
}

/* Date Box Design */
.htmega-single-post-slide .meta {
    position: absolute;
    bottom: 143px;
    left: 0;
    background: #003D70;
    padding: 7px 5px !important;
}

.htmega-single-post-slide .meta li {
    color: #fff !important;
}

.htmega-carosul-prev.slick-arrow {
    left: -45px !important;
}

.htmega-carosul-next.slick-arrow {
    right: -45px !important;
}

/* PROJECTS */

.project-list .elementor-element.project-overlay {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-list .elementor-element.project-overlay:before,
.project-list .elementor-element.project-overlay .project-details {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #003c6f94 !important;
    /* Overlay color */
    transform: scale(0);
    /* Start small */
    transform-origin: center center;
    /* Ensure scaling from center */
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 2;
}

.project-list .elementor-element.project-overlay:hover:before,
.project-list .elementor-element.project-overlay:hover .project-details {
    transform: scale(1);
    /* Zoom in on hover */
    opacity: 1;
}

/* post form */
.custom-contact-form .post select {
    padding: 6px 8px;
    color: #000 !important;
    font-weight: 500;
    border: 1px solid #bcc4c5 !important;
}

#main #content-wrap {
    padding-top: 100px !important;
}

.single .thumbnail img {
    width: 500px;
}

.media-read {
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    left: 0;
    cursor: pointer;
    z-index: 1;
}


.pdf-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    padding: 80px 0;
}

.pdf-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    /* Keeps a good PDF preview ratio */
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 8px;
}

.pdf-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.certificates .section-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: -40px;
}

.mb-hero-title {
    display: none;
}

.desktop-navbar {
    display: flex;
}

.mobile-navbar {
    display: none;
}

.mobile-navbar-list {
    display: none;
}

@media only screen and (max-width: 768px) {
    .desktop-navbar {
        display: none;
    }

    .mobile-navbar {
        display: flex;
    }

    .mobile-navbar-list {
        display: flex;
    }

    .moment-arrow {
        display: none;
    }

    .quote-highlight h1 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
    }

    .section-subtitle {
        width: 100%;
    }

    .menu-section .menu-grid {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .fixed-header {
        position: static;
    }

    .mainSwiper .underline img {
        width: 120px;
    }

    .mainSwiper .text h1 {
        font-size: 16px;
    }

    .mainSwiper .quote-btn button {
        padding: 2px 16px;
        ;
        font-size: 10px;
    }

    .mainSwiper .text {
        top: 5rem;
    }

    .mainSwiper .underline {
        top: 10rem;
    }

    .mainSwiper .quote-btn {
        top: 13rem;
    }

    .team-card img {
        height: 530px;
    }

    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-grid-2 {
        grid-template-columns: 1fr;
    }

    .gif-why img {
        width: 100%;
    }

    .why-grid-2 .gif-why {
        padding: 35px 15px;
    }

    .why-points div {
        font-size: 16px;
    }

    .why-points {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .segment-card {
        text-align: center;
    }

    .availability-box {
        width: 360px;
        margin: 30px auto 20px;
    }

    .availability-box h2 {
        font-size: 20px;
        text-align: center;
    }

    .testimonial-section .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Style the navigation menu */
    .desktop-navbar {
        display: none;
    }

    .sidepanel {
        width: 0;
        position: fixed;
        z-index: 99999;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #fff;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        flex-direction: column;
    }

    .sidepanel a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 16px;
        color: #000;
        display: block;
        transition: 0.3s;
    }

    .sidepanel a:hover {
        color: #f1f1f1;
    }

    .sidepanel .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
    }

    .openbtn {
        font-size: 30px;
        cursor: pointer;
        background-color: transparent;
        color: #000;
        padding: 10px 15px;
        border: none;
    }

    .openbtn:hover {
        background-color: #444;
    }

    .collapsible {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 16px;
        color: #000;
        display: block;
        transition: 0.3s;
        background-color: transparent;
        border: none;
    }

    .active, .collapsible:hover {
        color: #555;
    }

    .sidepanel .content {
        padding: 0 18px;
        display: none;
        overflow: hidden;
        background-color: #f1f1f1;
    }

    .logo-mobile {
        margin-left: 22px;
        margin-top: 10px;
    }

    .navbar .logo-text {
        font-size: 9px;
    }

    .logo img {
        width: 150px;
    }

    .hero-text {
        padding-top: 19rem;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
        color: #000;
        text-shadow: 0 4px 4px #00000012;
    }

    .hero-buttons {
        gap: 0;
        margin-bottom: 15px;
        justify-content: space-around;
    }

    .hero-buttons .btn {
        width: 45%;
        font-size: 14px;
    }

    .stats strong {
        font-size: 18px;
        font-weight: 900;
    }

    .stats p {
        margin-top: 5px;
        font-size: 12px;
    }

    .stats {
        padding: 10px 30px;
    }

    .newsletter-box {
        padding: 65px 20px;
        gap: 0px;
        flex-direction: column;
        width: 360px;
    }
    .newsletter-left img{
        width: 40%;
    }

    .newsletter-right h2 {
        font-size: 20px;
        text-align: center;
        padding: 0 30px;
        font-size: 15px;
    }

    .subscribe-form input{
        padding: 12px 8px;
        font-size: 14px;
        
    }
    .subscribe-form button{
        padding: 6px 20px;
        font-size: 13px;
    }
    .newsletter-right p {
        text-align: center;
        margin-top: 18px;
        font-size: 15px;
    }

    .section-title {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .section-subtitle {
        margin: 0 auto 36px;
    }

    .mySwiper2 ul {
        padding: 50px 20px 114px 20px;
    }

    .menu-grid .menu-list, .menu-grid .schedule {
        width: 100%;
    }

    .mySwiper2 ul li {
        font-size: 14px;
    }

    .meal-list li {
        gap: 0;
    }

    .mySwiper h4 {
        padding: 0px 0 28px 0;
        font-size: 14px;
    }

    .mySwiper .swiper-slide-thumb-active h4::after {
        left: 7px;
        right: 8px;
        bottom: 8px;
        height: 4px;
        width: 26px;
    }

    .widget-container {
        width: 100%;
    }

    .menu-section .menu-grid {
        gap: 30px;
    }

    .footer {
        text-align: center;
    }

    .footer-links a {
        margin-left: 5px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .text-swiper .review-card {
        padding: 30px 10px;
    }

    .text-nav {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .moment-arrow {
        display: none;
    }

    .social-icons {
        gap: 10px;
        right: 0;
        bottom: -12px;
    }

    .social-icons a {
        padding: 8px;
        font-size: 12px;
    }

    .dimentia .types-grid {
        grid-template-columns: 1fr;
    }

    .popup-right {
        padding: 30px 20px 60px 20px;
    }

    .popup-box {
        width: 350px;
        grid-template-columns: 1fr;
    }

    .popup-left img {
        max-height: 230px;
    }

    .instant-details h2 {
        font-size: 20px;
    }

    .close-popup {
        font-size: 35px;
        color: #fff;
    }

    .dimentia .premium-cta {
        padding: 45px 15px;
    }

    .hero-title {
        display: none;
    }

    .mb-hero-title {
        display: block;
        font-size: 28px;
        text-align: center;
    }

    .segments-pagination {
        bottom: -45px !important;
    }

    .moments-pagination {
        bottom: 6rem !important;
    }

    .video-pagination {
        bottom: 30rem !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .services {
        grid-template-columns: 1fr;
    }

    .quote-highlight h1 {
        font-size: 22px;
    }

    .about-hero {
        text-align: center;
        justify-content: center;
    }

    .about-hero h1 {
        margin-left: 0;
        font-size: 22px;
    }

    .about-hero, .service-hero, .dimentia .page-hero {
        height: 220px;
    }

    .page-hero-faqs {
        height: 155px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-section {
        padding: 20px;
    }

    .bg-video {
        height: 20rem;
    }
    .appointment-grid {
        display: grid;
        grid-template-columns: 1fr !important;
    }
    .time-slot{
        font-size: 10px;
    }
    .slots-box .tour{
        margin-top: 10px;
        font-size: 12px;
    }
    .faq-question{
        font-size: 12px;
        text-align: left;
        padding: 14px 26px;
    }
    .faq-item.active .faq-answer{
        font-size: 12px;
        text-align: left;
    }
    .floating-left-buttons { 
        left: 30px; 
    }
}