#navmenu {
    padding: 0px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: flex-end;
}

.nav-btn {
    position: relative;
    background: linear-gradient(135deg, #2bb3f3, #1c7ed6);
    color: #ffffff;
    margin-right: 60px;
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
    letter-spacing: 0.4px;
    box-shadow:
        0 10px 25px rgba(28, 126, 214, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.35s ease;
    overflow: hidden;
}

.nav-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg, #60d5ff, #2bb3f3, #1c7ed6);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.nav-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 16px 35px rgba(28, 126, 214, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow:
        0 8px 18px rgba(28, 126, 214, 0.35);
}

.nav-btn:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(96, 213, 255, 0.35),
        0 10px 25px rgba(28, 126, 214, 0.35);
}



.Page-heading {
    background: linear-gradient(135deg, #12343b, #2d6a73);
    padding: 100px 10px 50px;
    text-align: center;
    color: #fff;
}

.Page-heading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.Page-heading {
    position: relative;
    overflow: hidden;
}


.Page-heading h1 {
    font-weight: 800;
    font-size: 36px;
}

/* Title Styling */
.about-title {
    font-size: 34px;
    font-weight: 700;
    /* color: #0f2133; */
    letter-spacing: 0.5px;
}

.divider {
    width: 150px;
    height: 4px;
    background: #ff5e14;
    margin: 12px auto;  
    border-radius: 10px;
}

.about-subtitle {
    font-size: 18px;
    /* color: #666; */
    margin-top: 10px;
}

/* Image Styling */
.image-wrapper {
    display: inline-block;
    padding: 10px;
    /* border-radius: 50%; */
    background: linear-gradient(135deg, #0fb9b1, #0f2133);
}

.about-img-float {
    max-width: 340px;
    /* border-radius: 50%; */
    border: 6px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #0fb9b1, #0f2133);
    padding: 6px;
}

/* Float only on desktop */
@media (max-width: 768px) {
    .about-img-float {
        float: none !important;
        margin: 0 auto 20px;
        display: block;
    }
    .Page-heading h1 {
    font-weight: 800;
    font-size: 28px;
}
}

.about-img {
    /* border-radius: 50%; */
    width: 100%;
    max-width: 350px;
    border: 5px solid #fff;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* Content Box */
.content-box {
    background: #ffffff;
    border-radius: 12px;
    border-left: 5px solid #0fb9b1;
    border-right: 5px solid #0fb9b1;
}

.content-heading {
    font-size: 24px;
    font-weight: 600;
    color: #0f2133;
}

/* Paragraphs */
.content-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

/* Button Styling */
.btn-info {
    background: #0fb9b1 !important;
    border: none;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 500;
}

.btn-info:hover {
    background: #0f8299 !important;
}



/* Section Title */
.section-title {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
}


.custom-gap {
    /* --bs-gutter-x: 100px !important; */
    --bs-gutter-y: 110px !important;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 60px 25px 30px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Circle Image */
.service-img {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.service-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

/* Content */
.service-content {
    margin-top: 30px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
    color: #261c6a;
}

.service-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Badge */
.badge-custom {
    display: inline-block;
    background: #e4f9f7;
    color: #0f8299;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Read More link */
.read-more {
    color: #0fb9b1;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.read-more:hover {
    color: #0f8299;
}



/* Prevent tall accordion spacing */
.clinic-accordion .accordion-item {
    min-height: 70px;
    border: none;
}

.accordion-header {
    margin: 0px !important;
}

/* Reduce header/button spacing */
.accordion-button {
    padding: 16px 20px;
    background: linear-gradient(135deg, #12343b, #2d6a73);
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #12343b, #2d6a73);
    color: #fff;
}

.accordion-button::after {
    filter: invert(1);
}

/* Body spacing */
.accordion-body {
    padding: 20px 22px;
}

/* Fix icon size spacing */
.accordion-button i {
    min-width: 35px;
}

.clinic-wrapper {
    padding: 10px 0;
}

.card-clinic {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.clinic-header {
    background: linear-gradient(135deg, #12343b, #2d6a73);
    color: #fff;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 16px;
}

.clinic-body {
    padding: 18px;
}

.clinic-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
}

.clinic-address {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
}

.clinic-timing {
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.clinic-timing span {
    color: #dc3545;
    font-weight: 600;
}

.clinic-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-appointment,
.btn-map {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    padding: 12px 22px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    color: #fff;
    line-height: 1;

    cursor: pointer;
    overflow: hidden;

    transition: all 0.35s ease;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-appointment {
    background: linear-gradient(135deg, #2dbf6f, #198754);
}

.btn-appointment::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg, #6fe3a1, #2dbf6f, #198754);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.btn-appointment:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 16px 35px rgba(25, 135, 84, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-appointment:hover::before {
    opacity: 1;
}
.btn-map {
    background: linear-gradient(135deg, #3b82f6, #0d6efd);
    margin-left: 10px;
}

.btn-map::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(120deg, #7fb4ff, #3b82f6, #0d6efd);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.btn-map:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 16px 35px rgba(13, 110, 253, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-map:hover::before {
    opacity: 1;
}
.btn-appointment:active,
.btn-map:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-appointment:focus-visible,
.btn-map:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.35),
        0 10px 25px rgba(0, 0, 0, 0.25);
}



.cc-footer {
    background: #f1f3f5;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}



#services {
    background: linear-gradient(135deg, #12343b, #2d6a73);
}



.hospital-section {
    background: #f7f9fc;
    padding: 50px 0;
}

.hospital-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #0f2133;
}

.hospital-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 10px;
    height: 100%;
}

.hospital-card:hover {
    transform: translateY(-6px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 12px 22px;
}

.hospital-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.hospital-card .hcard-body {
    padding: 18px;
}

.hospital-card .hcard-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f2133;
}

.hospital-card .hcard-text {
    font-size: 14px;
    color: #555;
    line-height: 1.45;
}

.hospital-grid {
    row-gap: 30px;
}








.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card h5 {
    font-weight: 700;
    color: #ff5e14;
    text-transform: capitalize;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
}

.ratings svg {
    color: #f7c325;
    font-size: 18px;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

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



.footer-section {
    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #ff5e14;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}




.hero-section {
    background: linear-gradient(135deg, #18405B, #c42381);
    padding: 100px 0 50px;
}

.hero-section h1 {
    font-weight: 700;
}

/* ================= BREADCRUMB ================= */
.breadcrumb a {
    text-decoration: none;
    color: #18405B;
    font-weight: 500;
}

.breadcrumb .active {
    color: #666;
}



.clinics-section {
    background: #f7f9fc;
    padding: 30px 0;
}

.clinic-card {
    background: #18405B;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    overflow: hidden;
    height: 100%;
}

.clinic-info {
    background: #fff;
    padding: 26px;
}

.clinic-info h3 {
    color: #18405B;
    font-weight: 700;
    margin-bottom: 6px;
}

.clinic-info i {
    color: #c42381;
    margin-right: 8px;
}

.doctor-name {
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.address {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
}

.timing {
    font-size: 16px;
    color: #18405B;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 700;
}

.cilinic-call-btn {
    display: inline-block;
    background: #18405B;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
    text-decoration: none;
}

.cilinic-call-btn:hover {
    background: #c42381;
    color: #fff;

}

.cilinic-call-btn i {
    color: #c42381;
    transition: color 0.3s ease;
}

.cilinic-call-btn:hover i {
    color: #fff;
}

.map-link {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #18405B;
    text-decoration: none;
}

.clinic-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
}

@media(max-width:768px) {
    .clinic-map iframe {
        height: 200px;
    }
    .cilinic-call-btn{
        font-size: 12px;
    }
}



/* gallery page styles............ */
.doctor-gallery-section {
    background: #111;
    color: #fff;
    font-family: "Playfair Display", serif;
}

.gallery-wrapper {
    position: relative;
}

.gallery-preview {
    height: 550px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.gallery-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(10deg, #000 15%, transparent);
}

.gallery-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    font-size: 2.4rem;
    max-width: 600px;
    line-height: 1.3;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-track {
    display: flex;
    gap: 15px;
    overflow-x: hidden;
    width: 100%;
}

.card {
    flex: 0 0 auto;
    width: 200px;
    height: 130px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.7s forwards;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-text {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    color: #ff5e14;
}

.card.active {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.card.active img {
    transform: scale(1.4);
    transition: 0.4s ease;
}

.card.active .card-text {
    display: none;
}

.gallery-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Blog Card Wrapper */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    border: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Blog Image */
.blog-card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img-top {
    transform: scale(1.08);
}

/* Body */
.blog-card-body {
    padding: 22px;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #0f2133;
}

.blog-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Badge */
.blog-card .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Footer */
.blog-card-footer {
    padding: 0 22px 22px;
    background: transparent;
}

/* Read More Button */
.blog-card-footer .btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.blog-card-footer .btn i {
    transition: transform 0.3s ease;
}

.blog-card-footer .btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 767px) {
    .blog-card-img-top {
        height: 200px;
    }
}

/* Blog Content Area */
.blog-content h2 {
    font-size: 2.1rem;
    line-height: 1.4;
    color: #0f2133;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.blog-content ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.blog-content ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
}

/* Author & Meta */
.blog-content .text-muted {
    font-size: 0.9rem;
}

.blog-content i {
    color: #0d6efd;
}

/* Blog Image */
.blog-content img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Headings inside content */
.blog-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #0f2133;
    position: relative;
}

.blog-content h5::before {
    content: "";
    width: 40px;
    height: 3px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* .sidebar{
  width: 100%;
} */

/* Sidebar Card */
.sidebar .sidebar-card {
    border-radius: 16px;
    border: none;
    width: 100%;
}

.sidebar .sidebar-card-body {
    padding: 22px;
}

/* Sidebar Title */
.sidebar h5 {
    font-size: 1.2rem;
    position: relative;
    margin-bottom: 1.2rem;
}

.sidebar h5::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #0d6efd;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* Recent Posts */
.sidebar ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #0f2133;
    transition: all 0.3s ease;
}

.sidebar ul li a:hover {
    background: #f1f5ff;
    color: #0d6efd;
    transform: translateX(4px);
}

/* Badge */
.blog-content .badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 991px) {
    .blog-content h2 {
        font-size: 1.8rem;
    }
}

/* treatment page css ......................... */
.medical-box {
  position: relative;
  background: url('../images/about.webp') center/cover no-repeat;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
  height: 100%;
  overflow: hidden;
}

/* Overlay FIX */
.medical-box .overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 15 27 / 90%);
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.medical-box>*:not(.overlay) {
  position: relative;
  z-index: 2;
}

/* HEADINGS */
.medical-box h3 {
  color: #06a8ff;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.35;
}

.medical-box h4 {
  color: #06a8ff;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 10px;
}

/* PARAGRAPH TEXT */
.medical-box p {
  color: #f1f5f9;
  line-height: 1.8;
  font-size: 16.5px;
  font-weight: 400;
}

.list-tittle {
  font-weight: 700;
  color: #06a8ff;
  font-size: 16.5px;
}

/* LIST */
.medical-list {
  padding-left: 20px;
  margin-bottom: 18px;
}

.medical-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #f8fafc;
  line-height: 1.7;
}

/* BUTTON */
.clinic-btn {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: #fff;
  background: #c42381;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: .3s;
}

.clinic-btn:hover {
  background: #18405B;
}


.video-box iframe {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.doctor-strip {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.doctor-card {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 28px 36px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
  max-width: 520px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .25);
}

/* ICON */
.doctor-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

/* NAME */
.doctor-card h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}

/* SPECIALIZATION */
.doctor-card .designation {
  color: #ffd1ea;
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 10px;
}

/* LOCATIONS */
.doctor-card .locations {
  color: #f1f5f9;
  font-size: 15px;
  margin-bottom: 14px;
}

/* PHONE CTA */
.doctor-phone {
  display: inline-block;
  color: #ffffff;
  background: #c42381;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.doctor-phone:hover {
  background: #18405B;
}





/* privacy policy page css ...................................... */

.privacy-header {
    background: linear-gradient(135deg, #18405B, #c42381);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.privacy-header h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
}

.privacy-section {
    /* max-width: 900px; */
    margin: 40px auto;
    background: #fff;
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.privacy-section h2 {
    font-size: 24px;
    color: #18405B;
    margin-top: 30px;
    font-weight: 800;
}

.privacy-section p,
.privacy-section ul {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.privacy-section ul {
    margin-left: 20px;
}

/* ================= FOOTER BASE ================= */
.clinic-footer {
    background: #0d1117;
    color: #c9c9c9;
    padding: 60px 0 25px;
    font-family: 'Poppins', sans-serif;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 18px;
}

.footer-main p {
    font-size: 14px;
    line-height: 26px;
    color: #b5b5b5;
}

.footer-main h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
}

.footer-main h3::after {
    content: "";
    width: 42px;
    height: 3px;
    background: #ff5e14;
    display: block;
    margin-top: 8px;
    border-radius: 8px;
}

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

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

.footer-links a {
    color: #b5b5b5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff5e14;
    padding-left: 6px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    color: #b5b5b5;
}

/* SVG ICON STYLE */
.footer-contact-info svg.svg-inline--fa {
    width: 20px;
    height: 20px;
    color: #ff5e14;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-info span {
    font-weight: 600;
    color: #ffffff;
    margin-right: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    background: #1b1f27;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* SVG social icons */
.footer-social svg.svg-inline--fa {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.footer-social a:hover {
    background: #ff5e14;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #1e232c;
    margin-top: 45px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #9a9a9a;
}

.bottom-links a {
    color: #9a9a9a;
    margin-left: 16px;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #ff5e14;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
        gap: 10px;
    }

    .bottom-links {
        width: 100%;
    }
}



/* Base button */
.floating-btn {
    position: fixed;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    z-index: 9999;
    cursor: pointer;
    animation: floatBounce 2.5s ease-in-out infinite;
}

/* Positions */
.floating-btn.left {
    left: 20px;
}

.floating-btn.right {
    right: 20px;
}

/* WhatsApp */
.floating-btn.whatsapp {
    background: #25d366;
    animation: whatsappPulse 2s infinite;
}

/* Call (Gold) */
.floating-btn.call {
    background: #ff5e14;
    animation: callPulse 2s infinite;
}

/* Pulse animations using box-shadow */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 94, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
    }
}

/* Bounce animation */
@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Hover */
.floating-btn:hover {
    transform: scale(1.15);
}

/* Mobile */
@media (max-width: 576px) {
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

.floating-btn1 {
    position: fixed;
    right: 20px;
    bottom: 100px;
    background: #28a745;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.floating-btn1:hover {
    background: #218838;
    transform: translateY(-3px);
}

/* Slide button effect */
.slide-btn {
    width: 50px;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.3s ease;
}

.slide-btn span {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-btn:hover {
    width: 200px;
}

.slide-btn:hover span {
    opacity: 1;
}



/* 404 page styles ......................................  */
.error-card {
  background: #ffffff;
  padding: 50px 35px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.error-icon {
  font-size: 42px;
  color: #dc3545;
}

.error-code {
  font-size: 96px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 10px;
}

.error-actions .btn {
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
}
