/* TOPBAR */
/* Default Typography with weights */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600; /* bold for headings */
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

p,
ol,
ul,
li {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400; /* normal for body text */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.topbar {
    background-color: #1577ab; /* blue background */
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    padding: 7px 15px;
}

/* Links & Icons */
.topbar a,
.topbar i {
    font-size: 14px;
    color: #ffffff;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* Hover */
.topbar a:hover,
.topbar i:hover {
    color: #0d5e88; /* hover color */
}

/* Custom Bottom Nav */
#mobileBottomNav {
    background-color: #1577ab; /* custom blue */
    height: 60px;
    z-index: 1050;
    padding: 0;
}

/* Nav buttons */
#mobileBottomNav .mobile-nav-btn {
    flex: 1; /* equal width */
    text-align: center;
    font-size: 14px;
    padding: 5px 0;
    text-decoration: none;
}

#mobileBottomNav .mobile-nav-btn i {
    display: block;
    margin-bottom: 2px;
}

#mobileBottomNav .mobile-nav-btn:hover {
    background-color: #126898; /* slightly darker on hover */
}
/* =========================
   NAVBAR BASE
========================= */
.navbar {
    padding: 2 10px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }
    .header-container {
        padding: 5px;
    }
}

.custom-menu .nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 17px;
    text-transform: uppercase;
    color: #000 !important;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Hover & Active */
.custom-menu .nav-link:hover,
.custom-menu .nav-link:focus,
.custom-menu .nav-link.active {
    color: #1577ab !important;
}

/* Logo */
.logo-img {
    max-width: 250px;
    min-width: 130px;
    height: auto;
    display: block;
}

/* =========================
   DROPDOWN MENU (DESKTOP)
========================= */
.dropdown-menu {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    border-radius: 0;
    border: none;
    padding: 0;
    margin-top: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.25s ease;
    position: absolute;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Small arrow only for desktop */
    .navbar .dropdown-toggle::after {
        display: inline-block !important;
        margin-left: 0.25em;
        vertical-align: 0.15em;
        content: "";
        border-top: 0.25em solid;
        border-right: 0.25em solid transparent;
        border-left: 0.25em solid transparent;
    }
}

.dropdown-menu .dropdown-item {
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
    color: #1577ab !important;
}

/* =========================
   MOBILE MENU
========================= */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff !important;
        padding: 15px;
    }

    .custom-menu .nav-link {
        color: #000 !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .custom-menu .nav-link:hover,
    .custom-menu .nav-link:focus {
        color: #1577ab !important;
        background-color: #f8f9fa;
    }

    /* Mobile dropdown uses collapse */
    .dropdown-menu {
        position: static;
        display: block;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding-left: 15px;
    }

    .navbar .dropdown-toggle::after {
        display: none !important;
    }

    .dropdown-toggle-icon {
        font-size: 18px;
        font-weight: bold;
        color: #1577ab;
        transition: transform 0.3s ease;
    }

    .nav-link[aria-expanded="true"] .dropdown-toggle-icon {
        transform: rotate(45deg);
    }
}

/* =========================
   MODERN HAMBURGER
========================= */
.navbar-toggler {
    border: none;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: none;
    width: 25px;
    height: 2px;
    background-color: #000;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #000;
    left: 0;
    transition: 0.3s;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Offcanvas = 70% width on mobile */
@media (max-width: 991px) {
    .offcanvas.offcanvas-start {
        width: 70% !important;
        max-width: 400px; /* optional cap for tablets */
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 88vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content h1,
.hero-content p {
    font-family: "Montserrat", sans-serif;
}

#locationBtn {
    bottom: 70px;
    left: 10px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    z-index: 10;
}

#unmuteBtn {
    bottom: 70px;
    right: 10px;
    z-index: 10;
    opacity: 0.85;
}

@media (max-width: 768px) {
    #unmuteBtn {
        bottom: 120px;
        right: 10px;
    }
}

