* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: var(--font1);
    scroll-behavior: smooth;
    transition: all 0.4s;
}

:root {
    --color1: #099AA7;
    /*Font-color */
    --color2: #F7FAFB;
    /*font-color / background-color */
    --color3: #1F2F31;
    /*font-color */
    --color4: #deeaeb;
    /*background-color */
    --color5: #FBBF24;
    /*star-color */
    --color6: #FFFFFF;
    /*background-color */
    --color7: #000;
    /*font-color */
    --font1: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font2: "Ubuntu", sans-serif;
    --font3: "Poppins", sans-serif;
    --font4: "Font Awesome 7 Free";
    --font5: "Font Awesome 7 Brands"
        --p-high:55px --p-mid:40px --p-mid2:30px --p-mid3:25px --p-low:10px
}

p {
    font-size: 16px;
    color: #949191;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font2);
}


.section-info {
    width: 100%;
    height: auto;
    text-align: center;
}

.section-info h2 {
    font-size: 40px;
    font-weight: 400;
    color: var(--color3);
}

.section-info p {
    font-size: 17px;
    font-weight: 600;
    color: #363F40;
    padding: 20px;
}


header {
    width: 100%;
    height: auto;
    padding: 20px 0;
    position: fixed;
    background-color: transparent;
    z-index: 5;
    transition: all 0.4s;
}

button {
    cursor: pointer;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}


.container {
    width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.logo {
    color: var(--color7);
    font-size: 25px;
    font-family: garamond;
    font-weight: 750;
}

.logo span {
    color: var(--color1);
}

header.sticky {
    box-shadow: 2px 2px 10px #cdcdcd;
    background-color: var(--color6);
    backdrop-filter: blur(60%);
}

header.sticky .logo {
    color: var(--color7);
}

header.sticky .logo span {
    color: var(--color1);
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header.sticky nav ul li a {
    color: var(--color7);
}

header.sticky nav ul li a:hover {
    color: var(--color1);
}


nav ul li a {
    display: flex;
    color: var(--color7);
    font-size: 17px;
    font-weight: 600;
    padding: 10px 0px;
}

nav ul li a:hover {
    color: var(--color1);
}

.more1 li a {
    font-size: 15px;
}

.more1 {
    width: 260px;
    display: none;
    padding: 15px 0;
}


.list1:hover .more1 {
    display: flex;
    position: fixed;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
}

.more2 li a {
    font-size: 15px;
}

.more2 {
    width: 200px;
    display: none;
}

.list2:hover .more2 {
    display: block;
    display: flex;
    position: fixed;
    z-index: 5;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
}

.container nav ul li button {
    width: 130px;
    height: auto;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--color1);
    border: none;
    border-radius: 5px;
    margin-left: 50px;
    color: var(--color2);
}

.container nav ul li button:hover {
    background-color: #1bb6c4;
}



#hero-section {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background-color: var(--color6);
    position: relative;
}

.hero-container {
    width: 1280px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 0;
}

.hero_image {
    width: 80%;
    height: auto;
    object-fit: cover;
    position: relative;
    top: 145px;
    border-radius: 40px;
}

.hero_image img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    transition: all 0.4s;
    cursor: pointer;
    transform: rotate(-3deg);
    object-fit: cover;
    overflow: hidden;
}

.hero_image img:hover {
    transform: rotate(0deg);
    transform: scale(1.02);
}

.hero-img-contact {
    width: 280px;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--color2);
    padding: 25px 15px;
    border-radius: 20px;
    gap: 15px;
    position: relative;
    top: -520px;
    left: -30px;
    border: 0.2px solid #b7e6eb;
}

.hero-img-icon {
    width: 90px;
    height: auto;
    background-color: var(--color4);
    padding: 15px;
    border-radius: 10px;
}

.hero-img-icon i {
    font-size: 30px;
    color: var(--color1);
}

