/* ======================================================
   TABLE OF CONTENTS
======================================================
1.  Font Face Declarations
2.  Root Variables
3.  General Styles
    3.1 Headings
    3.2 Paragraphs
    3.3 Links 
    3.4 Buttons
    3.5 Image
    3.6 List
4.  Utilities
    4.1 Color Utilities
    4.2 Background Utilities
    4.3 Sizing Utilities
    4.4 Other Utilities
5.  Navbar Styles
    5.1 Offcanvas
6. Hero Section
7. What We Offer Section
8. About Section
9. How It Works Section
10. Program Section
11. Services Section
12. Blog Post Section
13. Contact Section
14. Appointment Section
15. Testimonials Section
16. FAQs Section
17. Footer Section
18. Banner Section
19. Doctor Section
20. Services Detail Section
21. Pricing Section
22. Single Post Section
23. Maps Section
24. Animation
25. Media Queries
====================================================== */

/* ======================================================
   1. FONT FACE DECLARATIONS
   Custom @font-face rules for the template's typography.
   Defines font families and their source files.
====================================================== */
@font-face {
    font-family: 'epilogue';
    src: url(../font/epilogue.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cormorant';
    src: url(../font/cormorant.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* ======================================================
   2. ROOT VARIABLES
   Global variables for colors, fonts, and reusable values.
====================================================== */
:root {
    --text-color-1: #3F3F3F;
    --text-color-2: #D2D2D2;
    --color-main: #CA0958;
    --color-darker: #b54853;
    --color-primary: #1A1E2E;
    --color-secondary: #FFC7DA;
    --color-bg-1: #FFF2F6;
    --color-bg-2: #F8E7EE;
    --color-border: #CACACA;
    --font-1: "epilogue";
    --font-2: "cormorant";
}

html,
body {
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ======================================================
   3. GENERAL STYLE
   Base styles for HTML elements.
====================================================== */

/* ------------------------------------------------------
   3.1 HEADINGS
   Typography for all heading levels.
------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-2);
    font-weight: 700;
    line-height: 1.5em;
    color: var(--color-primary);
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 21px;
}

h6 {
    font-size: 18px;
}

/* ------------------------------------------------------
   3.2 PARAGRAPHS
   Styles for paragraph text.
------------------------------------------------------ */
p {
    font-size: 16px;
    color: var(--text-color-1);
    font-weight: 400;
    font-family: var(--font-1);
    line-height: 1.8em;
}

.subtitle {
    font-size: 16px;
    font-weight: 600;
    word-spacing: 6px;
    letter-spacing: 1.2px;
    color: var(--text-color-1);
}

span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color-1);
    font-family: var(--font-1);
}

/* ------------------------------------------------------
   3.3 LINKS
   Anchor tag styles.
------------------------------------------------------ */
a {
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 16px;
    color: var(--color-primary);
    font-family: var(--font-1);
}

/* ------------------------------------------------------
   3.4 BUTTONS
   Button base styles.
------------------------------------------------------ */
button {
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 16px;
}

.btn-1 {
    background-color: var(--color-main);
    color: var(--color-bg-1);
    padding: 12px 28px;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}

.btn-1:hover {
    background-color: var(--color-bg-1);
    color: var(--color-main);
}

.btn-2 {
    background-color: var(--color-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
}

.btn-2:hover {
    background-color: var(--color-main);
}

.btn-3 {
    background-color: var(--color-main);
    color: white;
    padding: 12px 28px;
    border-radius: 32px;
    transition: all 0.3s ease-in-out;
    border: none;
}

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

/* ------------------------------------------------------
   3.5 IMAGE
   Image element styles.
------------------------------------------------------ */
img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 10px;
}

/* ------------------------------------------------------
   3.6 LISTS
   List element styles.
------------------------------------------------------ */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    font-family: var(--font-1) !important;
    font-weight: 400;
    color: var(--text-color-1);
}

/* ------------------------------------------------------
   4. UTILITIES
   Utility classes for text colors.
------------------------------------------------------ */

/* ------------------------------------------------------
   4.1 COLOR UTILITIES
   Utility classes for text colors.
------------------------------------------------------ */
.c-text-1 {
    color: var(--text-color-1) !important;
}

.c-text-2 {
    color: var(--text-color-2) !important;
}

.c-main {
    color: var(--color-main);
}

.c-darker {
    color: var(--color-darker);
}

.c-primary {
    color: var(--color-primary);
}

.c-secondary {
    color: var(--color-secondary);
}

.c-bg-1 {
    color: var(--color-bg-1);
}

.c-bg-2 {
    color: var(--color-bg-2);
}

.c-border {
    color: var(--color-border);
}

.c-white {
    color: white !important;
}

.c-black {
    color: black;
}

/* ------------------------------------------------------
   4.2 BACKGROUND UTILITIES
   Utility classes for background colors.
------------------------------------------------------ */
.bg-text-1 {
    background-color: var(--text-color-1);
}

.bg-text-2 {
    background-color: var(--text-color-2);
}

.bg-main {
    background-color: var(--color-main);
}

.bg-darker {
    background-color: var(--color-darker);
}

.bg-prime {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.bg-bg-1 {
    background-color: var(--color-bg-1);
}

.bg-bg-2 {
    background-color: var(--color-bg-2);
}

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

.bg-white {
    background-color: white;
}

.bg-black {
    background-color: black;
}


/* ------------------------------------------------------
   4.3 SIZING UTILITIES
   Utility classes for element sizing and spacing.
------------------------------------------------------ */
.navbar-size {
    width: 100%;
    padding: 20px;
}

.hero-size,
.banner-size,
.error-size {
    margin: 5vh;
    border-radius: 10px;
}

.banner-size {
    min-height: 546px;
}

.error-size {
    min-height: 90vh;
}

.page-size {
    width: 1300px;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------------------
   4.4 OTHER UTILITIES
   Miscellaneous utility classes.
------------------------------------------------------ */
.divider {
    border: 1px solid var(--color-border);
}


/* ======================================================
   5. NAVBAR STYLES
   Styles for navigation bar and navigation elements.
====================================================== */
.navbar-toggler {
    border: none;
}

.navbar-toggler .custom-toggler-icon {
    width: 30px;
    height: 25px;
    border: none;
    background: var(--color-main);
    box-shadow: none;
    outline: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: end;
    padding: 5px;
    color: white !important;
}

.navbar-toggler .bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    width: 100%;
    background-color: white;
    border: none;
}

.navbar-toggler .bar-1 {
    width: 80%;
    align-self: flex-end;
}

.navbar-toggler .bar-2 {
    width: 100%;
}

.navbar-toggler .bar-3 {
    width: 60%;
    align-self: flex-end;
}

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

.nav-link {
    color: var(--text-color-2);
    font-size: 15px;
    font-family: var(--font-1);
    font-weight: 400;
    box-shadow: none;
}

.desktop-toggler {
    display: block;
    background-color: transparent;
    border: none;
    border-radius: 4px;
}

.desktop-toggler .bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    width: 100%;
    background-color: white;
    border: none;
}

.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28210, 210, 210, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link.dropdown-toggle:hover {
    color: white;
    box-shadow: none;
}

.nav-link.dropdown-toggle:active {
    box-shadow: none;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: white !important;
    box-shadow: none;
}

.nav-link:focus,
.dropdown-item:focus {
    color: white;
    outline: none;
    box-shadow: none !important;
}

.dropdown-toggle {
    box-shadow: none !important;
}

.dropdown-menu {
    color: var(--text-color-2);
    min-width: 240px;
    border: none;
    box-shadow: none;
    border-radius: 10px;

}

.dropdown-menu a {
    padding-top: 4px;
    padding-bottom: 4px;
}

.dropdown-menu:hover a:hover {
    color: #fff;
    background-color: var(--color-main);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    font-weight: 500 !important;
}

.dropdown-item.active {
    color: var(--color-main) !important;
    background-color: transparent !important;
}

.dropdown-item:hover {
    color: var(--color-main) !important;
    background-color: transparent !important;
}

.logo-width {
    max-width: 180px;
}


/* ------------------------------------------------------
   5.1 OFFCANVAS
   Styles for offcanvas navigation menu.
------------------------------------------------------ */
.offcanvas-header .btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background-color: transparent;
    border: 1px solid var(--text-color-2);
    border-radius: 10px;
    font-size: 16px;
    padding: 5px 12px;
    cursor: pointer;
}



