/*-----------------------------------*\
  #style.css
\*-----------------------------------*/


/**
 * copyright 2022 codewithsadee
 */


/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    /**
 * colors
 */
    --gold: #FFD700;
    --gold-dark: #C5A30C;
    --black: #000000;
    --dark-gray: #121212;
    --light-gray: #2e2e2e;
    --white: #ffffff;
    --transparent-white: rgba(255, 255, 255, 0.8);
    /**
 * gradient color
 */
    --gradient: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    /**
 * typography
 */
    --ff-roboto: "Roboto", sans-serif;
    --ff-poppins: "Poppins", sans-serif;
    --fs-1: 4rem;
    --fs-2: 3.6rem;
    --fs-3: 3.2rem;
    --fs-4: 2.4rem;
    --fs-5: 2.2rem;
    --fs-6: 1.8rem;
    --fs-7: 1.6rem;
    --fw-800: 800;
    --fw-700: 700;
    --fw-600: 600;
    --fw-500: 500;
    /**
 * spacing
 */
    --section-padding: 120px;
    /**
 * shadow
 */
    --shadow-1: 4px 4px 15px var(--light-gray);
    --shadow-2: 0 10px 15px var(--light-gray);
    --shadow-3: 0px 20px 60px var(--light-gray);
    --shadow-4: 0px 10px 30px var(--gold-dark);
    --shadow-5: 0px 2px 60px 0px var(--light-gray);
    /**
 * border radius
 */
    --radius-6: 6px;
    --radius-4: 4px;
    /**
 * transition
 */
    --transition: 0.25s ease;
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}


/*-----------------------------------*\
#RESET
\*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a,
img,
span,
input,
button,
ion-icon {
    display: block;
}

img {
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input {
    width: 100%;
}

button {
    cursor: pointer;
}

ion-icon {
    pointer-events: none;
}

address {
    font-style: normal;
}

html {
    font-family: var(--ff-roboto);
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-size: 1.5rem;
}



/* loader */


/* Loader styles */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    visibility: visible;
    opacity: 1;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    width: 100px;
    /* Adjust logo size */
    height: auto;
    margin-bottom: 20px;
    animation: blink 1s linear infinite;
}


/* Blinking animation */

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}


/* Hide loader after loading */

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}


/* loader */

/* Google Map Styles */
.footer-map {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-map iframe {
    border: 1px solid var(--gold-dark); /* Adds a border matching your theme */
    border-radius: var(--radius-6); /* Adds rounded corners to the iframe */
    box-shadow: var(--shadow-2); /* Adds a subtle shadow around the iframe */
    width: 100%;
    max-width: 600px; /* Sets a maximum width for larger screens */
    height: 400px;
    transition: var(--transition);
}

/* Hover effect */
.footer-map iframe:is(:hover, :focus) {
    transform: scale(1.05); /* Slightly enlarges the map on hover */
    box-shadow: var(--shadow-4); /* Enhances the shadow on hover */
}

/* Media Queries for Responsiveness */
/* Center align the map for larger screens (laptops and desktops) */
@media (min-width: 992px) {
    .footer-map {
        display: flex;
        justify-content: center; /* Centers the map horizontally */
    }
    
    .footer-map iframe {
        max-width: 600px; /* Keeps the map size manageable */
        width: 100%; /* Ensures responsiveness */
        height: 200px; /* Height for larger screens */
    }
}

/* For screens smaller than 768px */
@media (max-width: 768px) {
    .footer-map iframe {
        max-width: 100%;
        height: 300px; /* Reduces the height on smaller screens */
    }
}

/* For screens smaller than 575px (mobile) */
@media (max-width: 575px) {
    .footer-map iframe {
        max-width: 100%;
        height: 250px; /* Further reduces the height for mobile */
    }
}

/* Google Map Styles */

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding);
    background-color: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

.reviews-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.review {
    padding: 20px;
    background-color: var(--black);
    border-radius: var(--radius-4);
    box-shadow: var(--shadow-3);
}

.review h3 {
    color: var(--gold);
    font-size: var(--fs-4);
    margin-bottom: 10px;
}