.hero-img-details {
    width: 380px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.span1 {
    color: #868686;
    font-weight: 600;
    font-size: 13px;
}

.span2 {
    color: var(--color7);
    font-weight: 700;
    font-size: 19px;
}

.hero-img-exp {
    width: 280px;
    height: auto;
    display: flex;
    background-color: var(--color2);
    justify-content: space-between;
    gap: 20px;
    padding: 20px 10px;
    border-radius: 20px;
    position: relative;
    top: -260px;
    left: 300px;
    border: 0.2px solid #b7e6eb;
}

.box1 {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.box2 {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.span6,
.span3 {
    color: var(--color1);
    font-size: 40px;
}

.span5,
.span4 {
    font-size: 16px;
    color: #949191;
}

.hero_content {
    width: 100%;
    height: auto;
    padding: 10px 0;
}


.hero_content h3 {
    width: 50%;
    height: auto;
    padding: 10px 20px;
    font-size: 19px;
    background-color: var(--color1);
    color: var(--color2);
    border-radius: 50px;
    text-align: center;
    position: relative;
    top: -70px;
    right: 20px;
}

.hero_content h1 {
    font-size: 60px;
    padding-right: 0px;
    position: relative;
    top: -30px;
    font-family: var(--font2);
}

.hero_content p {
    font-size: 18px;
    color: #636161;
    position: relative;
    padding-right: 18px;
    top: 15px;
}

.hero-exp {
    width: 100%;
    margin: auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.hero-exp-box {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 60px;
}

.hero-exp-icon {
    width: 70px;
    height: auto;
    padding: 15px;
    background-color: var(--color4);
    font-size: 35px;
    color: var(--color1);
    align-content: center;
    border-radius: 20px;
    text-align: center;
}

.hero-exp-content {
    display: flex;
    flex-direction: column;
}

.hero-no {
    font-size: 30px;
    font-weight: 600;
    font-family: var(--font2) !important;
}

.hero-btn {
    width: 100%;
    height: auto;
    padding: 20px 0;
    display: flex;
    gap: 30px;
    position: relative;
    top: 95px;

}

.hero-btn button {
    width: 230px;
    height: auto;
    padding: 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

.hero-btn1 button {
    background-color: var(--color1);
    color: var(--color2);
    border: none;
    transition: all 0.4s;
}

.hero-btn1:hover button {
    transform: translateY(-3px);
    box-shadow: 0px 10px 20px #45aab1b6;
}

.hero-btn2 button {
    padding: 18px !important;
    border: 1px solid #dedbdb;
    transition: all 0.4s;
}

.hero-btn2 button i {
    margin-right: 10px;
    font-size: 18px
}

.hero-btn2:hover button {
    background-color: var(--color1);
    color: var(--color2);
}

.hero-contact {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 15px;
    position: relative;
    top: 140px;
}

.hero-contact-box {
    margin-left: 15px;
    transition: all 0.4s;
}

.hero-contact-box span {
    color: #737272;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s;

}

.hero-contact-box a i {
    color: var(--color1);
    margin: 0 5px;
    font-size: 21px;
}

.hero-contact-box:hover {
    transform: translateX(10px);
}

.hero-contact-box:hover.hero-contact-box span {
    color: var(--color1);
}



#about {
    width: 100%;
    height: auto;
    padding: 70px 0;
    background-color: var(--color6);
}

#about .section-info h2 {
    color-scheme: linear-gradient(to right, var(--color1), var(--color3));
    overflow: hidden;
}

#about .section-info p {
    padding: 30px 480px;
}

.about-container {
    width: 1280px;
    margin: auto;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 40px;
}

.about-box1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.about-box2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 25px;
}

.box-img1 {
    width: 95%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.box-img1:hover img {
    transform: scale(1.09);
}


.about-box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-right: 20px;
    transition: all 0.6s;
}


.box-img {
    width: 50%;
    height: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
}

.imgg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 20px;
}

.imggg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.about-box1 img:hover {
    transform: scale(1.1);
}