.btn-close {
    color: var(--color-main) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a0893f'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    opacity: 1 !important;
}

.btn-close:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a0893f'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");

}

.offcanvas-icon {
    background-color: var(--color-main);
    padding: 8px;
    border-radius: 4px;
}

.offcanvas {
    background-color: var(--color-bg-1) !important;
}

.social-icon-circle {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    font-size: 16px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.social-icon-circle:hover {
    background-color: var(--color-main);
    color: var(--color-bg-1);
}

/* ------------------------------------------------------
   6. Hero Section
   Styles for hero section.
------------------------------------------------------ */
.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-social-icon-circle {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-color-2);
    border: 1px solid var(--text-color-2);
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.hero-social-icon-circle:hover {
    background-color: var(--text-color-2);
    color: var(--color-main);
    transform: translateY(-5px);
}

.hero-card {
    background-color: var(--color-secondary);
    border-radius: 10px;
    padding: 16px 16px 0px 16px;
    height: 100%;
}

/* ------------------------------------------------------
   7. WHAT WE OFFER SECTION
   Styles for the What We Offer cards and components.
------------------------------------------------------ */
.what-we-offer-card-1 {
    background-color: var(--color-secondary);
    border-radius: 10px;
    padding: 16px;
    height: 100%;
}


.what-we-offer-card-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/offer-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 16px;
    height: 100%;
    min-height: 300px;
}