.review p {
    color: var(--white);
    font-size: var(--fs-6);
}

.review p:nth-child(2) {
    color: var(--gold-dark);
}

/* Reviews Section */

/* Appointment Popup Styles */
.appointment-popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
  }
  
  .appointment-popup-content {
    background-color: var(--dark-gray);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid var(--light-gray);
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-4);
    position: relative;
  }
  
  .close-popup {
    color: var(--gold);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close-popup:hover,
  .close-popup:focus {
    color: var(--gold-dark);
    text-decoration: none;
    cursor: pointer;
  }
  
  .appointment-popup-content h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
  }
  
  .appointment-popup-content label {
    display: block;
    color: var(--gold);
    margin-bottom: 5px;
  }
  
  .appointment-popup-content input,
  .appointment-popup-content select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-4);
  }
  
  .appointment-popup-content button {
    width: 100%;
    padding: 15px;
    background-image: var(--gradient);
    color: var(--black);
    font-size: var(--fs-6);
    border-radius: var(--radius-4);
  }
  
  .appointment-popup-content button:hover {
    background-color: var(--gold-dark);
  }
  
  .appointment-popup-content input[type="date"]::-webkit-calendar-picker-indicator,
  .appointment-popup-content input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
  }
  
  .appointment-popup-content select option {
    background-color: var(--black);
    color: var(--white);
  }
  /* End of Appointment Popup Styles */
  
/* Facebook Widget Styling */
.fb-page {
    background-color: var(--dark-gray) !important; /* Matches your theme's dark background */
    border: 1px solid var(--gold-dark) !important; /* Adds a gold border to match your theme */
    border-radius: var(--radius-6) !important;     /* Rounded corners */
    box-shadow: var(--shadow-3) !important;        /* Add a shadow for depth */
    padding: 10px !important;                      /* Adds padding inside the container */
    margin: 0 auto !important;                     /* Centers the div horizontally */
    display: block !important;                     /* Ensures the div behaves as a block element */
    width: 100% !important;                        /* Ensure full width */
    max-width: 500px !important;                   /* Set a max width to make the iframe fit properly */
}

/* Customize the iframe container */
.fb-page span {
    background-color: var(--dark-gray) !important; /* Ensure background matches theme */
    border-radius: var(--radius-6) !important;                /* Ensure rounded corners */
    width: 100% !important;                        /* Enforce full width */
    display: block !important;                                /* Ensures the span behaves as a block element */
    margin: 0 auto !important;                                /* Centers the content inside the span */
}

/* Enforce the iframe dimensions */
.fb-page iframe {
    width: 100% !important;          /* Force the iframe to take 100% width */
    height: 800px !important;        /* Maintain the height */
    border-radius: var(--radius-6) !important;  /* Add rounded corners */
    box-shadow: var(--shadow-3) !important;     /* Add a shadow for depth */
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
    .fb-page iframe {
        height: 600px !important; /* Reduce height for smaller screens */
    }
}

@media (max-width: 576px) {
    .fb-page iframe {
        height: 500px !important; /* Further reduce height for mobile devices */
    }
}
  /* Facebook Widget Styling END  */
/*-----------------------------------*\
#REUSED STYLE
\*-----------------------------------*/

.container {
    padding-inline: 25px;
}

.section {
    padding-block: var(--section-padding);
}

.section-subtitle {
    color: var(--gold);
    font-family: var(--ff-poppins);
    font-size: var(--fs-6);
    font-weight: var(--fw-700);
    text-transform: uppercase;
    margin-block-end: 10px;
}

.h1,
.h2,
.h3 {
    font-family: var(--ff-poppins);
    line-height: 1.2;
}

.h1 {
    color: var(--gold);
    font-size: var(--fs-2);
}

.h2,
.h3 {
    color: var(--gold-dark);
}

.h2 {
    font-size: var(--fs-1);
}

.h3 {
    font-size: var(--fs-5);
}