.about-content1 {
    width: 100%;
    height: 35%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    background-color: #ffffff;
    padding: 50px 20px;
    border-radius: 20px;
    border-left: 5px solid var(--color1);
    box-shadow: 8px 8px 15px #363f400d;
    position: relative;
    top: -60px;
}

.about-content1 span i {
    width: 20px;
    height: auto;
    padding: 15px 20px;
    background-color: var(--color4);
    font-size: 25px;
    color: var(--color1);
    border-radius: 15px;
}

.about-content1 span h3 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
}

.about-content2 {
    width: 100%;
    height: auto;
    position: relative;
    top: -35px;
}

.about-content2 p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #7a7979;
}

.about-content2 p i {
    color: var(--color1);
    margin-right: 12px;
    font-size: 20px;
}


.about-content3 {
    width: 100%;
    height: auto;
    padding: 0 15px;
    display: flex;
    text-align: center;
    gap: 50px;
    position: relative;
    top: -20px;
}

.about-content3 span h3 {
    color: var(--color1);
    font-size: 45px;
    font-weight: 300 !important;
    padding: 5px 0;
}

.about-content3 span span {
    font-size: 16px;
    font-weight: 600;
    color: #9c9999;
}


.about-content4 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    top: 40px;
}

.about-btn1 {
    width: 100%;
    height: auto;
    text-align: center;

}

.about-btn2 {
    width: 100%;
    height: auto;
    text-align: center;
}

.about-btn1:hover button {
    transform: translateY(-7px);
    box-shadow: 2px 2px 20px #88e8f0;
    background-color: #248a93;
}

.about-btn2:hover button {
    transform: translateY(-2px);
    border: 2px solid #1bb6c4;
    color: #1bb6c4;
}

.about-btn1 button {
    width: 100%;
    height: auto;
    background-color: var(--color1);
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color2);
    transition: all 0.6s;
}

.about-btn2 button {
    width: 100%;
    height: auto;
    background-color: var(--color2);
    padding: 13px;
    border: 2px solid #d8d7d7;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color7);
    transition: all 0.4s;
}

.about-btn2 button i {
    margin-right: 10px;
    font-size: 20px;
    color: var(--color1);
}


#department {
    width: 100%;
    height: auto;
    padding: 40px 0;
}

.department-container {
    width: 1280px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
}


.department-box1 {
    width: 80%;
    height: auto;
}

.department-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.4s;

}

.department-image:hover img {
    transform: scale(1.05);
}

.department-image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.department-image span {
    width: 94%;
    height: 92%;
    border: 20px solid var(--color1);
}

.department-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.department-box span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.department-box h2 {
    font-size: 45px;
    padding-right: 20px;
    font-weight: 300;
    color: var(--color3);
    letter-spacing: 1.5px;
}

.department-box p {
    font-size: 19px;
    color: #706f6f;
    padding-right: 60px;
    line-height: 1.8;
}

.department-content {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 12px;
}



.department-content i {
    color: var(--color1);
    margin-right: 10px;
}

.department-content p {
    font-size: 17px;
    color: #6b6a6a;
    font-weight: 450;
}

.department-box a button {
    width: 160px;
    height: auto;
    padding: 15px;
    border: none;
    background-color: transparent;
    border-radius: 10px;
    color: var(--color7);
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s;
}

.department-box a button i {
    font-size: 16px;
}

.department-box a button:hover i {
    transform: translateX(5px);
    color: var(--color1);
}

.department-box a button:hover {
    color: var(--color1);
}

#department-details {
    width: 100%;
    height: auto;
    padding: 70px 0;
    background-color: var(--color6);
}

.department-details-container {
    width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-content: space-between;

}

.department-details-box {
    width: 100%;
    height: auto;
    padding: 30px 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    transition: all 0.4s;
    background-color: var(--color6);
    overflow: hidden;
    gap: 10px;
    margin-top: -25px !important;
}

.department-details-box .border {
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background-image: linear-gradient(to right, var(--color1), var(--color6));
}