/* Welcome Section */
.welcome-section {
    background: #1577ab url("/assets/image/home-bg.png");
    position: relative;
    color: #fff;
}

.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 119, 171, 0.8);
    z-index: 1;
}
.welcome-section .container {
    position: relative;
    z-index: 2;
}

/* Patient Comment Section */
.patient-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.patient-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    width: 380px;
    background-color: #1577ab;
    color: #fff;
}

.patient-card:hover {
    transform: translateY(-6px);
}

.patient-card .profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.patient-card h6 {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
}

.patient-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.patient-carousel::-webkit-scrollbar {
    display: none;
}
.patient-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.carousel-indicators-custom a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background-color: #1577ab;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.carousel-indicators-custom a:hover,
.carousel-indicators-custom a:focus {
    background-color: #000000;
}

/* Doctor Section */
.doctor-home-section {
    height: 70vh;
    background: url("/assets/image/meet-our-doctor-bg.jpg") center/cover
        no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .doctor-home-section {
        height: 70vh;
        background-position: top;
    }
}

@media (max-width: 480px) {
    .doctor-home-section {
        height: 90vh;
        background-position: top center;
    }
}

/* Doctor Image */
.dr-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.doctor-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.doctor-desc {
    font-size: 1.25rem;
    color: #222;
    margin-top: 1rem;
}

/* Services Section */
.services-section .service-card {
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    color: #333;
}

.card-body .btn-primary {
    background-color: #1577ab;
    color: #fff;
    border: none;
}

