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


html,
body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    overflow-x: hidden;

}


ul li a {
    text-decoration: none;
    list-style: none;
    color: rgba(11, 49, 64, 1);
}

ul li a:hover {
    color: #207FA7;
}


header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

header.scrolled {
    position: fixed !important;
    background: white;
    box-shadow: 0 4px 12px rgba(87, 85, 85, 0.08);
    padding: 8px 0;
}

header.scrolled .header-cnt {
    margin-top: 0;
    border-radius: 0;
    background: transparent;
    padding: 15px 30px;
    transition: 0.3s ease;
}



.header-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    margin: 0;
}

.header-cnt {
    display: flex;
    justify-content: space-between;
    background: rgb(255, 255, 254);
    margin-top: 33px;
    padding: 13px 30px;
    border-radius: 100px;
    align-items: center;
}

.btn-10 {
    position: relative;
    z-index: 0;
    background: linear-gradient(99deg, rgba(32, 127, 167, 1), rgba(33, 167, 125, 1));
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 100px;
    padding: 10px 25px;
}

.btn-10:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    transform: scale(.1);
    border-radius: 100px;
}

.btn-10:hover {
    color: #fff;
    background: transparent;
}

.btn-10:hover:after {
    background: linear-gradient(99deg, rgba(32, 127, 167, 1), rgba(33, 167, 125, 1));
    transform: scale(1);
}

/* =======TOGGLE-BT======= */
.toggle-btn {
    width: 26px;
    height: 21px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 100px;
}

.toggle-btn span {
    width: 100%;
    height: 3px;
    background: #12526c;
    border-radius: 4px;
    transition: 0.3s;
}

.toggle-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.toggle-btn.active span:nth-child(2) {
    opacity: 0;
}

.toggle-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.toggle-btn.active span {
    background: #d5d4d4 !important;
}

.mobile-contact {
    display: none;
}

.header-nav.show .mobile-contact {
    display: block;
    margin-top: 30px;
    text-align: center;
}

.toggle-btn.active {
    position: fixed;
    top: 30px;
    /* adjust if needed */
    right: 30px;
    /* keeps it at right side */
    z-index: 1002;
    /* above menu */
}

/* ===========FIXED BUTTON========== */

.fixed-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}


.whatsapp-icon,
.call-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.whatsapp-icon {
    background: linear-gradient(99deg, rgb(22 156 114), rgba(32, 127, 167, 1));
    /* border: solid 2px #fbfcfd; */
}


.call-icon {
    background: linear-gradient(186deg, #007C9D, rgb(94 126 177));
    /* border: solid 2px #fbfcfd; */
}


.whatsapp-icon,
.call-icon {
    position: relative;
    overflow: hidden;
}

.whatsapp-icon::before,
.call-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.whatsapp-icon:hover::before,
.call-icon:hover::before {
    left: 120%;
}



/* .menu-img{
    display: none;
} */

/* HERO */
#hero {
    background: url(../images/hero_banner.webp);
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    position: absolute;
    bottom: 109px;
    left: 80px;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: rgba(7, 77, 100, 1);
    margin-bottom: 22px;
}

.hero-content p {
    color: rgba(43, 43, 43, 1);
    font-size: 18px;
    margin-bottom: 32px;
}

a.product-btn {
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 100px;
    color: #009688;
    border: 1px solid #009688;
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-weight: 500;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

a.product-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 30%, transparent 60%);
    transform: skewX(-25deg);
    transition: all 0.4s ease;
}

a.product-btn:hover {
    background: #009688;
    color: #fff;
    border-color: #009688;
}

a.product-btn:hover::after {
    left: 120%;
}

a.product-btn:active {
    transform: scale(0.97);
}

.custom-btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 100px;
}

.course-btn {
    background-image: linear-gradient(315deg, #0ecebc 0%, #20879e 74%);
    border: none;
    z-index: 1;
}

.course-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 8px;
    background: rgba(0, 150, 136, 1);
    background-image: linear-gradient(315deg, #0e8e66 0%, #00b4a8 74%);
    box-shadow:
        -7px -7px 20px 0px #fff9,
        -4px -4px 5px 0px #fff9,
        7px 7px 20px 0px #0002,
        4px 4px 5px 0px #0001;
    transition: all 0.3s ease;
}

.course-btn:hover {
    color: #f1f1f1;
}

.course-btn:hover:after {
    top: 0;
    height: 100%;
}

.course-btn:active {
    top: 2px;
}

.cta-btn {
    display: flex;
    gap: 14px;
}

/* ======== */
.cta-btn:hover .custom-btn:not(:hover),
.cta-btn:hover .product-btn:not(:hover) {
    opacity: 0.55;
    filter: grayscale(10%);
    transition: all 0.3s ease;
}


/* ABOUT */
#hero-about {
    padding: 95px 0px;
}

.trust-box {
    border: solid 1px rgba(231, 232, 234, 1);
    width: fit-content;
}

.trust-box {
    border: solid 1px rgba(231, 232, 234, 1);
    width: fit-content;
    display: flex;
    gap: 20px;
    border-radius: 13px;
    padding: 12px 50px;
    height: fit-content;
    margin-bottom: 10px;
}

.trust-box p {
    margin-bottom: 10px;
}

.trust-box p {
    margin-bottom: 5px;
    color: rgba(70, 70, 70, 1);
    font-weight: 500;
}

.trust-box span {
    font-size: 23px;
    font-weight: 500;
}

.left-box {
    display: flex;
    gap: 10px;
}

