/* ========== BEGIN: Google Fonts ========== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* ========== END: Google Fonts ========== */

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --tagline-font: "Pacifico", cursive;
    --primary-color: #FFFFFF;
    --secondary-color: #404042;
    --heading-color: #0A2540;
    --subheading-color: #1F2937;
    --tagline-color: #1FA2D6;
    --body-bg: #ECF3F8;
    --section-bg: #D7EAF6;
    --footer-bg: #0A2540;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--body-bg);
}

/* ========== BEGIN: Home Page Hero Section ========== */

.home-hero-section {
    background-image: url(../img/main-pg/hero-bg-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin: clamp(10px, 3vw, 30px);
}

.home-hero-desc .hero-heading {
    font-family: var(--primary-font);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.home-hero-desc .hero-text {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 3vw, 18px);
    color: var(--subheading-color);
    font-weight: 500;
    margin-top: 12px;
}

.home-hero-desc .hero-tagline {
    font-family: var(--tagline-font);
    font-size: clamp(20px, 3vw, 22px);
    color: var(--tagline-color);
    font-weight: normal;
    margin-top: 10px;
}

@media (max-width: 1024px){
    .home-hero-section {
        min-height: 520px;
    }
}

@media (max-width: 768px){
    .home-hero-section {
        min-height: 450px;
    }
}

/* ========== END: Home Page Hero Section ========== */

/* ========== BEGIN: Dental Practice Description Section ========== */

.practice-desc-section {
    margin: clamp(30px, 3vw, 50px) clamp(10px, 3vw, 30px);
    text-align: center;
}

.practice-desc .desc-heading {
    font-family: var(--primary-font);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--subheading-color);
    line-height: 1.2;
    margin-bottom: 0;
}

.practice-desc .desc-text {
    font-family: var(--secondary-font);
    color: var(--subheading-color);
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 400;
    margin-top: 12px;
}

/* ========== END: Dental Practice Description Section ========== */

/* ========== BEGIN: Clinic Leadership Section ========== */

.clinic-leadership-section {
    margin: clamp(30px, 3vw, 50px) clamp(10px, 3vw, 30px);
}

.leadership-heading {
    font-family: var(--primary-font);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--subheading-color);
    text-align: center;
    line-height: 1.2;
}

.leadership-person-row {
    margin-top: clamp(24px, 3vw, 30px);
}

.dr-waseem-farooq-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.dr-waseem-farooq-img img {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
    object-position: 50% 10%;
}

.mrs-sabahat-col {
    order: 2;
}

.dr-waseem-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dr-waseem-detail .dr-name-heading {
    font-family: var(--primary-font);
    font-size: clamp(21px, 3vw, 32px);
    font-weight: 600;
    color: var(--subheading-color);
    line-height: 1.2;
    margin-bottom: 12px;
}

.dr-waseem-detail .dr-desc {
    font-family: var(--secondary-font);
    color: var(--subheading-color);
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    margin-bottom: 12px;
    text-align: justify;  
}

.dr-detail-btn {
    font-family: var(--secondary-font);
    color: var(--body-bg);
    background-color: var(--tagline-color);
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 400;
    width: 150px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    text-decoration: none;
    border: 2px solid var(--tagline-color);
    transition: all 0.3s ease;
}

.dr-detail-btn:hover {
    background-color: var(--body-bg);
    border: 2px solid var(--tagline-color); 
    color: var(--tagline-color);
    font-weight: 400;
}

@media (max-width: 767px){
    .dr-waseem-detail {
        margin-top: 24px;
        align-items: center;
    }

    .mrs-sabahat-col {
        order: 1;
    }

    .mrs-sabahat-desc {
        order: 2;
    }
}

@media (max-width: 475px){
    .dr-waseem-farooq-img,
    .dr-waseem-farooq-img img {
        height: 450px;
    }   
}

@media (max-width: 375px){
    .dr-detail-col {
        padding: 0;
    }

    .dr-waseem-farooq-img,
    .dr-waseem-farooq-img img {
        height: 400px;
    }   
}

/* ========== END: Clinic Leadership Section ========== */

/* ========== BEGIN: Treatment Cards Section ========== */

.treatment-cards-section {
    padding-top: clamp(30px, 3vw, 50px);
    padding-bottom: clamp(30px, 3vw, 50px);
    background-color: var(--primary-color);
}

.treatment-cards-main-row {
    margin-top: clamp(24px, 3vw, 30px);
}

.treatment-card-link {
    text-decoration: none;
    color: var(--secondary-color);
}

.treatment-type-card {
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 #d6e4ee, 0 6px 20px 0 #c0c0c0;
    border: none;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.treatment-type-card .card-img-box img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: all 0.3s ease;
}

.treatment-type-card .tooth-icon-box {
    background-color: var(--tagline-color);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
    top: -38px;
    z-index: 1000;
    margin-bottom: -30px;
    transition: all 0.3s ease;
}

.treatment-type-card .tooth-icon-box i {
    color: var(--primary-color);
}

.treatment-type-card .card-body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 0.3s ease;
}

.treatment-type-card .card-body .card-title {
    font-family: var(--primary-font);
    font-weight: 700;
}

.treatment-type-card .card-body .card-text {
    font-family: var(--secondary-font);
    font-size: 13px;
    font-weight: 500;
}