.offer-img-circle {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    border: 4px solid var(--color-secondary);
}

.offer-img-circle:nth-child(2) {
    margin-left: -12px;
}

.offer-img-circle:nth-child(3) {
    margin-left: -12px;
}

.offer-img-circle:nth-child(4) {
    margin-left: -12px;
}

.video-wrapper {
    display: inline-block;
    position: relative;
}

.video-container {
    position: relative;
    display: inline-block;
}

.video-thumb {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: var(--color-main);
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.3s;
}

.play-button:hover {
    opacity: 1;
}

.play-button.hidden {
    display: none;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal video {
    width: 80%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

.partner-text {
    font-weight: 600;
}

.partner-img {
    width: 124px;
    object-fit: contain;
    border-radius: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-img:hover {
    opacity: 1;
}

/* ------------------------------------------------------
   8. ABOUT SECTION
   Styles for the About page components and elements.
------------------------------------------------------ */
.about-card {
    border-left: 1px solid var(--color-border);
    padding-left: 48px;
}

.about-countup,
.pricing-price {
    font-family: var(--font-2);
    font-weight: 700;
    line-height: 1.5em;
    color: var(--color-primary);
    font-size: 80px;
}

.consultation-card {
    background-color: var(--color-secondary);
    border-radius: 10px;
    padding: 32px 32px 0px 32px;
}

.more-about-card-wrapper {
    background-color: var(--color-primary);
    border-radius: 10px;
    padding: 32px;
}

.more-about-card {
    background-color: white;
    border-radius: 10px;
    padding: 32px;
}

.company-value-card {
    background-color: white;
    border-radius: 10px;
    padding: 24px;
}

.company-value-icon-circle {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-2);
    color: var(--color-main);
    border: none;
    font-size: 25px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.company-value-icon-circle:hover {
    background-color: var(--color-main);
}

.gallery-img {
    cursor: pointer;
}

/* ------------------------------------------------------
   9. HOW IT WORKS SECTION
   Styles for the How It Works components and layout.
------------------------------------------------------ */
.how-it-works-card-wrapper {
    position: absolute;
    padding: 16px;
    background-color: var(--color-secondary);
    border-radius: 10px;
}

.how-it-works-card {
    padding: 16px;
    background-color: white;
    border-radius: 10px;
}

.padding-top-9 {
    padding-top: 9rem;
}

.padding-top-18 {
    padding-top: 18rem;
}

.padding-bottom-7 {
    padding-bottom: 7rem;
}

/* ------------------------------------------------------
   10. PROGRAM SECTION
   Styles for the Program components and layout.
------------------------------------------------------ */
.program-card {
    width: 90%;
    position: absolute;
    left: -6px;
    bottom: -48px;
    background-color: var(--color-secondary);
    border-radius: 10px;
    padding: 32px;
}

.program-img {
    height: 520px;
    border-radius: 10px;
}

/* ------------------------------------------------------
   11. SERVICES SECTION
   Styles for the Services components and cards.
------------------------------------------------------ */
.services-card {
    background-color: white;
    border-radius: 20px;
    padding: 32px;
}

.services-img {
    height: 50px;
    object-fit: contain;
    border-radius: 0;
}

/* ------------------------------------------------------
   12. BLOG POST SECTION
   Styles for blog post cards and related components.
------------------------------------------------------ */
.blog-card {
    background-color: white;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog-img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.blog-header {
    font-size: 26px;
    font-weight: 600;
    font-family: var(--font-1);
    color: var(--color-primary);
}

.blog-img-wrapper:hover .blog-img,
.blog-col-1:hover .blog-img,
.blog-col-2:hover .blog-img,
.blog-col-3:hover .blog-img,
.blog-col-4:hover .blog-img,
.blog-col-5:hover .blog-img,
.blog-col-6:hover .blog-img {
    transform: scale(1.05) rotate(2deg);
}

.blog-img-wrapper:hover::before {
    opacity: 1;
}

/* ------------------------------------------------------
   13. CONTACT SECTION
   Styles for contact forms and related components.
------------------------------------------------------ */
.contact-img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contact-card {
    position: relative;
    margin-left: -6rem;
    background-color: var(--color-secondary);
    padding: 40px;
    border-radius: 20px;
}

.contact-card.contact-page {
    margin-left: 0;
}

.contact-label {
    font-size: 16px;
    font-weight: 500;
    word-spacing: 1px;
    color: var(--color-primary);
}

.contact-input {
    border-radius: 6px;
    padding: 12px;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: white;
    color: black;
    width: 100%;
}

.contact-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.contact-input::placeholder {
    color: var(--text-color-2);
}

.contact-float {
    background-color: white;
    padding: 20px 20px 10px 20px;
    position: absolute;
    bottom: 10%;
    left: 15%;
    transform: translate(-15%, -15%);
    border-radius: 20px;
}

.contact-icon-circle {
    margin-bottom: 12px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: white;
    border: none;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.contact-icon-circle:hover {
    background-color: var(--color-main);
}

/* ------------------------------------------------------
   14. APPOINTMENT SECTION
   Styles for appointment scheduling components and layout.
------------------------------------------------------ */
.appointment-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: max-content;
    overflow: hidden;
}

.appointment-video-wrapper .d-flex {
    height: 100%;
}

.appointment-card {
    background-color: var(--color-secondary);
    padding: 32px;
    border-radius: 10px;
}

.appointment-form {
    background-color: var(--color-bg-2);
    padding: 64px;
    border-radius: 10px;
}

.custom-date {
    background-color: transparent;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-date::placeholder {
    color: white;
}

.custom-date:focus {
    outline: none;
    border: none;
}

.custom-date::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: none;
}


.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 20px;
}

.content {
    height: 100%;
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 12px;
}

.appointment-img-circle {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    border: 4px solid white;
}

.appointment-img-circle:nth-child(2),
.appointment-img-circle:nth-child(3),
.appointment-img-circle:nth-child(4) {
    margin-left: -12px;
}

.ss-single {
    color: var(--text-color-2) !important;
}

/* ------------------------------------------------------
   15. TESTIMONIALS SECTION
   Styles for customer testimonials and reviews.
------------------------------------------------------ */
.testimonial-img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    min-height: 100vh;
}

.testimonial-icon {
    font-size: 72px;
    color: var(--color-main);
}

.testimonial-float {
    width: max-content;
    position: absolute;
    bottom: 3%;
    left: 64%;
    transform: translate(-20%, -20%);
    background-color: white;
    border-radius: 20px;
    padding: 32px;
}

.testimonial-card {
    padding: 32px;
    background-color: var(--color-bg-1);
    border-radius: 20px;
}

.testimonial-img-circle {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    margin-right: 16px;
}

/* ------------------------------------------------------
   16. FAQS SECTION
   Styles for frequently asked questions accordion.
------------------------------------------------------ */

.accordion {
    margin-bottom: 20px;
}

.accordion-item {
    background-color: var(--color-bg-1);
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.accordion-body.accordion-two {
    background-color: var(--color-bg-2) !important;
}

.accordion-button.accordion-two {
    color: var(--text-color-1);
    background-color: white !important;
}

.accordion-button {
    color: var(--text-color-1);
    background-color: var(--color-bg-2);
    max-height: 58px;
}

.accordion-button:not(:focus) {
    background-color: var(--color-bg-2);
}

.accordion-button:focus.collapsed {
    background-color: var(--color-bg-2);
    color: var(--text-color-1);
}

.accordion-button::after {
    display: none !important;
}

.accordion-button .icon {
    font-size: 2.4rem;
    color: var(--color-main);
    transition: transform 0.3s ease;
}


.accordion-button.collapsed .icon::before {
    content: '+';
}

.accordion-button:not(.collapsed) .icon::before {
    content: '×';
    color: white;
}

.accordion-button:not(.collapsed).accordion-two .icon::before {
    color: var(--color-main);
}

.accordion-button:focus {
    background-color: var(--color-main);
    color: white;
    box-shadow: none;
    outline: none;
}

.accordion-button:focus.accordion-two {
    color: var(--text-color-1);
}

.accordion-body {
    color: var(--text-color-1);
    padding: 20px;
    background-color: var(--color-bg-1);
    border-radius: 8px;
}

/* ------------------------------------------------------
   17. FOOTER SECTION
   Styles for the website footer and its components.
------------------------------------------------------ */

.footer-logo {
    max-width: 200px;
}

.footer-link {
    color: var(--text-color-2);
}

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

.footer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.footer-form-wrapper {
    background-color: var(--color-bg-1);
    padding: 12px;
    border-radius: 10px;
}


.footer-input {
    width: 100%;
    flex: 1;
    border-radius: 6px;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: var(--color-bg-1);
    color: var(--text-color-1);
}

.footer-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.footer-input::placeholder {
    color: var(--text-color-1);
}

/* ------------------------------------------------------
   18. BANNER SECTION
   Styles for banner backgrounds and hero sections.
------------------------------------------------------ */
.banner-bg-1,
.banner-bg-2,
.banner-bg-3,
.banner-bg-4,
.banner-bg-5,
.banner-bg-6,
.banner-bg-7,
.banner-bg-8,
.banner-bg-9,
.banner-bg-10,
.banner-bg-11,
.banner-bg-12 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-bg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-1.jpg');
}

.banner-bg-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-2.jpg');
}

.banner-bg-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-3.jpg');
}