.certified-content {
    background: linear-gradient(140deg, #007C9D, #1DBE91);
    padding: 34px 21px;
    border-radius: 10px;
}

.certified-content p {
    font-size: 22px;
    color: white;
}

.certified-content span {
    color: rgba(246, 246, 246, 1);
    font-size: 15px;
}

.about-heading {
    font-size: 35px;
    font-weight: 600;
    color: rgba(10, 42, 67, 1);
}

.about-desc {
    font-size: 16px;
    color: rgba(90, 108, 122, 1);
    line-height: 1.7;
}

.about-btn {
    background: rgba(0, 150, 136, 1);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #007F72;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 6px 16px rgb(204, 203, 203);
}


.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tag-dot {
    height: 10px;
    width: 10px;
    background: #2EBCBC;
    border-radius: 50%;
    display: inline-block;
}

.tag-title {
    font-size: 18px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, rgba(32, 131, 163, 1), rgba(33, 158, 136, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.about-image {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.about-image img {
    width: 100%;
    display: block;
}


.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}


.about-image:hover::before {
    left: 120%;
}

/* -----SERVICE----- */

#home-service {
    padding: 80px 0px;
    background: rgba(246, 255, 253, 1);
}

.section-title {
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 35px;
    color: rgba(10, 42, 67, 1);
    font-weight: 600;
    line-height: 50px;
}

.equipment {
    background: linear-gradient(99deg, rgba(33, 131, 164, 1), rgba(139, 224, 224, 1));
    width: fit-content;
    padding: 33px 38px;
    border-radius: 20px;
}

.equipment h4 {
    color: rgba(255, 255, 255, 1);
    font-size: 26px;
}

.equipment p {
    color: white;
}

.equipments {
    background: rgba(255, 255, 255, 0.21);
    padding: 58px 114px;
    border-radius: 20px;
    margin-top: 32px;
    text-align: center;
}

.service-box {
    display: flex;
    border: solid 1px rgba(174, 234, 224, 1);
    background: rgba(250, 252, 251, 1);
    border-radius: 20px;
    padding: 25px 33px;
    min-height: 280px;
    transition: background-color 0.35s ease, transform 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.service-box:hover {
    background: rgba(168, 221, 223, 1);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-title {
    font-size: 25px;
    margin-bottom: 20px;
}

a.materials-btn {
    text-decoration: none;
    background: rgba(0, 150, 136, 1);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

a.materials-btn:hover {
    transform: translateY(-3px);
    border: solid 1px rgb(24, 135, 85);
    color: black;
    background: rgba(168, 221, 223, 1);
}

.service-desc {
    margin-bottom: 30px;
    color: rgba(10, 42, 67, 1);
}

/* why choose */
#why-choose-us {
    padding: 80px 0px;
}

.why-choose-cnt p {
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 600;
}

.why-choose {
    position: relative;
}

.why-choose-cnt {
    position: absolute;
    bottom: 28px;
    left: 29px;
    color: white;
}

.years {
    background: rgba(37, 119, 137, 1);
    border-radius: 15px;
    height: 100%;
    padding: 40px 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.years p {
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.years span {
    color: white;
}

.why-choose {
    position: relative;
    overflow: hidden;
}

.why-choose img {
    width: 100%;
    display: block;
}

.why-choose:hover::before {
    left: 130%;
    transition: all 1.4s ease;
}

.why-choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 1.4s ease;
}


.years p {
    font-size: 30px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.years span {
    color: white;
}

.learing-support {
    position: relative;
    background: rgba(37, 119, 137, 1);
    border-radius: 15px;
    height: 100%;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.learing-support span {
    color: white;
}

.dental-excellence {
    position: relative;
    background: rgba(212, 231, 241, 1);
    border-radius: 15px;
    height: 100%;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dental-excellence p {
    font-size: 30px;
    font-weight: 600;
    color: rgba(10, 42, 67, 1);
    margin-bottom: 5px;
}

.learing-support p {
    font-size: 30px;
    font-weight: 600;
    color: rgb(244, 244, 244);
    margin-bottom: 5px;
}

.arrow-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #f8f8f8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.arrow-icon:hover {
    background: white;
    transform: scale(1.12);
    box-shadow: 0 6px 14px rgba(65, 66, 67, 0.35);
}


.arrow-icon-2 {
    position: absolute;
    background: rgba(32, 132, 161, 1);
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}


.arrow-icon i {
    color: rgb(37 119 137);
    font-size: 18px;
}

.arrow-icon-2 i {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
}

.arrow-icon-2:hover {
    background: rgba(22, 112, 141, 1);
    transform: scale(1.12);
    box-shadow: 0 6px 14px rgba(160, 163, 164, 0.35);
}

.academic-box {
    background: linear-gradient(184deg, rgb(20 117 145), rgb(31 179 142 / 97%));
    border-radius: 15px;
    padding: 40px 35px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.academic-img {
    position: absolute;
    top: 26%;
    transform: translateY(-50%);
    left: 51%;
}

.chips {
    margin-top: auto;
}

.chip:hover {
    background: rgb(255 255 255 / 47%);
    color: rgb(255, 255, 255);
}

.academic-box .small-tag {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.academic-box .title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.academic-box .desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chip {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
}

.img-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.img-box img {
    width: 100%;
    display: block;
}

.img-box:hover::before {
    left: 130%;
    transition: all 1.3s ease;
}

.img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 1.4s ease;
    /* updated speed */
}

.img-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 29px;
    border-radius: 12px;
}

.img-content i {
    margin-right: 8px;
    color: white;
}

/* TESTIMONIALS */
.testimonial-section {
    padding: 80px 40px;
    background: linear-gradient(140deg, #0f6f81, #1aa78e);
    border-radius: 35px;
    position: relative;
}

.testimonial-wrapper {
    padding: 0 29px;
}


.testimonial-doctor {
    position: absolute;
    right: 40px;
    top: 50px;
    width: 180px;
    animation: floatDoc 2s ease-in-out infinite;
}

.arrow-btn {
    animation: floatDoc 2s ease-in-out infinite;
}

.testimonial-header {
    text-align: center;
    color: white;
    margin-bottom: 112px;
}

.testimonial-header h2 {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
}

.heading-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 10px;
}

.testimonial-header .desc {
    font-size: 16px;
    opacity: 0.9;
}

.arrow {
    display: flex;
    justify-content: space-around;
}


.testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 27px 22px;
    color: white;
    backdrop-filter: blur(6px);
    margin-right: 10px;
    height: calc(100%);
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.profile img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    font-size: 14px;
    color: gold;
}

.testimonial-card h4 {
    font-size: 18px;
}

.text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.tag-dot-2 {
    height: 10px;
    width: 10px;
    background: #f0f1f1;
    border-radius: 50%;
    display: inline-block;
}

.tag-title-2 {
    font-size: 18px;
    letter-spacing: 2px;
    background: linear-gradient(90deg, rgb(255, 255, 255), rgba(183, 253, 241, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

@keyframes floatDoc {
    0% {
        transform: translateY(0px);
    }

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

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


.testimonial-doctor {
    position: absolute;
    right: 40px;
    top: 50px;
    width: 180px;


    /* <-- added */
}

/* BRANDS */
#brands {
    padding: 80px 0px;
}



.brand-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.brand-track {
    display: flex;
    width: calc(250px * 10);
    /* 10 logos (5 original + 5 duplicates) */
    animation: scroll 25s linear infinite;
}

.brand-logo {
    width: 250px;
    height: 120px;
    background: #ffffff;
    margin: 0 20px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgb(153 149 149 / 7%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #f6f6f6;
}

.brand-logo img {
    max-width: 80%;
    /* max-height: 60px; */
    object-fit: contain;
}

.brand-track.reverse {
    animation: scroll 25s linear infinite;
    animation-direction: reverse;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* ========================ABOUT PAGE=================== */

#about-hero {
    background: linear-gradient(99DEG, rgba(27, 158, 122, 1), rgba(14, 130, 145, 1));
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.dctr-bg {
    position: absolute;
    right: 67px;
    bottom: 0;
    max-height: 90%;
    animation: floatDoc 3s ease-in-out infinite;
}

.about-cnt h2 {
    color: white;
    font-weight: 600;
    font-size: 43px;
}

.about-cnt p {
    color: rgba(229, 229, 229, 1);
}

.bg-loop {
    position: absolute;
    bottom: 0;
    left: 64%;
}

.about-cnt {
    margin-top: 57px;
}

/* OUR APPROACH */

#our-approach {
    padding: 80px 0px;
    background: linear-gradient(184deg, rgba(255, 255, 255, 1), rgba(227, 248, 241, 1));
}

.mission-vission {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    padding: 18px 22px;
    transition: all 0.4s ease;
}

.mission-vission p {
    color: rgba(23, 94, 90, 1);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mission-vission:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 16px rgb(151 149 149 / 25%);
    border-radius: 12px;
    transform: scale(1.05);
}

.mv-img {
    width: 81%;
}

.mv-image {
    position: relative;
    overflow: hidden;
    display: inline-block;
}


.mv-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 1.2s ease;

}

.mv-image:hover::before {
    left: 130%;
}

.approach-section {
    padding: 19px 11px 0px 119px;
}

.btn-wrap {
    margin-top: 30px;
    text-decoration: none;
    background: rgba(0, 150, 136, 1);
    width: fit-content;
    color: white;
    padding: 11px 20px;
    border-radius: 100px;
    transition: all 0.35s ease;
}

.btn-wrap:hover {
    box-shadow: 0px 6px 16px rgb(209, 208, 208);
    transform: translateY(-5px) scale(1.02);
}

.btn-wrap a {
    color: white;
    text-decoration: none;
}

/* OUR CORE VALUES */
#core-values {
    padding: 93px 0px;
    background: rgba(239, 250, 255, 1);
    padding-bottom: 10px;

}

.value-content {
    display: flex;
    gap: 25px;
    background: rgb(255, 255, 255);
    padding: 32px 18px;
    min-height: 247px;
    border-radius: 12px;
    transition: all 0.35s ease;
}

.core-img {
    width: 100%;
    height: 85%;
}

.teeth-exray {
    position: relative;
    overflow: hidden;
}

.teeth-exray::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: all 1.4s ease;
}

.teeth-exray:hover::before {
    left: 130%;
}


.value-content p {
    font-size: 20px;
    color: rgba(45, 43, 43, 1);
    font-weight: 600;
}

.value-content span {
    color: rgba(84, 83, 83, 1);
}

.value-icon {
    background: rgba(77, 152, 158, 1);
    height: fit-content;
    padding: 10px 12px;
    border-radius: 100px;
    color: white;
    transition: all 0.35s ease;
}

.value-content:hover {
    background: linear-gradient(184deg, rgba(41, 69, 142, 1), rgba(38, 111, 137, 1), rgba(34, 148, 131, 1));
    transform: translateY(-5px) scale(1.02);
}

.value-content:hover p,
.value-content:hover span {
    color: #fff;
}

.value-content:hover .value-icon {
    background: #fff;
    color: #000;
}

/* WHY CHOOSE */
#why-choose-2 {
    padding: 80px 0px;
}

.pillars-box {
    background: #E9FFF6;
    padding: 30px 30px;
    border-radius: 20px;
    height: 100%;
}

.pillar-item {
    font-size: 20px;
    padding: 30px 0;
    font-weight: 500;
    color: rgba(10, 42, 67, 1);
    border-bottom: 1px solid #a8dadc;
    cursor: pointer;
}

.pillar-item.active {
    background: linear-gradient(99deg, rgba(33, 156, 136, 1), rgba(81, 108, 164, 1));
    color: white;
    border-radius: 12px;
    padding-left: 20px;
    transition: 0.3s;
}

.pillar-item:last-child {
    border-bottom: none;
}

.right-text {
    color: #4b4b4b;
    font-size: 16px;
    line-height: 1.6;
}

.explore-btn {
    background: #0FA189;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
}

.explore-btn a {
    color: black;
}

/* TEAM */

#team {
    padding: 50px 30px;
}

.Specialists {
    padding: 10px;
}

.Specialists img {
    width: 100%;
    height: 310px;
    /* fixed height */
    object-fit: cover;
    /* crop without distortion */
    border-radius: 12px;
}

.Specialists p {
    margin-bottom: 3px;
    font-size: 17px;
    font-weight: 500;
    margin-top: 10px;
}


/* =======================SPEAKERS PAGE============== */
#trainers {
    padding: 80px 0px;
}

.members-info h6 {
    font-weight: 600;
    font-size: 18px;
}

.members-info span {
    color: rgba(63, 60, 60, 1);
    font-style: italic;
    font-weight: 500;
}

.members-desc p {
    margin-top: 18px;
}

.members-info p {
    margin-bottom: 1px;
    font-weight: 500;
}

.members-details {
    background: rgba(212, 231, 241, 1);
    padding: 24px 24px;
    border-radius: 12px;
    transition: background-color 0.35s ease, transform 0.35s ease;
    height: calc(100%);
}

.members-info img {
    margin-bottom: 20px;
    width: 100%;
    height: 349px;
    /* same height for all images */
    object-fit: cover;
    border-radius: 16px;
}

.members-details:hover {
    box-shadow: 0px 3px 14px rgb(71 68 68 / 25%);
    transform: translateY(-7px);
}


/* ======================== SERVICE PAGE=================== */
#we-offer {
    padding: 47px 0px;
    padding-top: 65px;
}

.matiriels-hding p {
    font-size: 25px;
    font-weight: 600;
    color: rgba(10, 42, 67, 1);
}

.matiriel-cnt {
    color: rgba(28, 28, 28, 1);
    margin-bottom: 30px;
}

.material-icon {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #007a99;
    padding: 0px 14px;
    width: 43px;
    height: 42px;
    display: flex;
    text-align: center;
    align-items: center;
    border-radius: 8px;
    /* color: white; */
    margin-bottom: 20px;
}

.highlight {
    font-weight: 600;
    color: rgba(28, 28, 28, 1);
}

.dental-cnt {
    display: flex;
    gap: 10px;
}

.service-image {
    width: 100%;
    margin-bottom: 20px;
}

.dm-content {
    display: flex;
    gap: 75px;
    margin-bottom: 20px;
}

.dm-content p {
    font-weight: 500;
}

.dm-content span {
    color: rgba(70, 70, 70, 1);
}

.dm-item {
    background: linear-gradient(99deg, rgba(200, 219, 228, 1), rgba(228, 234, 236, 1));
    padding: 25px 30px;
    border-radius: 12px;
    min-height: 217px;
    transition: all 0.35s ease;
    border: 1px solid transparent;
}

.dm-item:hover {
    background: rgba(216, 233, 245, 1);
    transform: translateY(-6px);
    box-shadow: 0px 6px 20px rgba(0, 91, 142, 0.15);
    border-color: rgba(170, 200, 220, 0.7);
}

.dm-item p {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 18px;
}

.dm-item span {
    color: rgb(44 43 43);
}

.dm-image img {
    width: 100%;
    margin-bottom: 20px;
}

.materials-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.matirial-sbhding {
    color: rgba(8, 83, 38, 1);
    margin-bottom: 20px;
}

.responsive-br {
    display: none;
}

.dm-section {
    margin-bottom: 61px;
}

.matirial-section {
    background: linear-gradient(184deg, rgba(247, 251, 250, 1), rgba(238, 255, 249, 1));
    padding: 38px 53px;
    border-radius: 12px;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.matirial-section:hover {
    box-shadow: 0px 6px 16px rgb(224, 224, 224);
    transform: translateY(-8px);
}


.equipment-card {
    background: rgb(255, 255, 255);
    padding: 35px 58px;
    border-radius: 12px;
    transition: background-color 0.35s ease, transform 0.35s ease;
    min-height: 259px;
}

.eqpmnt-image {
    width: 100%;
}

.equipment-card i {
    border: solid 1px rgba(197, 197, 197, 1);
    padding: 17px 12px;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    color: rgba(19, 130, 120, 1);
    margin-bottom: 10px;
}

.equipment-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(184deg, rgb(86 116 195), rgba(38, 111, 137, 1), rgb(38 171 151));
    border-color: transparent;
}

.equipment-card:hover i {
    background: #ffffff !important;
    color: #000 !important;
    transform: scale(1.05);
    border: 1px solid rgba(197, 197, 197, 1);
}

.equipment-card:hover p,
.equipment-card:hover span {
    color: rgb(255, 255, 255);
}

.equipment-card:hover i {
    transform: scale(1.05);
}

.equipment-card p {
    color: rgba(10, 42, 67, 1);
    font-size: 21px;
    margin-bottom: 5px;
    font-weight: 500;
}

.equipment-card span {
    color: rgba(80, 79, 79, 1);
}

.differentiators {
    display: flex;
    gap: 10px;
}

.differentiators p {
    color: rgba(88, 87, 87, 1);

}

.equipment-area {
    margin-top: 30px;
}

.eqpmnt-txt {
    font-size: 20px;
    color: rgba(10, 42, 67, 1);
    font-weight: 600;
}

.equipment-info {
    background: linear-gradient(184deg, rgba(247, 251, 250, 1), rgba(210, 240, 255, 1));
    padding: 38px 53px;
    border-radius: 12px;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.equipment-info:hover {
    box-shadow: 0px 6px 16px rgb(224, 224, 224);
    transform: translateY(-8px);
}

.service-text p {
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 600;
    color: #1f3345;
}

.service-text {
    background: rgba(212, 231, 241, 1);
    padding: 31px 45px;
    border-radius: 12px;
    margin-bottom: 30px;
    margin-top: 20px;
    min-height: 193px;
}


.animation-img {
    width: 100%;
}

/* img animation */


.brand-protection {
    background: rgb(235, 248, 233);
    padding: 20px 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.brand-protection p {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
}

.service-section {
    background: linear-gradient();
}

.eqpmt-box {
    background: linear-gradient(184deg, rgba(247, 251, 250, 1), rgba(242, 255, 250, 1));
    padding: 38px 53px;
    border-radius: 12px;
    transition: background-color 0.35s ease, transform 0.35s ease;
}

.eqpmt-box:hover {
    box-shadow: 0px 6px 16px rgb(224, 224, 224);
    transform: translateY(-8px);
}

#equipmnt-srvc {
    padding: 47px 0px;
}

.srvc-desc {
    margin-bottom: 30px;
}

.dctr-image {
    width: 100%;
}

.academy-content {
    background: rgba(64, 204, 177, 0.45);
    padding: 38px 53px;
    border-radius: 12px;
    transition: background-color 0.35s ease, transform 0.35s ease;
    margin-bottom: 50px;
}

.academy-content:hover {
    box-shadow: 0px 6px 16px rgb(224, 224, 224);
    transform: translateY(-8px);
}


/* =====================FOOTER==================================== */
.footer-section {
    background: linear-gradient(179deg, #099680, #0A413B);
    padding: 60px 0 30px;
    color: #fff;
    border-radius: 20px 20px 0px 0px;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
}


.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 12px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #fff;
    color: #0C9E87;
}


.footer-col h4 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.footer-link {
    padding-left: 20px;
}


.footer-col ul li a {
    color: #d7e9e6;
    display: block;
    margin: 6px 0;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}


.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 55px;
}

.footer-offices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.office-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 42px;
}

.office-card h5 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.office-card p {
    font-size: 15px;
    color: #e7f3f0;
}

.office-card i {
    margin-right: 8px;
    color: #fff;
}


.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 14px;
    color: #d8e8e4;
}

.d5n {
    text-decoration: none;
    color: white;
}

.envelope {
    text-decoration: none !important;
    color: #e7f3f0;
    color: inherit;
}

.mobile {
    text-decoration: none !important;
    color: #e7f3f0;
    color: inherit;
}

/* ===========================HERO ANIMATION TEXT======================== */
.hero-animate {
    opacity: 0;
    transform: translateY(35px);
    animation: slideFadeIn 0.9s ease-out forwards;
}

.anim-delay-1 {
    animation-delay: 0.25s;
}

.anim-delay-2 {
    animation-delay: 0.45s;
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================HERO ABOUT ANIMATION===================== */

.about-anim {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease;
}


.about-anim.animate {
    opacity: 1;
    transform: translateY(0);
}


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

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.5s;
}


.letter-animate {
    display: inline-block;
    overflow: hidden;
    font-weight: 600;
}

.letter-animate span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterIn 0.45s forwards;
}

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