.department-details-box:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 20px #dcdbdb;
}

.department-details-box:hover .border {
    width: 100%;
    transition: all 0.4s ease-out;
}

.icon {
    margin-top: 20px;
}

.icon i {
    width: 80px;
    height: auto;
    padding: 24px;
    font-size: 30px;
    color: var(--color1);
    background-color: var(--color4);
    border-radius: 50px;
    align-items: center;
}

.department-details-box h3 {
    font-size: 24px;
    font-weight: 500;
    padding-top: 30px;
    color: var(--color3);
}

.department-details-box p {
    font-size: 17px;
    color: #6b6a6a;
    line-height: 1.6;
}

.percentages {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 25px;
    text-align: center;
    padding-top: 20px;
}

.percentages span {
    color: var(--color1);
    font-size: 25px;
    font-weight: 500;
}

.percentages p {
    font-size: 12px;
    color: #7a7979;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}




#cta {
    width: 100%;
    height: auto;
    padding-top: 40px;
    padding-bottom: 80px;
    background-color: var(--color6);
    text-align: center;
}

.cta-container {
    width: 1280px;
    margin: auto;
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--color2);
}

.cta-container h2 {
    font-size: 35px;
    color: var(--color3);
    font-weight: 300 !important;
}

.cta-container p {
    font-size: 18px;
    color: #6b6a6a;
    padding: 0 350px;
    line-height: 1.8;
}

.cta-container button {
    width: 240px;
    height: auto;
    margin-top: 20px;
    padding: 18px 15px;
    border: none;
    background-color: var(--color1);
    color: var(--color2);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--color1);
    cursor: pointer;
    transition: all 0.4s;
}

.cta-container button:hover {
    transform: translateY(-3px);
    color: var(--color1);
    background-color: var(--color2);
}

#Service {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background-color: var(--color6);
}

.service-container {
    width: 1280px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 5px 15px #d6d6d6;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 10px 10px 20px #d6d6d6;
}

.service-box:hover .service-image img {
    transform: scale(1.05);
}

.service-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.4s;
}

.service-image i {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--color2);
    background-color: var(--color1);
    text-align: center;
    padding-top: 20px;
    border-radius: 50%;
    z-index: 4;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
    filter: brightness(85%);
}

.service-content {
    width: 100%;
    height: auto;
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(#ffffff, #f8f9fa);
    gap: 15px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--color3);
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    color: #515151;
    line-height: 1.6;
}

.service-content a {
    width: 110px;
    font-size: 16px;
    color: var(--color1);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
}

.service-content a:hover {
    color: var(--color7);
}

.service-content a:hover i {
    transform: translateX(10px);
    color: var(--color7);
}


#doctor {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background-color: var(--color6);
}

.doctor-container {
    width: 1280px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.doctor-box_1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s;
}

.doctor-box_1 h3 {
    font-size: 42px;
    color: var(--color3);
    font-weight: 600;
    padding: 15px 0;
}

.doctor-box_1 p {
    width: 40%;
    font-size: 18px;
    color: #6b6a6a;
    padding: 10px 0;
    text-align: center;
    line-height: 1.8;
}