.services-section .service-card:hover {
    background-color: #1577ab;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Ensure text and buttons adapt on hover */
.services-section .service-card:hover .card-title,
.services-section .service-card:hover .card-text {
    color: #fff;
}

.services-section .service-card .btn {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.services-section .service-card:hover .btn {
    background-color: #fff;
    color: #1577ab;
    border-color: #fff;
}

.services-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* About Section */
.about-home-section {
    height: 70vh;
    background: url("/assets/image/about-bg.jpg") center/cover no-repeat fixed;
    position: relative;
    color: #fff;
}

.about-home-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
}

.why-choose-us h2 {
    color: #1577ab;
}

.why-choose-us p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.why-choose-us .btn {
    background-color: #1577ab;
    border-color: #1577ab;
    transition: all 0.3s ease;
}

.why-choose-us .btn:hover {
    background-color: #0e5a82;
    border-color: #0e5a82;
}

.why-img {
    width: 100%;
    max-width: 500px;
    border-radius: 0 0 50% 50% / 10% 10% 40% 40%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.why-img:hover {
    transform: scale(1.03);
}

/* Contact Section */
.contact-section {
    background-color: #1577ab;
}

.contact-form input,
.contact-form textarea {
    border-radius: 10px;
    border: 1px solid #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1577ab;
    box-shadow: 0 0 0 0.2rem rgba(21, 119, 171, 0.2);
}

.contact-info {
    border-radius: 10px;
    background-color: #ffffff;
}

.contact-section .col-lg-6 {
    display: flex;
}

/* locations Sections */
.visit-section {
    background-color: #1577ab;
    min-height: 70vh;
}

.visit-section iframe {
    min-height: 100%;
}

.visit-section .shadow-lg {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.visit-section h4,
.visit-section p {
    color: #fff;
}

@media (max-width: 991px) {
    .visit-section iframe {
        height: 300px;
    }
}

/* About Page */
.about-section {
    background-color: #1577ab;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 119, 171, 0.2);
    border-radius: 1.5rem;
}

.about-section h1 {
    text-transform: uppercase;
    font-weight: 700;
}

/* Doctor Page */
.doctor-section {
    font-family: "Georgia", "Times New Roman", serif;
    color: #333;
}

.doctor-section h1,
.doctor-section h2,
.doctor-section h4 {
    font-family: "Playfair Display", serif;
    letter-spacing: 0.5px;
    color: #1577ab;
}

.doctor-section .section-divider {
    width: 80px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
}

.doctor-article p {
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1.2rem;
}

.doctor-img {
    width: 100%;
    max-width: 400px;
    border: 6px solid #fff;
}

@media (max-width: 991.98px) {
    .doctor-img {
        float: none !important;
        display: block;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }
}

/* Team Page */
.team-section h1 {
    color: #1577ab;
    text-transform: uppercase;
    font-weight: 700;
}

.team-section .section-divider {
    width: 80px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
}

.team-member {
    transition: all 0.3s ease;
    background-color: #1577ab;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.team-photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #fff;
    transition: transform 0.3s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-member .team-position {
    color: #cccccc;
    font-weight: 500;
}

.team-member .team-disc {
    font-size: 1rem;
    color: #ffffff;
}

@media (max-width: 767px) {
    .team-photo img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 991px) {
    .team-article,
    .team-article.reverse {
        flex-direction: column;
        text-align: center;
    }
    .team-content {
        text-align: left;
    }
    .team-image {
        max-width: 100%;
    }
}

/* Office Page */
.office-tour-section h1 {
    color: #1577ab;
    text-transform: uppercase;
    font-weight: 700;
}

.office-tour-section .section-divider {
    width: 80px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
}

.office-tour-section .secondary {
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.2rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.map-wrapper:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-frame {
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .map-wrapper {
        aspect-ratio: 4/3;
    }
    .office-tour-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Section testimonials */
.testimonials-section h1 {
    color: #1577ab;
    text-transform: uppercase;
    font-weight: 700;
}

.testimonials-section .section-divider {
    width: 80px;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
}

.testimonials-section .text-secondary {
    line-height: 1.7;
    font-weight: 400;
    font-size: 1.2rem;
}

.testimonial-box {
    max-width: 800px;
    transition: all 0.3s ease;
}
.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .testimonial-box {
        padding: 1.5rem;
    }
}

/* New Patients Section */
.new-patients-section h1 {
    color: #1577ab;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .new-patients-section h1 {
        text-align: center;
    }
}

.new-patients-section .text-secondary {
    line-height: 1.7;
    font-weight: 400;
    font-size: 1rem;
}

.new-patients-section .text-primary {
    color: #1577ab;
}

/* Patient Forms Section */
.patient-forms-section h1 {
    color: #1577ab;
    font-weight: 700;
    text-transform: uppercase;
}

.patient-forms-section .text-secondary {
    line-height: 1.7;
    font-size: 1.2rem;
}

.patient-form-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.patient-form-list .form-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 3px;
}

.patient-form-list .form-text {
    flex: 1;
    text-align: left;
}

.patient-forms-section .pdf-submit {
    color: #1577ab;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .patient-forms-section h1 {
        text-align: center;
    }

    .patient-forms-section .text-secondary {
        text-align: center;
        font-size: 1rem;
    }

    .patient-form-list {
        display: block;
        padding-left: 0.5rem;
    }

    .patient-form-list li {
        align-items: flex-start;
    }

    .patient-form-list .form-text {
        text-align: left;
        word-break: break-word;
    }
}

/* Insurance section */
.insurance-section h1 {
    color: #1577ab;
    font-weight: 700;
    text-transform: uppercase;
}

.insurance-card {
    padding: 1.8rem;
}

.insurance-card h5 {
    color: #1577ab;
    font-size: 1.5rem;
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.insurance-contact,
.contact {
    color: #1577ab;
    text-decoration: none;
    font-weight: 700;
}

.insurance-image-wrapper {
    background: linear-gradient(135deg, #1577ab 60%, #ffffff 100%);
    border-radius: 0 0 50% 50% / 10% 10% 40% 40%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.insurance-image {
    width: 100%;
    max-width: 500px;
    border-radius: 0 0 50% 50% / 10% 10% 40% 40%;
}

@media (max-width: 991px) {
    .insurance-section h1 {
        text-align: center;
    }

    .insurance-card,
    .insurance-section p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .insurance-image-wrapper {
        background: linear-gradient(160deg, #1577ab 70%, #ffffff 100%);
        padding: 1.5rem;
        border-radius: 0 0 40% 40% / 8% 8% 30% 30%;
        margin-bottom: 2rem;
    }

    .insurance-image {
        max-width: 400px;
    }

    h5 {
        text-align: center;
    }

    .insurance-section p {
        font-size: 1rem;
    }

    .insurance-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 1rem;
    }

    .insurance-list li {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Contact page section */
.contact-page-section {
    background-color: #1577ab;
    color: #ffffff;
}

.contact-page-section h1 {
    text-transform: uppercase;
    font-weight: 700;
}

/* --- Form --- */
.contact-page-form input,
.contact-page-form textarea {
    border-radius: 10px;
    background-color: #0f5f8a;
    color: #ffffff;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    background-color: #0d547a;
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.contact-page-form label {
    color: #ffffff;
    font-weight: 600;
}

.contact-page-form button {
    background-color: #ffffff !important;
    color: #1577ab !important;
    border: none;
    font-weight: 700;
}

/* --- Info Card --- */
.contact-page-info {
    border-radius: 12px;
    background-color: #ffffff;
    color: #212529;
}

.contact-page-info h5 {
    color: #1577ab;
    font-weight: 700;
}

@media (max-width: 991px) {
    .contact-page-section {
        text-align: center;
    }

    .contact-page-form,
    .contact-page-info {
        margin: 0 auto;
    }

    .contact-page-info {
        margin-top: 1rem;
    }
}

/* ---------------------------
   Dental Services Page Section
--------------------------- */
.services-page-section,
.services-details-section {
    width: 100%;
    padding: 4rem 0;
}

.services-page-section h1,
.services-details-section h1,
.services-details-section h2 {
    color: #1577ab;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.services-page-section p,
.services-details-section p,
.services-page-section .secondary {
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    font-size: 1rem;
}

.services-page-section .secondary,
.services-details-section .secondary {
    font-size: 1.2rem;
    line-height: 1.7;
}

.services-page-section img,
.service-detail-card img {
    border-radius: 1.25rem;
    width: 100%;
    object-fit: cover;
    display: block;
}

.services-page-section img {
    height: 100%;
}

.service-detail-card img {
    height: 350px;
}

.services-table th,
.services-table td {
    vertical-align: middle;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.services-table th {
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
}

/* ---------------------------
   Service Detail Card
--------------------------- */
.service-detail-card {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
    height: 100%;
}

.service-detail-card h5 {
    color: #1577ab;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-detail-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.service-detail-card .btn {
    font-weight: 600;
    margin-top: auto;
    background-color: #1577ab !important;
    color: #fff !important;
}

/* ---------------------------
   Responsive
--------------------------- */
@media (max-width: 991px) {
    .services-page-section h1,
    .services-details-section h2,
    .services-page-section p,
    .services-details-section p {
        text-align: center;
    }

    .services-table th,
    .services-table td {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .service-detail-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .services-page-section h1,
    .services-details-section h2 {
        font-size: 1.75rem;
    }

    .services-table th,
    .services-table td {
        font-size: 0.85rem;
        padding: 0.4rem;
    }

    .service-detail-card img {
        height: 180px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #111;
    color: #f8f9fa;
    font-size: 0.95rem;
}

.footer-section h6 {
    letter-spacing: 0.6px;
}

.footer-section .social-icon {
    color: #f8f9fa;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section .social-icon:hover {
    color: #1577ab;
    transform: scale(1.1);
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1577ab;
}

.footer-hours li {
    margin-bottom: 0.4rem;
}

.footer-hours span {
    color: #ccc;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

@media (max-width: 991px) {
    .footer-section .row > div {
        text-align: center !important;
    }

    .footer-section .social-icon {
        margin: 0 0.3rem;
    }

    .footer-bottom {
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-section h6 {
        font-size: 1rem;
    }

    .footer-section .social-icon {
        font-size: 1.4rem;
    }

    .footer-bottom {
        margin-bottom: 50px;
    }
}