/* =============================CONTACT PAGE=============================== */

.contact-section {
    background: linear-gradient(120deg, #d9f6ff, #c8f7e6);
    padding: 100px 20px;
    padding-top: 219px;
}

.contact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* LEFT */
.office-wrapper h2,
.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #083c36;
}

.office-card-2 {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.office-card-2 h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #083c36;
    font-weight: 500;
}

.office-card-2 p {
    font-size: 15px;
    margin: 8px 0;
    color: #4a6f6a;
}

.office-card-2 a {
    text-decoration: none;
}

.office-card-2 i {
    margin-right: 10px;
    color: #0c9e87;
}

/* RIGHT */
.form-desc {
    font-size: 16px;
    color: #4a6f6a;
    margin-bottom: 24px;
}

.contact-form {
    background: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
    margin-bottom: 25px;
}

.contact-form button {
    width: 100%;
    background: #0c9e87;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #087866;
}



/* ===============================================COURSES======================================= */
#courses {
    padding: 80px 0px;
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

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

.course-content {
    padding: 24px;
}

.course-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #0b2c2d;
    margin-bottom: 12px;
}

.course-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5f6f73;
    margin-bottom: 20px;
}

.btn-view {
    background-color: #1aa37a;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: #148a66;
    color: #ffffff;
}