.doctor-search {
    max-width: 1100px;
    margin: 80px auto;
    padding: 32px 36px;
    background: linear-gradient(180deg, #ffffff, #f9fbfd);
    border-radius: 22px;
    display: flex;
    align-items: flex-end;
    gap: 22px;
    box-shadow:
        0 20px 50px rgba(2, 132, 199, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Soft glow accent */
.doctor-search::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(90deg, #0ea5a4, #0284c7);
    opacity: 0.06;
    pointer-events: none;
}

.search-group {
    flex: 1;
    position: relative;
}

.search-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.input-box {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all 0.35s ease;
}

.input-box .icon {
    font-size: 16px;
    color: #94a3b8;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.input-box input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #0f172a;
    background: transparent;
}

.input-box input::placeholder {
    color: #9ca3af;
}

/* Focus magic */
.input-box:focus-within {
    border-color: #0ea5a4;
    box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.15);
    transform: translateY(-1px);
}

.input-box:focus-within .icon {
    color: #0ea5a4;
}

/* Submit Button */
.search-btn {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #0ea5a4, #0284c7);
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
        0 12px 30px rgba(2, 132, 199, 0.35);
    transition: all 0.35s ease;
}

.search-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 18px 40px rgba(2, 132, 199, 0.45);
}

.search-btn:active {
    transform: translateY(0) scale(1);
    box-shadow:
        0 8px 20px rgba(2, 132, 199, 0.3);
}


.doctor-box_2 {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    transition: all 0.4s;
}

.doctor-minibox {
    width: 30%;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    margin-top: 15px;
    box-shadow: 5px 5px 15px #d6d6d6;
    transition: all 0.35s ease;
}

.doctor-minibox:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(2, 132, 199, 0.18);
}

/* ================= IMAGE ================= */