.btn {
    background-image: linear-gradient(var(--deg, 90deg), var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-size: var(--fs-7);
    text-transform: uppercase;
    padding: 20px 30px;
    text-align: center;
    border-radius: var(--radius-4);
    box-shadow: var(--shadow-4);
}

.btn:is(:hover, :focus) {
    --deg: -90deg;
    background-color: var(--gold-dark);
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.card-text,
.section-text {
    line-height: 1.7;
    color: var(--transparent-white);
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-gray);
}

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


/*-----------------------------------*\
#HEADER
\*-----------------------------------*/

.header-top,
.header-bottom .btn {
    display: none;
}

.header-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 15px;
    z-index: 4;
}

.header-bottom.active {
    position: fixed;
    top: -81px;
    background-color: var(--black);
    box-shadow: var(--shadow-2);
    animation: slideIn 0.5s var(--cubic-out) forwards;
}

@keyframes slideIn {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

.header-bottom>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.header-logo {
    width: 40px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
}

.nav-toggle-btn {
    color: var(--gold);
    font-size: 30px;
    border: 1px solid var(--gold);
    padding: 5px;
}

.nav-toggle-btn.active .menu-icon,
.nav-toggle-btn .close-icon {
    display: none;
}

.nav-toggle-btn .menu-icon,
.nav-toggle-btn.active .close-icon {
    display: block;
}

.navbar {
    position: absolute;
    top: calc(100% + 5px);
    left: 25px;
    right: 25px;
    background-color: var(--black);
    padding-inline: 0;
    box-shadow: var(--shadow-1);
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    transition: 0.25s var(--cubic-out);
}

.navbar.active {
    visibility: visible;
    max-height: 244px;
    transition-duration: 0.5s;
}

.navbar-list>li:not(:last-child) {
    border-block-end: 1px solid var(--light-gray);
}

.navbar-link {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: var(--fw-600);
    padding: 15px;
}


/*-----------------------------------*\
#HERO
\*-----------------------------------*/

.hero {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-block-end: calc(var(--section-padding) / 2);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    margin-block-end: 50px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-block-end: 50px;
}

.hero-title {
    margin-block: 15px 30px;
}

.hero-text {
    font-size: var(--fs-6);
    line-height: 1.45;
    margin-block-end: 40px;
}

.form-wrapper {
    display: flex;
    gap: 20px;
    /* Adjusts the space between the forms */
    justify-content: center;
    /* Centers the forms horizontally */
}

.form-wrapper {
    display: flex;
    gap: 20px;
    /* Space between the buttons */
    justify-content: center;
    /* Centers the buttons horizontally */
}

.form-wrapper .btn {
    padding: 15px 30px;
    /* Adjust padding to make the button fill the form */
    width: 100%;
    /* Ensure the button takes up the entire width */
    text-align: center;
    background-image: linear-gradient(var(--deg, 90deg), var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border-radius: var(--radius-4);
    box-shadow: var(--shadow-4);
}

.form-wrapper .btn:is(:hover, :focus) {
    --deg: -90deg;
    background-color: var(--gold-dark);
}


/*-----------------------------------*\
#SERVICE
\*-----------------------------------*/

.service-banner {
    display: none;
}

.service {
    padding-block-end: 0;
}

.service .section-title {
    margin-block-end: 50px;
}

.service-list {
    display: grid;
    gap: 15px;
}

.service-list li:last-child {
    display: flex;
    justify-content: center;
    grid-column: 1 / -1; 
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    min-height: 100%;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-4);
    padding: 30px;
    background-color: var(--dark-gray);
}

.service-card .card-icon {
    width: 50px;
    flex-shrink: 0;
}


/* bharat */

.service-card .card-icon img {
    filter: sepia(1) saturate(10) hue-rotate(15deg) brightness(1.2);
}


/* bharat */

.service-card .card-title {
    margin-block-end: 8px;
    color: var(--gold);
}


/*-----------------------------------*\
#ABOUT
\*-----------------------------------*/

.about {
    padding-block-end: 0;
}

.about-banner {
    margin-block-end: 50px;
}

.about .section-text-1 {
    margin-block: 25px 15px;
}

.about .btn {
    font-size: unset;
    max-width: max-content;
    margin-block-start: 30px;
    padding-inline: 15px;
}


/*-----------------------------------*\
#DOCTOR
\*-----------------------------------*/

.doctor .section-title {
    margin-block-end: 50px;
}

.doctor-card .card-banner {
    border-radius: var(--radius-4);
    overflow: hidden;
    margin-block-end: 25px;
}

.doctor-card {
    padding: 30px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-4);
    text-align: center;
    min-height: 100%;
    background-color: var(--dark-gray);
}