.banner-bg-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-4.jpg');
}

.banner-bg-5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-5.jpg');
}

.banner-bg-6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-6.jpg');
}

.banner-bg-7 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-7.jpg');
}

.banner-bg-8 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-8.jpg');
}

.banner-bg-9 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-9.jpg');
}

.banner-bg-10 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-10.jpg');
}

.banner-bg-11 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-11.jpg');
}

.banner-bg-12 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-12.jpg');
}

/* ------------------------------------------------------
   19. DOCTOR SECTION
   Styles for doctor profiles and related components.
------------------------------------------------------ */
.doctor-container {
    position: relative;
}

.doctor-card {
    width: 80%;
    position: absolute;
    left: -26px;
    bottom: 26px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: var(--color-secondary);
    border-radius: 10px;
}

.doctor-icon-circle {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    font-size: 16px;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.doctor-icon-circle:hover {
    background-color: var(--color-main);
    color: white;
}

/* ------------------------------------------------------
   20. SERVICES DETAIL SECTION
   Styles for detailed service pages and components.
------------------------------------------------------ */
.services-detail-card-1 {
    background-color: var(--color-secondary);
    padding: 32px;
    border-radius: 10px;
}

.services-detail-card-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/services-detail-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 32px;
    border-radius: 10px;
}