.doctor-image {
    position: relative;
    width: 100px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

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

.status-dot {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* ================= TEXT ================= */



.minibox-contact {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.minibox-text {
    width: 100%;
    height: auto;
}

.minibox-contact h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.specialist {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
}

.doctor-meta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    background: #0ea5a529;
    color: var(--color1);
    border-radius: 999px;
}

.experience {
    font-size: 13px;
    color: #64748b;
}

/* ================= RATING ================= */

.minibox-rating {
    margin: 16px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars i {
    color: #facc15;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.rating-text small {
    color: #94a3b8;
    font-weight: 400;
}

/* ================= BUTTONS ================= */

.minibox-button {
    display: flex;
    gap: 12px;
}

.minibox-button button {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #0f172a;
}

.btn-outline:hover {
    background: #f1f5f9;
}

.btn-primary {
    background: #0ea5a4;
    border: none;
    color: #ffffff;
}

.btn-primary:hover {
    background: #0284c7;
}

.doctor-end-button {
    width: 260px;
    margin: auto;
    text-align: center;
    margin-top: 40px;
}

.doctor-end-button a {
    width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--color2);
    color: var(--color1);
    border: 1px solid var(--color1);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
}

.doctor-end-button a:hover {
    background-color: var(--color1);
    color: var(--color2);
    box-shadow: 0px 10px 20px #45aab1b6;
}


.doctor-end-button:hover {
    transform: translateY(-10px);
}



#call-to-action {
    width: 100%;
    height: auto;
    padding: 0;
    background-color: var(--color2);
}

.call-to-action-container {
    width: 1280px;
    margin: auto;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
}

.call-to-action-box1 {
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.call-to-action-content-box {
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.call-to-action-content-box h3 {
    font-size: 45px;
    color: var(--color3);
    font-weight: 400 !important;
}

.call-to-action-content-box p {
    font-size: 18px;
    color: #6b6a6a;
    line-height: 1.5;
}

.call-to-action-button {
    width: 80%;
    height: auto;
    display: flex;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
}


.call-to-action-button a {
    width: 100%;
    height: auto;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--color1);
    color: var(--color2);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: all 0.4s;
}

.call-to-action-button2 {
    background-color: transparent !important;
    color: var(--color1) !important;
    transition: all 0.4s;
    font-size: 18px;
}

.call-to-action-button1:hover {
    transform: translateY(-10px);
    background-color: #248a93;
    box-shadow: 0px 10px 20px #45aab1b6;
}

.call-to-action-button2 i {
    font-size: 18px;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.4s;
}




.call-to-action-image-box {
    width: 50%;
    height: 45vh;
    max-height: 50vh !important;
    background-color: var(--color4);
    border-radius: 15px;

}

.call-to-action-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    bottom: -20px;
    right: -20px;
}


.call-to-action-box2 {
    width: 100%;
    height: auto;
    margin-top: 150px;
    display: flex;
    align-items: center;
}


.counter-box {
    width: 100%;
    height: auto;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #dcdcdccb;
    border-bottom: 1px solid #dcdcdccb;
}

.counter-box p {
    font-size: 40px;
    color: var(--color1);
}

.counter-box span {
    font-size: 14px;
    color: #7a7979;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.call-to-action-box3 {
    width: 100%;
    height: auto;
    margin: 100px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-to-action-services {
    width: 100%;
    height: auto;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    background-color: var(--color6);
    gap: 20px;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #dcdcdc9c;
}

.call-to-action-services:hover {
    box-shadow: 10px 10px 20px #2020200f;
}

.call-to-action-services:hover i {
    color: var(--color4);
    background-color: var(--color1);
}

.call-to-action-services i {
    width: 80px;
    height: 80px;
    padding: 20px;
    background-color: var(--color4);
    font-size: 30px;
    color: var(--color1);
    align-content: center;
    border-radius: 100%;
    text-align: center;
}

.call-to-action-services h3 {
    font-size: 22px;
    color: var(--color3);
    font-weight: 600;
}

.call-to-action-services p {
    font-size: 16px;
    color: #6b6a6a;
    line-height: 1.6;
}

.call-to-action-services a {
    width: 140px;
    height: auto;
    padding: 12px;
    border: none;
    background-color: transparent;
    border-radius: 10px;
    color: var(--color1);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s;
}

.contact-banner {
    width: 100%;
    height: auto;
    padding: 50px 20px;
    background-color: var(--color1);
    border-radius: 10px;
}

.banner-content {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #25a2ad;
    padding: 10px;
    border-radius: 100%;
    text-align: center;
}

.contact-icon i {
    font-size: 25px;
    color: var(--color2);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text h4 {
    color: var(--color2);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--color2);
    font-size: 16px;
    font-weight: 600;
}

.contact-actions {
    width: 45%;
    height: auto;
    display: flex;
    gap: 15px;
}

.contact-actions a {
    width: auto;
    height: auto;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: var(--color2);
    color: var(--color1);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: all 0.4s;
}

.contact-actions-text {

    width: auto;
    height: auto;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: transparent !important;
    color: var(--color2) !important;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: all 0.4s;
}

footer {
    width: 100%;
    height: auto;
    padding: 40px 0;
    background-color: var(--color6);
    border-top: 1px solid #dcdcdc9c;
}

.footer-container {
    width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    gap: 20px;
}

.footer-box1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo h3 {
    font-size: 28px;
    color: var(--color3);
    font-weight: 600;

}

.footer-box1 span {
    font-size: 14px;
    color: #6b6a6a;
    line-height: 1.6;
}

.footer-box1 p {
    font-size: 14px;
    color: #6b6a6a;
}

.footer-box1 p strong {
    color: #000;
    font-weight: 700;
}

.footer-socials {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-top: 10px;
}

.footer-social i {
    width: 40px;
    height: 40px;
    padding: 10px 13px;
    border: 1px solid #0000006c;
    font-size: 14px;
    color: #00000087;
    align-items: center;
    border-radius: 100%;
    text-align: center;
    transition: all 0.4s;
}

.footer-social i:hover {
    color: var(--color1);
    border: 1px solid var(--color1);
}

.footer-box2 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-box2 h3 {
    font-size: 16px;
    color: var(--color3);
    font-weight: 600;
}

.footer-box2 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-box2 ul li a {
    font-size: 14px;
    color: #6b6a6a;
    transition: all 0.4s;
}


.footer-box2 ul li a:hover {
    color: var(--color1);
}


#footer-end {
    width: 100%;
    height: auto;
    border-top: 1px solid #dcdcdc9c;
    padding: 20px 0;
    background-color: var(--color6);
    text-align: center;
}


#footer-endainer p b {
    color: #000;
}

#footer-end p {
    font-size: 14px;
    color: #6b6a6a;
}

#footer-end p .name {
    color: var(--color1);
    font-weight: 600;
    transition: all 0.4s;
}