.doctor-card .card-title {
    font-size: var(--fs-4);
    transition: var(--transition);
    color: var(--gold);
}

.doctor-card:is(:hover, :focus-within) .card-title {
    color: var(--gold-dark);
}

.doctor-card .card-subtitle {
    color: var(--gold-dark);
    margin-block: 10px 15px;
}

.doctor-card .card-social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.doctor-card .card-social-link {
    background-color: var(--light-gray);
    color: var(--gold-dark);
    font-size: 16px;
    padding: 12px;
    border-radius: 50%;
    transition: var(--transition);
}

.doctor-card .card-social-link:is(:hover, :focus) {
    background-color: var(--gold-dark);
    color: var(--black);
}

.has-scrollbar {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    margin-inline: 15px;
    padding-block-end: 40px;
    margin-block-end: -20px;
    scroll-snap-type: inline mandatory;
}

.scrollbar-item {
    min-width: 100%;
    scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar {
    height: 10px;
}

.has-scrollbar::-webkit-scrollbar-track {
    background-color: var(--light-gray);
    border-radius: var(--radius-4);
}

.has-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--gold-dark);
    border-radius: var(--radius-4);
}

.has-scrollbar::-webkit-scrollbar-button {
    width: calc(25% - 30px);
}


/*-----------------------------------*\
#CTA
\*-----------------------------------*/

.cta {
    background-color: var(--gold-dark);
}

.cta-banner {
    margin-block-end: 50px;
}

.cta .section-subtitle {
    text-transform: capitalize;
    color: var(--black);
}

.cta .section-title {
    color: var(--black);
    font-size: var(--fs-3);
    margin-block-end: 30px;
}

.cta .btn {
    max-width: max-content;
    background-color: var(--black);
    color: var(--black);
}


/*-----------------------------------*\
#BLOG
\*-----------------------------------*/

.blog .section-title {
    margin-block-end: 50px;
}

.blog-list {
    display: grid;
    gap: 30px;
}

.blog-card {
    border-radius: var(--radius-4);
    box-shadow: var(--shadow-5);
    background-color: var(--dark-gray);
}

.blog-card .card-banner {
    position: relative;
    border-radius: var(--radius-4);
    overflow: hidden;
}

.blog-card .card-banner img {
    transition: var(--transition);
}

.blog-card:is(:hover, :focus-within) .card-banner img {
    transform: scale(1.1);
}

.blog-card .card-badge {
    background-color: var(--gold-dark);
    color: var(--black);
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    gap: 5px;
    padding: 10px 15px;
    border-radius: var(--radius-6);
}

.blog-card .card-content {
    padding: 30px;
}

.blog-card .card-title {
    transition: var(--transition);
    color: var(--gold);
}

.blog-card .card-title:is(:hover, :focus) {
    color: var(--gold-dark);
}

.blog-card .card-text {
    margin-block: 15px;
    color: var(--transparent-white);
}

.blog-card .card-link {
    position: relative;
    color: var(--gold-dark);
    font-weight: var(--fw-500);
    text-transform: uppercase;
    width: max-content;
    transition: var(--transition);
}

.blog-card .card-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gold-dark);
    transition: var(--transition);
}

.blog-card .card-link:is(:hover, :focus) {
    color: var(--gold);
}

.blog-card .card-link:is(:hover, :focus)::after {
    background-color: var(--gold);
}


/*-----------------------------------*\
#FOOTER
\*-----------------------------------*/

.footer-top {
    background-color: var(--black);
    color: var(--gold);
}

.footer-top .container {
    display: grid;
    gap: 30px;
}

.footer-brand .logo {
    color: var(--gold);
}

.footer-text {
    line-height: 1.6;
    margin-block: 15px;
}

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