.services-detail-icon-circle {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    font-size: 12px;
    margin-right: 10px;
    cursor: pointer;
}

/* ------------------------------------------------------
   21. PRICING SECTION
   Styles for pricing cards and related components.
------------------------------------------------------ */
.pricing-card-wrapper {
    background-color: var(--color-bg-2);
    padding: 32px;
    border-radius: 10px;
}

.pricing-card-1 {
    background-color: white;
    padding: 0px 32px 32px 32px;
    border-radius: 10px;
}

.pricing-card-2 {
    background-color: var(--color-primary);
    padding: 0px 32px 32px 32px;
    border-radius: 10px;
}

.pricing-header {
    width: max-content;
    background-color: var(--color-main);
    color: white;
    padding: 8px 20px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pricing-footer {
    border-radius: 10px;
}

/* ------------------------------------------------------
   22. SINGLE POST SECTION
   Styles for individual blog post pages and components.
------------------------------------------------------ */
.single-post-card {
    background-color: var(--color-bg-2);
    padding: 32px;
    border-radius: 10px;
    width: 100%;
}

.single-post-card i {
    font-size: 6rem;
    color: var(--color-main);
}

.recent-post-date {
    font-size: 12px;
    color: var(--color-main);
}

.recent-post-img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
}

/* ------------------------------------------------------
   23. MAPS SECTION
   Styles for embedded maps and location components.
------------------------------------------------------ */

.maps-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 5px;
    overflow: hidden;
}

.maps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: background-color 0.3s ease;
}

.maps-overlay:hover {
    background-color: transparent;
}

.maps {
    position: relative;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    pointer-events: auto;
}