.treatment-card-link:hover .treatment-type-card .card-img-box img {
    transform: scale(1.1);
}

.treatment-card-link:hover .tooth-icon-box {
    background-color: var(--primary-color);
}

.treatment-card-link:hover .tooth-icon-box i {
    color: var(--tagline-color);
}

.treatment-card-link:hover .treatment-type-card .card-body {
    background-color: var(--tagline-color);
}

.treatment-card-link:hover .treatment-type-card .card-body h5,
.treatment-card-link:hover .treatment-type-card .card-body p {
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .treatment-type-card {
        min-height: 350px;
    }

    .treatment-type-card .card-img-box img {
        max-height: 135px;
    }
}

/* ========== END: Treatment Cards Section ========== */

/* ========== BEGIN: Clinic Contact Buttons Section ========== */

.contact-btns-section {
    /* background-color: var(--tagline-color); */
    padding-top: clamp(30px, 3vw, 50px);
    padding-bottom: clamp(30px, 3vw, 50px);
}

.team-contact-btn-row {
    margin-top: 15px;
}

.team-contact-btn {
    font-family: var(--secondary-font);
    color: var(--primary-color);
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 400;
    text-decoration: none;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background-color: var(--subheading-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--subheading-color);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.team-contact-btn:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--subheading-color);
    color: var(--subheading-color);
}

/* ========== END: Clinic Contact Buttons Section ========== */

/* ========== BEGIN: Approach Steps Section ========== */

.approach-steps-section {
    background-color: var(--primary-color);
    padding-top: clamp(30px, 3vw, 50px);
    padding-bottom: clamp(30px, 3vw, 50px);    
}

.approach-section-row {
    margin-top: clamp(20px, 3vw, 30px);
}

.approach-section .container-fluid .container .approach-section-row div{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.approach-section .container-fluid .container .approach-section-row div{
    padding: 0 20px;
}

.approach-section .container-fluid .container .approach-section-row div .approach-card{
    margin-bottom: 1.25rem; /* 20px */
}

.approach-section .container-fluid .container .approach-section-row div .approach-card .approach-number{
    font-family: "Open Sans", sans-serif;
    font-size: 5rem;
    background-color: var(--tagline-color);
    width: 8.75rem;
    aspect-ratio: 1/1;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid black;
    color: white;
    -webkit-text-stroke: 2px black;
    font-weight: bold;
    margin-bottom: 1.563rem;
}

.approach-section .container-fluid .container .approach-section-row div .approach-card .approach-title{
    font-family: var(--primary-font);
    font-size: 1.5rem;
}

.approach-section .container-fluid .container .approach-section-row div .approach-card .approach-text{
    font-family: var(--secondary-font);
    font-size: 0.938rem;
}

/* ========== END: Approach Steps Section ========== */

/* ========== BEGIN: Dental Team Section ========== */

.dental-team-section {
    padding-top: clamp(30px, 3vw, 50px);
    padding-bottom: clamp(30px, 3vw, 50px); 
}

.dental-team-heading {
    margin-bottom: 24px;
}

.dental-team-card-link {
    text-decoration: none;
}

.dental-team-card .card {
    width: 100%;
    min-height: 520px;
    margin-bottom: 12px;
}

.dental-team-card .card .card-img {
    padding: 10px;
}

.dental-team-card .card img {
    height: 300px;
    object-fit: cover;
    object-position: 50% 10%;
    border-radius: 6px;
}

.dental-team-card .card .card-body .card-title {
    font-family: var(--primary-font);
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 700;
    margin-bottom: 12px;
}

.dental-team-card .card .card-body .card-title span {
    font-size: clamp(14px, 3vw, 16px);
}

.dental-team-card .card .card-body p {
    font-family: var(--secondary-font);
    font-weight: 400;
    margin-top: 12px;
}

@media (min-width: 992px) and (max-width: 1399px) {
    .dental-team-card .card {
        min-height: 560px;
    }
}

@media (max-width: 575px){
    .dental-team-card .card img {
        height: 475px;
    }    
}

/* ========== END: Dental Team Section ========== */

/* ========== BEGIN: Google Reviews Section ========== */

.google-reviews {
    background-color: var(--primary-color);
    padding-top: clamp(30px, 3vw, 50px);
    padding-bottom: clamp(30px, 3vw, 50px); 
}

.laRVHa {
    color: var(--subheading-color) !important;
}

/* ========== END: Google Reviews Section ========== */

/* ========== BEGIN: Get In Touch Section ========== */

.get-in-touch-section {
    padding-top: clamp(30px, 3vw, 50px);
    padding-bottom: clamp(30px, 3vw, 50px);     
}

.get-in-touch-form {
    margin-top: 12px;
}

.get-in-touch-form h2 {
    font-family: var(--primary-font);
    text-align: left;
}

.get-in-touch-form p,
.get-in-touch-form form {
    font-family: var(--secondary-font);
}

.get-in-touch-form form {
    margin-top: 24px;
}

.get-in-touch-btn {
    background-color: var(--tagline-color);
    border: 2px solid var(--tagline-color);
    transition: all 0.3s ease;
}

.get-in-touch-btn:hover {
    background-color: var(--primary-color);
    border: 2px solid var(--tagline-color);
    color: var(--tagline-color);
}

.clinic-map {
    margin-top: 12px;
}

/* ========== END: Get In Touch Section ========== */