/* Custom Styles for Oldage Home */

:root {
    --primary-color: #4a90e2;
    --secondary-color: #f39c12;
    --accent-color: #e74c3c;
    --warm-orange: #ff6b35;
    --soft-blue: #4ecdc4;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-3: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Enhanced Navbar */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.hero-carousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-carousel .carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-carousel .btn {
    margin-right: 1rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-carousel .btn-primary {
    background: var(--warm-orange);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.hero-carousel .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.hero-carousel .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    backdrop-filter: blur(10px);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
}

.carousel-indicators .active {
    background-color: white;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Cards */
.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-body {
    padding: 2rem;
}

.card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--gradient-2);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Service Icons Animation */
.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--warm-orange) !important;
}

/* Statistics Section */
.stats-section {
    background: var(--gradient-1);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--soft-blue);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
}

.testimonials-carousel .carousel-item {
    padding: 40px 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.98);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    margin: 0 auto;
    max-width: 760px;
    border: 1px solid rgba(74, 144, 226, 0.12);
}

.quote-badge {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(74, 144, 226, 0.2);
    color: var(--primary-color);
    font-size: 1.8rem;
}

.testimonial-text {
    font-size: 1.18rem;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--dark-text);
    letter-spacing: 0.02em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-text);
}

.testimonial-author small {
    display: block;
    color: #6c757d;
}

.testimonials-carousel .carousel-indicators {
    position: static;
    margin-top: 30px;
}

.testimonials-carousel .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 7px;
    background-color: rgba(74, 144, 226, 0.35);
    border: 1px solid rgba(74, 144, 226, 0.8);
}

.testimonials-carousel .carousel-indicators .active {
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(74, 144, 226, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
    filter: invert(1);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
        margin: 0 1rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-3);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-carousel .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .hero-carousel .carousel-caption p {
        font-size: 1.1rem;
    }

    .hero-carousel .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .testimonial-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel .carousel-caption {
        text-align: center;
        max-width: 100%;
        padding: 0 2rem;
    }

    .hero-carousel .carousel-caption h1 {
        font-size: 2rem;
    }

    .hero-carousel .carousel-caption p {
        font-size: 1rem;
    }
}
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.staff-card {
    text-align: center;
    margin-bottom: 30px;
}

.facility-item {
    margin-bottom: 40px;
}

.facility-item i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.admission-form {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 120px 0 50px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Deeper pastel gradient below slider */
.hero-carousel + section,
.hero-carousel + .container,
.hero-carousel + .py-5 {
    background: linear-gradient(
        135deg,
        #89d8d3 40%,
        #f6a6c1 50%,
        #fbc2eb 100%
    );
    padding: 60px 0;
}
Softer pastel version (lighter)
.hero-carousel + section,
.hero-carousel + .container,
.hero-carousel + .py-5 {
    background: linear-gradient(
        to right,
        #fdfbfb,
        #ebedee,
        #e0f7fa
    );
}
.hero-carousel + section .card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
}

/* Mobile slide menu from left */
@media (max-width: 991px) {

.navbar-collapse {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: linear-gradient(
        180deg,
        #89d8d3,
        #a6c1ee,
        #fbc2eb
    );
    padding-top: 60px;
    transition: 0.4s ease;
    z-index: 9999;
}

/* when open */
.navbar-collapse.show {
    left: 0;
}

/* menu items left align */
.navbar-nav {
    text-align: left;
    padding-left: 20px;
}

.navbar-nav .nav-item {
    margin-left: 0 !important;
    margin-bottom: 10px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
}

/* backdrop */
.navbar-collapse::before {
    content:"";
    position:fixed;
    top:0;
    left:260px;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
}

}
@media (max-width: 991px) {
.navbar-toggler {
    margin-left: 10px;
}
}
/* App-like responsive layout upgrades */
html {
    scroll-behavior: smooth;
}

body {
    background: #f6f8fb;
    padding-top: 92px;
}