/* ========================COURSE DETAILS================================== */

.course-details-section {
    background: #f5f9fb;
    padding: 100px 0px;
    padding-top: 200px;
}


.course-banner {
    background: #0f8f8b;
    padding: 25px 30px;
    border-radius: 14px;
    color: #fff;
}

.course-banner h3 {
    margin-bottom: 5px;
    font-weight: 600;
}

.course-banner p {
    margin: 0;
    opacity: 0.9;
}

.apply-btn {
    background: #fff;
    color: #0f8f8b;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
}

.apply-btn2 {
    background: #0f8f8b;
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;

}

.apply-btn:hover {
    color: white;
}


.course-image img {
    border-radius: 16px;
    object-fit: cover;
    height: 500px;
}


.info-card {
    /* background: #fff; */
    padding: 24px;
    border-radius: 14px;
    height: 100%;
    /* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04); */
}

.course-info {
    background: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    padding: 35px 58px;
    border-radius: 12px;
}


.info-section {
    margin-top: 30px;
}

.info-card h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.info-card li {
    margin-bottom: 8px;
    font-size: 15px;
}

.info-card p {
    font-size: 15px;
    margin-bottom: 0;
}

.syllabus-list {
    padding-left: 18px;
    /* bullet & text correct alignment */
    margin: 0;
}