.schedule-icon,
.footer-item .item-icon {
    background-image: var(--gradient);
    color: var(--black);
    font-size: 18px;
    padding: 11px;
    border-radius: 50%;
}

.schedule .span,
.footer-item .item-text {
    line-height: 1.6;
}

.footer-list-title {
    color: var(--gold);
    font-family: var(--ff-poppins);
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
    margin-block-end: 10px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-block: 10px;
    transition: var(--transition);
    color: var(--gold-dark);
}

.footer-link ion-icon {
    color: var(--gold-dark);
    --ionicon-stroke-width: 50px;
}

.footer-link:is(:hover, :focus) {
    color: var(--gold);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-item:not(:first-child) {
    margin-block-start: 20px;
}

.footer-bottom {
    background-color: var(--dark-gray);
    padding-block: 50px;
    text-align: center;
}

.copyright {
    color: var(--gold);
    line-height: 1.6;
    margin-block-end: 25px;
}

.footer .social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer .social-link {
    padding: 11px;
    background-color: hsla(0, 0%, 100%, 0.2);
    color: var(--gold);
    font-size: 18px;
    border-radius: 50%;
}

.footer .social-link:is(:hover, :focus) {
    background-image: var(--gradient);
}


/*-----------------------------------*\
#BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: var(--gold);
    font-size: 18px;
    color: var(--black);
    padding: 14px;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.back-top-btn.active {
    transform: translateY(-10px);
    visibility: visible;
    opacity: 1;
}


/*-----------------------------------*\
#MEDIA QUERIES
\*-----------------------------------*/


/**
* responsive for larger than 575px screen
*/

@media (min-width: 575px) {
    /**
 * CUSTOM PROPERTY
 */
     :root {
        /**
   * typography
   */
        --fs-1: 4.2rem;
    }
    /**
 * REUSED STYLE
 */
    .container {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }
    /**
 * BLOG
 */
    .blog-card .h3 {
        --fs-5: 2.6rem;
    }
    /**
 * FOOTER
 */
    .footer-top .container {
        grid-template-columns: 1fr 1fr;
    }
}


/**
* responsive for larger than 768px screen
*/

@media (min-width: 768px) {
    /**
 * CUSTOM PROPERTY
 */
     :root {
        /**
   * typography
   */
        --fs-2: 4.8rem;
    }
    /**
 * RESET
 */
    body {
        font-size: 1.6rem;
    }
    /**
 * REUSED STYLE
 */
    .container {
        max-width: 750px;
    }
    .section-subtitle {
        --fs-6: 2.2rem;
    }
    /**
 * HERO
 */
    .hero {
        overflow: hidden;
    }
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 0.75fr;
        align-items: center;
        gap: 20px;
    }
    .hero-content {
        margin-block-end: 0;
    }
    .hero-form {
        position: relative;
    }
    .hero-form .email-field {
        margin-block-end: 0;
        padding-inline-end: 190px;
    }
    .hero-form .btn {
        width: auto;
        position: absolute;
        top: 15px;
        right: 15px;
        bottom: 15px;
    }
    .hero-banner {
        margin-inline-end: -60px;
    }
    /**
 * SERVICE
 */
    .service-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }
    .service-list li:last-child {
        grid-column: span 2;
        display: flex;
        justify-content: center;
    }
    /**
 * DOCTOR
 */
    .scrollbar-item {
        min-width: calc(50% - 15px);
    }
    /**
 * CTA
 */
    .cta {
        padding-block: 0;
    }
    .cta .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: flex-end;
        gap: 60px;
    }
    .cta-banner {
        margin-block-end: 0;
    }
    .cta-content {
        padding-block: 60px;
    }
    /**
 * BLOG
 */
    .blog-list {
        grid-template-columns: 1fr 1fr;
    }
    /**
 * FOOTER
 */
    .footer-bottom {
        padding-block: 30px;
    }
    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .copyright {
        margin-block-end: 0;
    }
    /**
 * BACK TO TOP
 */
    .back-top-btn {
        bottom: 70px;
        right: 50px;
    }
}