section,
.container,
.container-fluid {
    position: relative;
    z-index: 1;
}

.card,
.contact-form,
.testimonial-card,
.admin-box,
.admin-stat {
    border-radius: 20px;
}

.card-img-top,
.gallery-item img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.form-control,
.form-select,
.btn {
    min-height: 48px;
    border-radius: 14px;
}

textarea.form-control {
    min-height: 120px;
}

.site-footer {
    position: relative;
    z-index: 2;
}

.mobile-app-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(19, 59, 92, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(9, 23, 39, 0.28);
    z-index: 1060;
}

.mobile-app-nav__item {
    flex: 1;
    min-width: 0;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 18px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.mobile-app-nav__item i {
    font-size: 1rem;
}

.mobile-app-nav__item.is-active,
.mobile-app-nav__item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.mobile-app-nav__item--primary {
    color: #ffffff;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6b35 100%);
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.3);
}

@media (max-width: 991.98px) {
    body {
        padding-top: 82px;
        padding-bottom: 110px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .navbar-brand {
        font-size: 1.35rem;
    }

    .navbar-collapse {
        position: fixed;
        top: 74px;
        left: 12px;
        right: 12px;
        width: auto;
        height: auto;
        max-height: calc(100vh - 170px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 24px;
        padding: 16px;
        box-shadow: 0 24px 45px rgba(13, 32, 51, 0.16);
        backdrop-filter: blur(12px);
    }

    .navbar-collapse::before {
        display: none;
    }

    .navbar-nav {
        text-align: left;
        padding-left: 0;
    }

    .navbar-nav .nav-link {
        border-radius: 14px;
        padding: 12px 14px;
        font-weight: 600;
    }

    .navbar-nav .nav-link.btn {
        margin-left: 0 !important;
        margin-top: 6px;
        display: inline-flex;
        justify-content: center;
    }

    .dropdown-menu {
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 16px 34px rgba(0,0,0,0.08);
    }

    .hero-carousel .carousel-item,
    .hero-section {
        min-height: auto !important;
        background-attachment: scroll !important;
    }

    .hero-carousel .carousel-caption {
        position: relative;
        top: auto;
        transform: none;
        text-align: center;
        max-width: 100%;
        padding: 110px 18px 70px;
    }

    .hero-carousel .carousel-caption h1,
    .hero-section .display-4 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-carousel .carousel-caption p,
    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-carousel .btn,
    .cta-section .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 42px;
        height: 42px;
        top: auto;
        bottom: 16px;
        transform: none;
    }

    .carousel-control-prev {
        left: 16px;
    }

    .carousel-control-next {
        right: 16px;
    }

    .card-body,
    .contact-form {
        padding: 1.2rem;
    }

    .table-responsive {
        border-radius: 16px;
        overflow: hidden;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    h1,
    .h1 {
        font-size: 1.9rem;
    }

    h2,
    .h2 {
        font-size: 1.55rem;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .testimonial-card,
    .contact-form {
        padding: 1.1rem;
    }

    .mobile-app-nav {
        left: 10px;
        right: 10px;
        padding: 8px;
    }

    .mobile-app-nav__item {
        font-size: 0.68rem;
    }

    .mobile-app-nav__item i {
        font-size: 0.95rem;
    }
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }

    .mobile-app-nav {
        display: none !important;
    }

    .navbar-nav .nav-link {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    .site-footer {
        display: block !important;
        margin-bottom: 96px;
        padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
    }

    .site-footer .container {
        padding-bottom: 12px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        margin-bottom: 104px;
    }

    .site-footer h5,
    .site-footer h6 {
        font-size: 1rem;
    }

    .site-footer p,
    .site-footer a,
    .site-footer li {
        font-size: 0.92rem;
    }

    .hero-carousel .carousel-caption {
        padding: 98px 14px 86px;
    }

    .hero-carousel .carousel-caption h1,
    .hero-section .display-4 {
        font-size: 1.6rem;
        line-height: 1.18;
        margin-bottom: 0.9rem !important;
    }

    .hero-carousel .carousel-caption p,
    .hero-section .lead {
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 1rem !important;
    }

    .hero-carousel .carousel-caption .btn,
    .hero-section .btn {
        font-size: 0.92rem;
        min-height: 46px;
        padding: 10px 18px;
    }

    .carousel-indicators {
        bottom: 76px;
    }
}

@media (max-width: 767.98px) {
    .hero-carousel .carousel-item {
        min-height: 78vh !important;
        display: flex;
        align-items: center;
    }

    .hero-carousel .carousel-item .container {
        width: 100%;
    }

    .hero-carousel .carousel-caption {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 78vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 92px 14px 120px;
    }

    .hero-carousel .carousel-caption .home-hero-copy {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-carousel .carousel-caption .home-hero-copy h1,
    .hero-carousel .carousel-caption .home-hero-copy p {
        text-align: center;
    }

    .site-footer {
        text-align: center;
        margin-bottom: 112px;
        padding-top: 2rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }

    .site-footer .row {
        justify-content: center;
    }

    .site-footer .col-lg-4,
    .site-footer .col-lg-2,
    .site-footer .col-md-6 {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .site-footer .d-flex {
        justify-content: center;
    }

    .site-footer ul {
        padding-left: 0;
        margin-bottom: 0;
    }

    .site-footer li {
        margin-bottom: 0.45rem;
    }

    .site-footer .text-md-end {
        text-align: center !important;
        margin-top: 0.75rem;
    }

    .site-footer hr {
        margin: 1.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .mobile-app-nav {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0;
        padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
        gap: 0;
        background: #12344d;
        box-shadow: 0 -6px 18px rgba(9, 23, 39, 0.18);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mobile-app-nav__item {
        border-radius: 0;
        padding: 10px 2px;
        min-height: 58px;
        color: rgba(255, 255, 255, 0.82);
        gap: 5px;
    }

    .mobile-app-nav__item i {
        font-size: 1rem;
    }

    .mobile-app-nav__item span {
        font-size: 0.66rem;
        line-height: 1.1;
        white-space: nowrap;
    }

    .mobile-app-nav__item.is-active,
    .mobile-app-nav__item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    .mobile-app-nav__item--primary {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        box-shadow: none;
    }

    .site-footer {
        margin-bottom: 82px;
        border-radius: 0;
    }
}


.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
}

.brand-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.footer-brand__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 6px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
}

@media (max-width: 767.98px) {
    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-title {
        font-size: 0.98rem;
    }

    .brand-subtitle {
        font-size: 0.62rem;
    }

    .footer-brand {
        justify-content: center;
    }
}

.chatbot-widget {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 1070;
}

.chatbot-float-btn {
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9a3c 0%, #ff6b35 100%);
    color: #fff;
    box-shadow: 0 16px 34px rgba(255, 107, 53, 0.32);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-weight: 700;
}

.chatbot-float-btn span {
    font-size: 0.72rem;
    line-height: 1;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: 340px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(12, 31, 52, 0.22);
    display: none;
}

.chatbot-panel.is-open {
    display: block;
}

.chatbot-panel__header {
    background: linear-gradient(135deg, #12344d 0%, #1e5f74 100%);
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.chatbot-close {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
}

.chatbot-messages {
    max-height: 300px;
    overflow-y: auto;
    padding: 14px;
    background: #f7f9fc;
}

.chatbot-message {
    max-width: 86%;
    padding: 10px 12px;
    border-radius: 16px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.chatbot-message--bot {
    background: #e9f3fb;
    color: #12344d;
}

.chatbot-message--user {
    margin-left: auto;
    background: #12344d;
    color: #fff;
}

.chatbot-suggestions {
    padding: 12px 14px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chatbot-suggestion {
    border: 1px solid rgba(18, 52, 77, 0.14);
    background: #fff;
    color: #12344d;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chatbot-form {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid rgba(18, 52, 77, 0.08);
    background: #fff;
}

.chatbot-form .form-control {
    min-height: 44px;
}

@media (max-width: 991.98px) {
    .chatbot-widget {
        right: 16px;
        bottom: 96px;
    }
}

@media (max-width: 767.98px) {
    .chatbot-widget {
        right: 12px;
        bottom: 88px;
    }

    .chatbot-panel {
        right: 0;
        bottom: 76px;
        width: min(320px, calc(100vw - 24px));
    }

    .chatbot-float-btn {
        width: 58px;
        height: 58px;
    }

    .chatbot-float-btn span {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .card-body.p-5,
    .contact-form,
    .testimonial-card {
        padding: 1.25rem !important;
    }

    .row.justify-content-center > [class*='col-'] {
        padding-left: 6px;
        padding-right: 6px;
    }

    .card.shadow,
    .card.shadow-sm,
    .card {
        border-radius: 18px;
    }

    .profile-page .card-body,
    .auth-page .card-body,
    .dashboard-page .card-body {
        padding: 1.2rem !important;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        margin-bottom: 68px !important;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
    }
}
@media (max-width: 767.98px) {
    .site-footer {
        display: none !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}
.floating-socials {
    position: fixed;
    right: 20px;
    bottom: 108px;
    z-index: 1065;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.floating-socials__panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.92);
    transform-origin: bottom right;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-socials.is-open .floating-socials__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.floating-socials__toggle {
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #12344d 0%, #1e5f74 100%);
    color: #fff;
    box-shadow: 0 18px 32px rgba(12, 31, 52, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-socials__toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(12, 31, 52, 0.26);
}

.floating-socials__toggle-arrow {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    transition: transform 0.22s ease;
}

.floating-socials.is-open .floating-socials__toggle-arrow {
    transform: rotate(180deg);
}

.floating-socials__link {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 18px 32px rgba(12, 31, 52, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.floating-socials__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px rgba(12, 31, 52, 0.22);
    opacity: 0.96;
    color: #fff;
}

.floating-socials__link--whatsapp {
    background: linear-gradient(135deg, #22c55e 0%, #128c7e 100%);
}

.floating-socials__link--facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0f4fb8 100%);
}

.floating-socials__link--instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
}

.floating-socials__link--youtube {
    background: linear-gradient(135deg, #ff4b4b 0%, #c81e1e 100%);
}

@media (max-width: 991.98px) {
    .floating-socials {
        right: 16px;
        bottom: 184px;
    }
}

@media (max-width: 767.98px) {
    .floating-socials {
        right: 12px;
        bottom: 156px;
        gap: 8px;
    }

    .floating-socials__toggle {
        width: 52px;
        height: 52px;
        border-radius: 18px;
    }

    .floating-socials__link {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 1rem;
    }
}
.chatbot-prompt {
    position: absolute;
    right: 0;
    bottom: 86px;
    width: 280px;
    max-width: calc(100vw - 28px);
    background: linear-gradient(145deg, #ffffff 0%, #f6fbff 100%);
    color: #12344d;
    border-radius: 22px;
    padding: 16px 16px 14px;
    box-shadow: 0 24px 50px rgba(12, 31, 52, 0.18);
    border: 1px solid rgba(18, 52, 77, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.96);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.chatbot-prompt::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    transform: rotate(45deg);
    border-right: 1px solid rgba(18, 52, 77, 0.08);
    border-bottom: 1px solid rgba(18, 52, 77, 0.08);
}

.chatbot-prompt.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chatbot-prompt.is-hidden {
    display: none;
}

.chatbot-prompt__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 999px;
    background: rgba(18, 52, 77, 0.08);
    color: #12344d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
}

.chatbot-prompt__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e5f74;
    margin-bottom: 0.55rem;
}

.chatbot-prompt__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.chatbot-prompt__text {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #486173;
}

.chatbot-prompt__cta {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #12344d 0%, #1e5f74 100%);
    color: #fff;
    padding: 0.62rem 1rem;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 12px 24px rgba(18, 52, 77, 0.18);
}

@media (max-width: 767.98px) {
    .chatbot-prompt {
        bottom: 78px;
        width: min(264px, calc(100vw - 24px));
        padding: 14px 14px 12px;
    }

    .chatbot-prompt__title {
        font-size: 0.98rem;
    }

    .chatbot-prompt__text {
        font-size: 0.85rem;
    }
}
.btn,
button.btn,
a.btn {
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.82rem 1.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary,
button.btn-primary,
a.btn-primary {
    background: linear-gradient(135deg, #ff8c42 0%, #e85d2a 100%) !important;
    border: 1px solid #e85d2a !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(232, 93, 42, 0.24);
}

.btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover,
.btn-primary:focus,
button.btn-primary:focus,
a.btn-primary:focus {
    background: linear-gradient(135deg, #ff9f5f 0%, #d94d1f 100%) !important;
    border-color: #d94d1f !important;
    color: #ffffff !important;
    box-shadow: 0 18px 34px rgba(217, 77, 31, 0.28);
}

.btn-outline-primary,
button.btn-outline-primary,
a.btn-outline-primary {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #12344d !important;
    color: #12344d !important;
    box-shadow: 0 10px 22px rgba(18, 52, 77, 0.08);
}

.btn-outline-primary:hover,
button.btn-outline-primary:hover,
a.btn-outline-primary:hover,
.btn-outline-primary:focus,
button.btn-outline-primary:focus,
a.btn-outline-primary:focus {
    background: #12344d !important;
    border-color: #12344d !important;
    color: #ffffff !important;
    box-shadow: 0 16px 28px rgba(18, 52, 77, 0.2);
}

.btn-secondary,
button.btn-secondary,
a.btn-secondary {
    background: linear-gradient(135deg, #12344d 0%, #1e5f74 100%) !important;
    border: 1px solid #12344d !important;
    color: #ffffff !important;
}

.btn:hover,
button.btn:hover,
a.btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .btn,
    button.btn,
    a.btn {
        border-radius: 13px;
        padding: 0.62rem 1rem !important;
        font-size: 0.9rem;
        line-height: 1.2;
        min-height: 42px;
    }

    .hero-carousel .btn,
    .facilities-cta .btn,
    .chatbot-form .btn,
    .dashboard-page .btn,
    .profile-page .btn,
    .auth-page .btn {
        padding: 0.58rem 0.95rem !important;
        font-size: 0.88rem;
    }
}
.facility-home-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem 1.1rem;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(7, 21, 35, 0.2);
}

.facility-home-overlay .card-title,
.facility-home-overlay .card-text {
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(5, 18, 31, 0.32);
}

@media (max-width: 767.98px) {
    .facility-home-overlay {
        border-radius: 16px;
        padding: 0.85rem 0.9rem;
    }

    .facility-home-overlay .card-title {
        font-size: 1rem;
    }
}
body.page-is-transitioning {
    overflow: hidden;
}

.page-transition-layer {
    position: fixed;
    inset: 0;
    z-index: 2500;
    pointer-events: none;
    transform: translateX(100%);
    background: linear-gradient(135deg, #12344d 0%, #1e5f74 45%, #ff8c42 100%);
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-transition-layer::before,
.page-transition-layer::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.page-transition-layer::before {
    width: 240px;
    height: 240px;
    top: -70px;
    right: -40px;
}

.page-transition-layer::after {
    width: 180px;
    height: 180px;
    bottom: -50px;
    left: -30px;
}

.page-transition-layer.is-active {
    transform: translateX(0);
}

.page-transition-layer.is-active.is-revealing {
    transform: translateX(-100%);
}

.page-transition-layer__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.page-transition-layer__brand span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    position: relative;
}

.page-transition-layer__brand span::before,
.page-transition-layer__brand span::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 999px;
}

.page-transition-layer__brand span::before {
    width: 18px;
    height: 18px;
    top: 8px;
    left: 12px;
}

.page-transition-layer__brand span::after {
    width: 24px;
    height: 8px;
    bottom: 9px;
    left: 9px;
}

@media (max-width: 767.98px) {
    .page-transition-layer__brand {
        gap: 10px;
        font-size: 0.98rem;
    }

    .page-transition-layer__brand span {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .page-transition-layer__brand span::before {
        width: 15px;
        height: 15px;
        top: 7px;
        left: 10px;
    }

    .page-transition-layer__brand span::after {
        width: 20px;
        height: 7px;
        bottom: 8px;
        left: 8px;
    }
}
p {
    text-align: justify;
    text-justify: inter-word;
}
.stats-section {
    background:
        radial-gradient(circle at top right, rgba(255, 140, 66, 0.18), transparent 34%),
        linear-gradient(135deg, #f4f8fb 0%, #e8f1f6 55%, #ddebf2 100%) !important;
    color: #12344d !important;
}

.stats-section .stat-item {
    text-align: center;
    padding: 2rem 1.4rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 52, 77, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(18, 52, 77, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stats-section .stat-number {
    color: #e85d2a !important;
}

.stats-section .stat-label {
    color: #355067 !important;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .stats-section {
        padding: 54px 0 !important;
    }

    .stats-section .stat-item {
        padding: 1.15rem 0.8rem;
        border-radius: 18px;
    }

    .stats-section .stat-number {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stats-section .stat-label {
        font-size: 0.88rem;
    }
}
.text-center p,
.text-center .card-text,
.text-center .lead,
p.text-center,
.lead.text-center,
.card-text.text-center {
    text-align: center !important;
}
@media (max-width: 991.98px) {
    .navbar > .container,
    .navbar > .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .brand-lockup {
        flex: 1 1 auto;
        min-width: 0;
        align-items: center;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }

    .navbar-toggler {
        margin-left: auto !important;
        margin-right: 0 !important;
        flex: 0 0 auto;
        align-self: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 0;
    }

    .navbar-toggler-icon {
        width: 1.3rem;
        height: 1.3rem;
    }
}
body.auth-page .form-control,
body.auth-page .form-select {
    min-height: 42px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}

body.auth-page textarea.form-control {
    min-height: 96px;
}

body.auth-page .form-label {
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}

body.auth-page .btn {
    min-height: 42px;
}

@media (max-width: 767.98px) {
    body.auth-page .form-control,
    body.auth-page .form-select,
    body.auth-page .btn {
        min-height: 40px;
        font-size: 0.9rem;
    }
}
body.contact-page .contact-form .form-control,
body.contact-page .contact-form .form-select {
    min-height: 42px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}

body.contact-page .contact-form textarea.form-control {
    min-height: 96px;
}

body.contact-page .contact-form .form-label {
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}

body.contact-page .contact-form .btn {
    min-height: 42px;
}

@media (max-width: 767.98px) {
    body.contact-page .contact-form .form-control,
    body.contact-page .contact-form .form-select,
    body.contact-page .contact-form .btn {
        min-height: 40px;
        font-size: 0.9rem;
    }
}
.stats-section {
    background:
        radial-gradient(circle at top right, rgba(255, 140, 66, 0.14), transparent 34%),
        linear-gradient(135deg, #f7fafc 0%, #edf4f8 55%, #e7f0f5 100%) !important;
}

.stats-section .stat-item {
    background: rgba(255, 255, 255, 0.28) !important;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 14px 28px rgba(18, 52, 77, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats-section .stat-number {
    color: #1f6bff !important;
}

.stats-section .stat-label {
    color: #26445e !important;
}

@media (max-width: 767.98px) {
    .stats-section .stat-item {
        background: rgba(255, 255, 255, 0.22) !important;
        box-shadow: 0 10px 22px rgba(18, 52, 77, 0.05);
    }
}
.stats-section {
    background: transparent !important;
    padding: 0 0 2.4rem !important;
    margin-top: -54px;
    position: relative;
    z-index: 4;
}

.stats-strip {
    background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(245,250,253,0.76));
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 30px;
    padding: 1rem;
    box-shadow: 0 28px 60px rgba(18, 52, 77, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.stats-section .stat-item {
    height: 100%;
    text-align: center;
    padding: 1.25rem 1rem !important;
    background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,251,253,0.72)) !important;
    border: 1px solid rgba(18, 52, 77, 0.08);
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 14px 28px rgba(18, 52, 77, 0.06);
}

.stats-section .stat-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.85rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.16), rgba(30, 95, 116, 0.14));
    color: #12344d;
    font-size: 1.15rem;
}

.stats-section .stat-icon i {
    color: inherit !important;
    margin: 0 !important;
}

.stats-section .stat-number {
    color: #12344d !important;
    font-size: 2.55rem;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.stats-section .stat-label {
    color: #4a6276 !important;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
    .stats-section {
        margin-top: -30px;
        padding: 0 0 1.7rem !important;
    }

    .stats-strip {
        border-radius: 24px;
        padding: 0.75rem;
    }

    .stats-section .stat-item {
        padding: 1rem 0.55rem !important;
        border-radius: 18px;
    }

    .stats-section .stat-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        margin-bottom: 0.7rem;
        font-size: 0.96rem;
    }

    .stats-section .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.3rem;
    }

    .stats-section .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}
.btn,
button.btn,
a.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    vertical-align: middle;
    line-height: 1.2;
}
.navbar {
    border-bottom: 1px solid rgba(18, 52, 77, 0.06);
}

.navbar-nav .nav-link {
    position: relative;
    color: #26445e;
    font-weight: 600;
    transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #12344d;
}

@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.8rem 0.95rem;
        border-radius: 14px;
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 8px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(135deg, #ff8c42 0%, #e85d2a 100%);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.22s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link:focus::after {
        transform: scaleX(1);
    }

    .dropdown-menu {
        border-radius: 18px;
        border: 1px solid rgba(18, 52, 77, 0.08);
        box-shadow: 0 22px 40px rgba(18, 52, 77, 0.12);
        padding: 0.55rem;
    }

    .dropdown-item {
        border-radius: 12px;
        padding: 0.7rem 0.9rem;
        font-weight: 600;
    }
}

@media (max-width: 991.98px) {
    body.nav-menu-open {
        overflow: hidden;
    }

    body.nav-menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(8, 22, 37, 0.38);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1029;
    }

    .navbar-toggler {
        border: 1px solid rgba(18, 52, 77, 0.12);
        background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,252,0.96));
        box-shadow: 0 10px 22px rgba(18, 52, 77, 0.08);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(18, 52, 77, 0.12);
    }

    .navbar-collapse {
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: min(84vw, 340px) !important;
        max-height: 100vh !important;
        height: 100vh !important;
        border-radius: 28px 0 0 28px !important;
        padding: 1.15rem 1rem 6.75rem !important;
        background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,252,0.98)) !important;
        box-shadow: -24px 0 50px rgba(13, 32, 51, 0.18) !important;
        overflow-y: auto !important;
        transform: translateX(108%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, visibility 0.22s ease !important;
        z-index: 1030;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        gap: 0.15rem;
    }

    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0.82rem 0.95rem !important;
        border-radius: 16px;
        color: #17354d;
        background: transparent;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.dropdown-toggle.show {
        background: rgba(18, 52, 77, 0.06);
        transform: translateX(4px);
    }

    .navbar-nav .nav-link.btn {
        margin-top: 0.65rem;
        border-radius: 16px;
    }

    .navbar-collapse .dropdown-menu {
        margin-top: 0.4rem;
        border-radius: 16px;
        border: 1px solid rgba(18, 52, 77, 0.08);
        box-shadow: none;
        background: rgba(245, 249, 252, 0.92);
        padding: 0.45rem;
    }

    .navbar-collapse .dropdown-item {
        border-radius: 12px;
        padding: 0.7rem 0.82rem;
        font-weight: 600;
    }
}
@media (max-width: 991.98px) {
    .nav-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 0.9rem;
        padding-bottom: 0.9rem;
        border-bottom: 1px solid rgba(18, 52, 77, 0.08);
    }

    .nav-panel-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #12344d;
        line-height: 1.2;
    }

    .nav-panel-subtitle {
        font-size: 0.8rem;
        color: #5f7688;
        line-height: 1.4;
    }

    .nav-panel-close {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(18, 52, 77, 0.1);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.96);
        color: #12344d;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 18px rgba(18, 52, 77, 0.08);
    }
}
.home-testimonials {
    background:
        radial-gradient(circle at top left, rgba(21, 152, 149, 0.08), transparent 26%),
        linear-gradient(180deg, #f9fbfd 0%, #eef4f8 100%);
}

.home-testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.82rem;
    border-radius: 999px;
    background: rgba(18, 52, 77, 0.08);
    color: #12344d;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-testimonials__carousel {
    position: relative;
}

.home-testimonial-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(247,250,252,0.96));
    border: 1px solid rgba(18, 52, 77, 0.08);
    border-radius: 30px;
    padding: 2.4rem;
    box-shadow: 0 28px 58px rgba(18, 52, 77, 0.1);
    max-width: 880px;
    overflow: hidden;
}

.home-testimonial-card__quote {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    margin: 0 auto 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.16), rgba(21, 152, 149, 0.14));
    color: #12344d;
    font-size: 1.35rem;
}

.home-testimonial-card__text {
    font-size: 1.16rem;
    line-height: 1.9;
    color: #2c4459;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.8rem;
}

.home-testimonial-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(18, 52, 77, 0.08);
    padding-top: 1.2rem;
}

.home-testimonial-card__stars {
    color: #f7a936;
    display: inline-flex;
    gap: 0.25rem;
    font-size: 0.95rem;
}

.home-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.home-testimonial-card__author img {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(18, 52, 77, 0.12);
}

.home-testimonial-card__author h6 {
    margin: 0 0 0.18rem;
    font-weight: 700;
    color: #12344d;
}

.home-testimonial-card__author small {
    color: #64798b;
}

.home-testimonials__control {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(18, 52, 77, 0.1);
    border-radius: 18px;
}

.home-testimonials__control.carousel-control-prev {
    left: -6px;
}

.home-testimonials__control.carousel-control-next {
    right: -6px;
}

.home-testimonials__control .carousel-control-prev-icon,
.home-testimonials__control .carousel-control-next-icon {
    filter: invert(1);
}

.home-testimonials__indicators {
    position: static;
    margin-top: 1.6rem;
}

.home-testimonials__indicators button {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin: 0 5px;
    background: rgba(18, 52, 77, 0.18);
    border: none;
}

.home-testimonials__indicators .active {
    width: 28px;
    background: linear-gradient(135deg, #ff8c42 0%, #e85d2a 100%);
}

@media (max-width: 991.98px) {
    .home-testimonials__control {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .home-testimonial-card {
        border-radius: 24px;
        padding: 1.35rem;
    }

    .home-testimonial-card__quote {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .home-testimonial-card__text {
        font-size: 0.97rem;
        line-height: 1.75;
        margin-bottom: 1.25rem;
    }

    .home-testimonial-card__footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-testimonial-card__author {
        justify-content: center;
        text-align: left;
    }

    .home-testimonial-card__author img {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }
}