.syllabus-list li {
    margin-bottom: 8px;
    font-size: 15px;
}


/* ======================================SERVICE DROP DOWN ================================= */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 99;
    display: block;
}

.has-dropdown .dropdown li {
    list-style: none;
}

.has-dropdown .dropdown a {
    display: block;
    padding: 10px 18px;
    color: #083c36;
    font-size: 14px;
    transition: 0.3s;
}

.has-dropdown .dropdown a:hover {
    background: #39a599;
    color: white;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================================PRODUCTS PAGE=================================== */

.details-page {
    background: rgba(250, 249, 249, 1);
}


.product-tabs .list-group-item {
    cursor: pointer;
    border: none;
    padding: 15px;
    background: #e9fffb;
    color: #006d6f;
    font-weight: 500;
}

.product-tabs .list-group-item.active {
    background-color: #b9f3e4 !important;
    color: #004d40;
}

.product-content {
    display: none;
}

.product-content.active {
    display: block;
}



.product-card img {
    max-height: 180px;
    display: block;
    margin: auto;
}

.product-card h6 {
    margin-top: 10px;
    color: #006d6f;
    font-size: 20px;
    font-weight: 500;
}

.price {
    color: #006d6f;
    font-weight: 600;
    font-size: 19px;
}

.btn-view-details {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #006d6f;
    border: 1px solid #006d6f;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    /* margin-left: 15px; */
    width: fit-content;
}

.btn-view-details:hover {
    background-color: #006d6f;
    color: #fff;
}

/* ================buttons hover===================== */
.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    padding-bottom: 84px;
    /* min-height: 430px; */
    position: relative;
    height: calc(100%);
}