/**
* responsive for larger than 992px screen
*/

@media (min-width: 992px) {
    /**
 * CUSTOM PROPERTY
 */
     :root {
        /**
   * typography
   */
        --fs-2: 6rem;
        --fs-1: 4.6rem;
        --fs-3: 4.6rem;
    }
    /**
 * REUSED STYLE
 */
    .container {
        max-width: 980px;
    }
    /**
 * HEADER
 */
    .header-top {
        display: block;
        background-color: var(--black);
        color: var(--gold);
        padding-block: 20px;
    }
    .header-top :is(.container, .social-list),
    .contact-list,
    .contact-item {
        display: flex;
        align-items: center;
    }
    .header-top .container {
        justify-content: space-between;
    }
    .contact-list {
        gap: 20px;
    }
    .contact-item {
        gap: 5px;
    }
    .contact-item ion-icon {
        color: var(--gold);
        --ionicon-stroke-width: 40px;
    }
    .contact-link {
        font-size: 1.5rem;
    }
    .header-top .social-list {
        gap: 15px;
    }
    .header-top .social-link {
        font-size: var(--fs-6);
        transition: var(--transition);
    }
    .header-top .social-link:is(:hover, :focus) {
        color: var(--gold);
    }
    .header-bottom {
        top: 58px;
        padding-block: 20px;
    }
    .header-bottom.active {
        top: -95px;
    }
    .nav-toggle-btn {
        display: none;
    }
    .navbar,
    .navbar.active {
        all: unset;
        margin-inline-start: auto;
    }
    .navbar-list {
        display: flex;
        align-items: center;
    }
    .navbar-list>li:not(:last-child) {
        border-block-end: none;
    }
    .navbar-link {
        color: var(--gold);
        font-family: var(--ff-poppins);
        text-transform: capitalize;
        transition: var(--transition);
    }
    .navbar-link:is(:hover, :focus) {
        color: var(--gold-dark);
    }
    .header-bottom .btn {
        display: block;
        padding: 15px 20px;
    }
    /**
 * SERVICE
 */
    .service-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-list li:last-child {
        grid-column: span 3; 
        display: flex;
        justify-content: center;
    }
    .service-banner {
        display: block;
        grid-column: 2 / 3;
        grid-row: 1 / 4;
        align-self: center;
    }
    /**
 * ABOUT
 */
    .about .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
    }
    .about-banner {
        margin-block-end: 0;
    }
    /**
 * DOCTOR
 */
    .scrollbar-item {
        min-width: calc(33.33% - 20px);
    }
    /**
 * CTA
 */
    .cta-content {
        padding-block: 80px;
    }
    /**
 * BLOG
 */
    .blog-list {
        grid-template-columns: repeat(3, 1fr);
    }
    /**
 * FOOTER
 */
    .footer-top .container {
        grid-template-columns: 1fr 0.5fr 0.6fr 0.75fr;
    }
}


/**
* responsive for larger than 1200px screen
*/

@media (min-width: 1200px) {
    /**
 * CUSTOM PROPERTY
 */
     :root {
        /**
   * typography
   */
        --fs-2: 8rem;
        --fs-1: 5.5rem;
        --fs-3: 4.8rem;
    }
    /**
 * REUSED STYLE
 */
    .container {
        max-width: 1180px;
    }
    /**
 * HEADER
 */
    .contact-list {
        gap: 30px;
    }
    .header-bottom .btn {
        padding: 18px 30px;
    }
    .header-bottom>.container {
        gap: 40px;
    }
    .navbar-list {
        gap: 15px;
    }
    /**
 * ABOUT
 */
    .about .container {
        grid-template-columns: 0.85fr 1fr;
        gap: 100px;
    }
    /**
 * DOCTOR
 */
    .doctor {
        padding-block-end: 180px;
    }
    .scrollbar-item {
        min-width: calc(25% - 22.5px);
    }
    .has-scrollbar {
        padding-block-end: 0;
        margin-block-end: 0;
    }
    /**
 * CTA
 */
    .cta .container {
        align-items: center;
    }
    .cta-banner {
        margin-block-start: -120px;
    }
}