/* ======================================================
   24. ANIMATION
   Animation keyframes and animation utility classes.
====================================================== */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


.fade-in {
    opacity: 0;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

.fade-in {
    animation-name: fadeIn;
}


.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.fade-in {
    animation-fill-mode: both;
}

.popup-message {
    display: none;
    background-color: white;
    color: var(--color-primary);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
}

.contact-card .popup-message {
    max-width: 100%;
}

.popup-message-2 {
    display: none;
    background-color: var(--color-border);
    color: var(--color-primary);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

/* ======================================================
   25. MEDIA QUERIES
   Responsive styles for different screen sizes.
====================================================== */
@media screen and (max-width: 992px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.1em;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 27px;
    }

    h4 {
        font-size: 21px;
    }

    h5 {
        font-size: 19px;
    }

    h6 {
        font-size: 14px;
    }

    p {
        font-size: 14px;
    }

    button {
        font-size: 12px;
    }

    a {
        font-size: 12px;
    }

    .page-size {
        width: 100%;
        padding: 50px 32px;
    }

    .hero-size,
    .banner-size,
    .error-size {
        margin: 1vh;
    }

    .error-size {
        min-height: 45vh;
    }

    .navbar-size {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .about-countup,
    .pricing-price {
        font-size: 50px;
    }

    .offcanvas-body {
        background-color: var(--color-bg-1) !important;
    }

    .nav-link {
        color: var(--text-color-1);
    }

    .nav-link.active {
        color: var(--color-main) !important;
    }

    .nav-link:focus {
        color: var(--color-main) !important;
    }

    .dropdown-menu {
        background-color: var(--color-bg-1);
    }

    .dropdown-toggle:hover {
        color: var(--color-main) !important;
    }

    .dropdown-item {
        font-size: 16px;
    }

    .dropdown-item:hover {
        background-color: var(--color-bg-1) !important;
    }

    .logo-width {
        width: 50%;
    }

    .how-it-works-card-wrapper {
        position: relative;
    }

    .padding-bottom-7 {
        padding-bottom: 0;
    }

    .padding-top-9 {
        padding-top: 0;
    }

    .padding-top-18 {
        padding-top: 0;
    }

    .program-card {
        width: 80%;
        position: absolute;
        left: 50%;
        bottom: -18%;
        transform: translate(-50%, -50%);
    }

    .contact-card {
        margin-left: 0;
        padding: 28px;
    }

    .contact-img {
        max-height: 500px;
    }

    .appointment-video-wrapper {
        min-height: 60vh;
    }

    .testimonial-img {
        min-height: 50vh;
    }

    .faqs-img {
        max-height: 50vh;
    }

    .banner-size {
        min-height: 360px;
    }

    .doctor-card {
        left: 50%;
        bottom: -60px;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    .page-size {
        padding: 50px 20px;
    }

    .navbar-size {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-logo {
        width: 100%;
        max-height: 30px;
    }

    .program-card {
        width: 78%;
        position: absolute;
        left: 50%;
        bottom: -30%;
        transform: translate(-50%, -50%);
    }

    .contact-card {
        margin-left: 0;
        padding: 16px;
    }

    .testimonial-float {
        width: 75%;
        left: 50%;
        bottom: -6%;
        transform: translate(-50%, -50%);
    }

    .footer-input {
        border: 1px solid var(--color-border);
        padding: 12px;
    }

    .about-countup,
    .pricing-price {
        font-size: 42px;
    }

    .banner-size {
        min-height: 280px;
    }

    .more-about-card-wrapper {
        padding: 16px;
    }

    .more-about-card {
        padding: 16px;
    }

    .doctor-card {
        left: 50%;
        bottom: -40px;
        transform: translate(-50%, -50%);
    }

    .appointment-img-circle {
        width: 50px;
        height: 50px;
        border: 2px solid white;
    }

    .appointment-form {
        padding: 20px;
    }

    .pricing-card-wrapper {
        background-color: var(--color-bg-2);
        padding: 16px;
        border-radius: 10px;
    }

    .pricing-card-1 {
        background-color: white;
        padding: 0px 16px 16px 16px;
        border-radius: 10px;
    }

    .pricing-card-2 {
        background-color: var(--color-primary);
        padding: 0px 16px 16px 16px;
        border-radius: 10px;
    }

    .accordion-button {
        max-height: none;
    }

    .single-post-card {
        padding: 16px;
    }

    .single-post-card i {
        font-size: 3rem;
    }
}