.price-details {
    position: absolute;
    bottom: 15px;
}

.img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}


.hover-icons {
    position: absolute;
    inset: 0;
    background: rgba(0, 109, 111, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}


.product-card:hover .hover-icons {
    opacity: 1;
    transform: scale(1);
}


.icon-btn {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006d6f;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.icon-btn:hover {
    background: #b9f3e4;
    transform: translateY(-4px);
}

.icon-btn.whatsapp {
    color: #25D366;
}

.img-wrap img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}



/* ============================================CART PAGE================================= */
#cart-body {
    background: rgba(212, 231, 241, 1);
    padding-top: 150px !important;
}

.cart-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 70px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cart-body {
    padding: 80px 0px;
}

.dental-product h6 {
    font-size: 20px;
}

.dental-product p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.cart-product h6 {
    font-size: 20px;
}

.cart-product p {
    font-size: 18px;
    font-weight: 500;
}

.product-category {
    margin-bottom: 50px;
}


/* ===================================STICKY CART ICON=========================== */
.sticky-cart {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 999;
}

.sticky-cart-btn {
    width: 60px;
    height: 60px;
    background: rgba(32, 127, 167, 1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}


/* =========================================PRODUCT DETAILS PAGE======================================= */
.details-page {
    background: rgba(250, 249, 249, 1);
}

#details-section {
    padding: 100px 0px;
    padding-top: 117px;
}

.thumb-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumb {
    width: 100%;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    padding: 7px;
    transition: 0.3s;
    width: 103px;
    height: 139px;
}

.thumb:hover,
.thumb.active {
    border-color: #0d6efd;
}

/* Main Image */
.main-image {
    background: #fff;
    padding: 33px;
    border-radius: 12px;
    text-align: center;
}

.main-image img {
    max-width: 91%;
    height: 389px;
    object-fit: contain;
}

/* Product Info */
.product-title {
    font-weight: 600;
}

.product-tagline {
    color: #6c757d;
    margin-bottom: 15px;
}

.product-short {
    font-size: 15px;
    margin-bottom: 15px;
}

.price {
    color: #006d6f;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 22px;
}

.btn-group-custom .btn {
    padding: 10px 22px;
    margin-right: 10px;
    border-radius: 8px;
}

.btn-primary {
    background: rgba(17, 111, 175, 1);
    border: none;
}

.btn-success {
    background: rgba(33, 161, 132, 1);
    border: none;
}

.btn-primary:hover {
    background: white;
    color: black;
}

.btn-success:hover {
    background: white;
    color: black;
}



/* Why Choose */
.why-choose-3 h5 {
    margin-bottom: 15px;
}

.why-choose-3 ul {
    list-style: none;
    padding: 0;
}

.why-choose-3 li {
    margin-bottom: 10px;
    font-size: 14px;
}

.why-choose-3 i {
    color: #28a745;
    margin-right: 8px;
}

.tool-description {
    margin-top: 50px;
}

.related-products {
    margin-top: 60px;
}

.card-2 {
    background: white;
    width: 100%;
    max-width: 280px;
    padding: 24px 25px;
    border-radius: 12px;
    margin-right: 10px;
    margin-top: 20px;

    height: 420px;
    /* FIXED HEIGHT */
    display: flex;
    flex-direction: column;

}

/* Make slick track flex */
.slick-track {
    display: flex !important;
}

/* Make each slide stretch */
.slick-slide {
    height: auto !important;
    /* display: flex !important; */
}

.card-2 img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.card-2 h5 {
    color: #006d6f;
    font-size: 21px;
}

.card-2 p {
    margin-bottom: 10px;
    font-size: 15px;

}

.card-2 span {
    font-size: 20px;
    font-weight: 600;
    color: #006d6f;
    margin-top: auto;
}

.section-title-2 {
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.product-desc {
    margin-bottom: 90px;
}

.section-title-2 h3 {
    font-size: 31px;
    color: rgba(11, 49, 74, 1);
}

.product-card p {
    height: 78px;
}

.thumb {
    width: 97px;
    height: 123px;
    /* margin-right: 5px; */
    object-fit: cover;
}

/* .detls-desc {
    height: 84px;
} */

/* ==========================================================================
   About Our Founder Section Styles
   ========================================================================== */
.doctor-content {
    margin-top: 72px;
}

#about-doctor {
    padding: 100px 0;
    margin-top: 50px;
    background: #fff;
    overflow: hidden;
    padding-top: 20px;
}

.doctor-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.doctor-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
    z-index: 2;
    position: relative;
    transition: transform 0.5s ease;
}

.doctor-img-wrapper:hover .doctor-img {
    transform: scale(1.02);
}

.doctor-img-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, #20879e 0%, #0ecebc 100%);
    border-radius: 30px;
    z-index: 1;
}

.doctor-experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

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

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

.exp-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #20879e 0%, #0ecebc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.3;
}

.doctor-info-content {
    padding-left: 20px;
}

.doctor-name {
    font-size: 36px;
    font-weight: 600;
    color: #0a2a43;
    margin-bottom: 25px;
    position: relative;
}

.doctor-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #0ecebc;
    border-radius: 2px;
}

.doctor-desc {
    font-size: 18px;
    color: #5a6c7a;
    line-height: 1.8;
    margin-bottom: 45px;
    margin-top: 30px;
}

.feature-grid .col-md-4 {
    display: flex;
}

.feature-card {
    background: #fdfdfd;
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    border: 1px solid rgba(32, 135, 158, 0.08);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(32, 135, 158, 0.12);
    border-color: rgba(32, 135, 158, 0.2);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #f0f9fa 0%, #e6f7f4 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #20879e;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #20879e 0%, #0ecebc 100%);
    color: #fff;
    transform: rotate(10deg);
}

.feature-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #0a2a43;
    margin: 0;
    line-height: 1.4;
}

.doctor-btn {
    background: linear-gradient(135deg, #20879e 0%, #0ecebc 100%);
    border: none;
    padding: 16px 40px;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(32, 135, 158, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.doctor-btn i {
    font-size: 16px;
    transition: transform 0.4s ease;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.doctor-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(32, 135, 158, 0.4);
    background: linear-gradient(135deg, #0ecebc 0%, #20879e 100%);
}

.doctor-btn:hover i {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

.doctor-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: 0.6s;
    z-index: -1;
}

.doctor-btn:hover::before {
    left: 100%;
}

@media (max-width: 991px) {
    #about-doctor {
        padding: 60px 0;
    }

    .doctor-img-wrapper {
        max-width: 450px;
        margin: 0 auto;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .doctor-info-content {
        padding-left: 0;
        /* text-align: center; */
    }

    .doctor-name::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .doctor-btn {
        margin: 0 auto;
    }
}

@media (min-width: 321px) and (max-width: 482px) {
    .feature-grid {
        margin-left: -5px;
        margin-right: -5px;
    }

    .feature-grid .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 5px;
        padding-right: 5px;
    }

    /* Make the 3rd card full width to fill the row alone */
    .feature-grid .col-md-4:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .feature-card {
        padding: 20px 10px;
        margin-bottom: 10px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-card h5 {
        font-size: 13px;
    }
}

/* ==========================================================================
   Dr. Aseem Profile Page Styles
   ========================================================================== */

#doctor-profile-hero {
    padding-top: 200px !important;
    background: linear-gradient(180deg, #f8fbfb 0%, #ffffff 100%);
}

.profile-img-container {
    position: relative;
    padding: 20px;
}

.profile-main-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.profile-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #20879e 0%, #0ecebc 100%);
    border-radius: 40px;
    transform: rotate(-3deg);
    z-index: 1;
    opacity: 0.1;
}

.experience-badge-modern {
    position: absolute;
    bottom: 50px;
    right: -20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

.experience-badge-modern .num {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #20879e 0%, #0ecebc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.experience-badge-modern .txt {
    font-size: 15px;
    font-weight: 700;
    color: #4a5568;
    line-height: 1.2;
}

.modern-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(32, 135, 158, 0.08);
    color: #20879e;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(32, 135, 158, 0.2);
}

.profile-title {
    font-size: 50px;
    font-weight: 600;
    color: #0a2a43;
    line-height: 1.1;
}

.profile-subtitle {
    font-size: 21px;
    color: #20879e;
    font-weight: 500;
    line-height: 1.5;
}

.profile-short-desc {
    font-size: 17px;
    color: #5a6c7a;
    line-height: 1.8;
}

.mini-feature {
    background: #fff;
    padding: 20px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mini-feature i {
    font-size: 24px;
    color: #20879e;
}

.mini-feature span {
    font-size: 14px;
    font-weight: 700;
    color: #0a2a43;
}

.mini-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(32, 135, 158, 0.1);
    border-color: rgba(32, 135, 158, 0.3);
}

/* Bio Section */
.bg-light-soft {
    background-color: #fafafe;
}

.bio-card {
    background: #fff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.section-main-title {
    font-size: 37px;
    font-weight: 600;
    color: #0a2a43;
}

.section-subtitle-text {
    font-size: 18px;
    color: #a0aec0;
    font-weight: 500;
}

.bio-content-text p {
    font-size: 16px;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 25px;
}

/* ==========================================================================
   Clean Clinical White & Mint Design
   ========================================================================== */

.modern-tag-alt {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(46, 188, 188, 0.1);
    color: #2ebcbc;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(46, 188, 188, 0.2);
}

.impact-box {
    background: #35c9c91f;
    border-radius: 30px;
    padding: 45px 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.impact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #20879e, #0ecebc);
    transition: all 0.5s ease;
    border-radius: 0 4px 4px 0;
}

.impact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(32, 135, 158, 0.12);
    border-color: rgba(32, 135, 158, 0.1);
}

.impact-box:hover::before {
    height: 100%;
}

.impact-icon {
    width: 65px;
    height: 65px;
    background: #f6fffd;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #2ebcbc;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(46, 188, 188, 0.15);
}

.impact-box:hover .impact-icon {
    background: linear-gradient(135deg, #20879e 0%, #0ecebc 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(46, 188, 188, 0.3);
}

.impact-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0a2a43;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.impact-box:hover .impact-content h3 {
    color: #20879e;
}

.impact-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7a;
    margin-bottom: 25px;
}

.impact-meta {
    margin-top: auto;
}

.impact-meta span {
    font-size: 13px;
    font-weight: 700;
    color: #20879e;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #f1f7f9;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.impact-box:hover .impact-meta span {
    background: rgba(32, 135, 158, 0.1);
    color: #20879e;
}

@media (max-width: 991px) {
    .impact-box {
        padding: 40px 30px;
        align-items: center;
        text-align: center;
    }

    .impact-icon {
        margin-bottom: 25px;
    }
}

@media (max-width: 991px) {
    .profile-title {
        font-size: 42px;
        text-align: center;
    }

    .profile-subtitle {
        font-size: 18px;
        text-align: center;
    }

    .profile-short-desc {
        text-align: center;
    }

    .profile-intro-card {
        padding-left: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bio-card {
        padding: 40px 20px;
    }

    .section-main-title {
        font-size: 32px;
    }

    .experience-badge-modern {
        right: 0;
        bottom: 20px;
        padding: 15px 20px;
    }

    .experience-badge-modern .num {
        font-size: 36px;
    }
}

@media (min-width: 321px) and (max-width: 482px) {
    .profile-intro-card .row.g-3 {
        margin-left: -5px;
        margin-right: -5px;
    }

    .profile-intro-card .row.g-3 .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 5px;
        padding-right: 5px;
    }

    .profile-intro-card .row.g-3 .col-md-4:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .profile-title,
    .profile-subtitle,
    .profile-short-desc {
        text-align: left !important;
    }

    .profile-intro-card {
        align-items: flex-start !important;
        padding-left: 10px !important;
    }

    .mini-feature {
        padding: 15px 10px;
        margin-bottom: 10px;
    }

    .mini-feature i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .mini-feature span {
        font-size: 11px;
        line-height: 1.2;
    }

    .aseem-break {
        display: none;
    }

    /* Roles & Affiliations Left Alignment */
    #roles-affiliations .text-center {
        text-align: left !important;
    }

    .impact-box {
        align-items: flex-start !important;
        text-align: left !important;
    }
}

.brand-text {
    color: #20879e;
    font-weight: 700;
}

/* ==========================================================================
   Bio Page Specific Redesigns
   ========================================================================== */

.highlight-accomplishment-box {
    background: #f0f9fa;
    border-radius: 40px;
    padding: 35px 50px 35px 40px;
    border-left: 6px solid #20879e;
    position: relative;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(32, 135, 158, 0.05);
}

.highlight-accomplishment-box p {
    margin-bottom: 0 !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #4a5568 !important;
}

.highlight-accomplishment-box .floating-star-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #2b93ab;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(32, 135, 158, 0.2);
    z-index: 2;
}

.bio-quote-section {
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.bio-quote-section .quote-icon {
    font-size: 40px;
    color: #0ecebc;
    opacity: 0.2;
    line-height: 1;
}

.bio-quote-section blockquote {
    font-style: italic;
    font-size: 20px;
    color: #5a6c7a;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
    border: none;
    padding: 0;
}

@media (max-width: 991px) {
    .highlight-accomplishment-box {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .highlight-accomplishment-box .floating-star-badge {
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .bio-quote-section {
        gap: 15px;
        padding: 20px 0;
    }

    .bio-quote-section blockquote {
        font-size: 17px;
    }
}