/* ===== CSS Boilerplate ===== */

*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Base styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

.section-spacing {
    padding: 4rem 0;
}
* {
    /*outline: 2px solid red;*/
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.5rem;
    color: #333;
    background-color: #fff;
}

/* 3. Links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h2 {
    font-size: 32px; /* or 2rem */
    font-weight: 600; /* or 700 for bold */
    line-height: 1.3;
}

/* 4. Images and media */
img,
picture,
video,
svg {
    max-width: 100%;
    display: block;
}

/* 5. Lists */
ul,
ol {
    list-style: none;
}

/* 7. Forms */
input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
}

:root {
    --clr-: #065f46;
    --clr-: white;
    --clr-: #0f766e;
}

:root {
    --size-xxs: 0.5rem;
    --size-xs: 0.75rem;
    --size-sm: 0.795rem;
    --size-base: 1rem;
    --size-lg: 1.125rem;
    --size-xl: 1.25rem;
    --size-2xl: 1.5rem;
    --size-3xl: 1.875rem;
    --size-4xl: 2.25rem;
    --size-5xl: 3rem;
    --size-6xl: 3.75rem;
    --size-7xl: 4.5rem;
    --size-8xl: 6rem;
    --size-9xl: 8rem;
    --size-10xl: 10rem;
}

:root {
    --surface-color: #ffffff;
    --accent-color: #0f766e;
}

button {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.05em;
    background-color: #0f766e;
    color: black;
    padding: 0.5em 1em;
}

/* Navbar styles */
.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    background: #fff;
    width: 100%;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    padding: 1rem;
}

.logo {
    width: 200px;
}
.headermenu {
    display: flex;
    gap: 4rem;
    margin-top: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #0f766e;
}

.app-butt:hover {
    text-decoration: none;
    font-weight: 600;
    color: black;
    background-color: white;
}
.app-butt {
    border: 1px solid var(--clr-);
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
    /* width:25%; */
    text-align: center;
    color: white;
    background-color: var(--clr-);
}

/* mobile Sidebar styles */
.sidebar {
    height: 100vh;
    width: 250px;
    background-color: white;
    position: fixed;
    top: 0;
    right: -260px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 999;
}

.sidebar.active {
    right: 0;
}

.side-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.side-menu li {
    margin: 1rem 0;
}

.side-menu a {
    text-decoration: none;
    color: #0f766e;
    font-weight: bold;
}

/* Close button */
.close-btn1 {
    font-size: 1.9rem;
    font-weight: bold;
    cursor: pointer;
    display: block;
    text-align: right;
    margin-bottom: 1rem;
}
.headerlink {
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }
    .headermenu,
    .appointment-btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .section-spacing {
        padding: 4rem 0 1rem 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .logo {
        width: 180px;
    }
    .headermenu {
        gap: 2rem;
    }
}

/* 
************************************herosection***************************** */

.hero {
    position: relative;
    width: 100%;
    height: auto;

    overflow: hidden;
    padding: 0;
}
.hero::before {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.hero-content {
    height: 650px;
}
.hero-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Overlay Styling */
.hero-text-overlay {
    position: absolute;
    color: white;
    top: 25%;
    font-weight: 600;
    padding: 4rem 2rem;
    border-radius: 8px;
}

.hero-text-overlay h1 {
    font-size: var(--size-5xl);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-text-overlay p {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-btn {
    background-color: #0f766e;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 425px) {
    .hero {
        margin-top: 95px;
    }

    .hero-content {
        height: 350px;
    }
    .hero-text-overlay {
        top: 12%;
        color: white;
        font-weight: 600;
        padding: 1rem 2rem;
    }

    .hero-text-overlay h1 {
        font-size: var(--size-2xl);
    }

    .hero-text-overlay p {
        font-size: var(--size-sm);
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .hero {
        margin-top: 95px;
    }
    .hero-content {
        height: 350px;
    }
    .hero-text-overlay {
        top: 20%;
        color: white;
        font-weight: 600;
        padding: 1rem 2rem;
    }

    .hero-text-overlay h1 {
        font-size: var(--size-2xl);
    }

    .hero-text-overlay p {
        font-size: var(--size-sm);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        margin-top: 95px;
    }
    .hero-content {
        height: 550px;
    }
    /* Text Overlay Styling */
    .hero-text-overlay {
        top: 25%;
        color: white;
        font-weight: 600;
        padding: 1rem 2rem;
    }
}

/**************why choose section************ */

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.icon {
    margin-bottom: 1rem;
}

.card-img {
    width: 100%;
    height: auto;
    margin-top: 1rem;
    border-radius: 0.5rem;
}

.svg-path {
    fill: #036c5f; /* green */
    transition: fill 0.3s ease;
}

.icon-wrapper:hover .svg-path {
    fill: white;
}

.button-wrapper {
    margin-top: 3rem;
}

.card:hover {
    background-color: var(--clr-);
}

.card:hover h5,
.card:hover p {
    color: white;
}

.icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.icon img.service-img {
    width: 40px;
    height: 40px;
}

.icon h5 {
    font-size: 1rem;
    margin: 0;
}

.card .icon svg {
    color: 0a625c;
    transition: color 0.3s ease;
}

.card:hover .icon svg {
    color: #ffffff;
}

.choosebutton {
    background-color: #0f766e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.choosebtn {
    display: flex;
    margin-top: 3rem;
    justify-content: center;
}

.choosepara {
    font-weight: 400 !important;
    font-size: medium !important;
}

/* Responsive Styles */
@media (max-width: 425px) {
    .why-choose-section {
        padding: 0rem 1rem;
        margin-top: 0px !important;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .choosepara {
        font-size: var(--size-sm);
        line-height: 1.5;
    }
    .choosebtn {
        margin: 3rem 0;
    }
}
@media (min-width: 426px) and (max-width: 768px) {
    .why-choose-section {
        padding: 0rem 1rem;
        margin-top: 0px !important;
    }
    .card-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    .choosepara {
        font-size: var(--size-sm);
        line-height: 1.5;
    }
    .choosebtn {
        margin: 3rem 0;
    }
}
@media (max-width: 768px) {
    .icon h5 {
        font-size: 1.5rem;
    }
    .card {
        width: 62%;
    }
    .card-grid {
        justify-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* **************Treatment Section********* */

.treatment-highlight {
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
}

.treatment-section {
    background-color: white;
    /* padding: 60px 20px; */
    text-align: center;
}

/* Set default size */
.braces-icon {
    width: 40px; /* Adjust as needed */
    height: 40px;
    fill: #0f766e;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.treatment-box:hover svg path,
.treatment-box:hover svg rect {
    fill: #ffffff; /* or any hover color */
}

.bracesimg {
    margin: auto;
    width: 40px !important;
    height: 50px !important;
}

.treatment-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.bracesimg {
    width: 80px;
    height: 80px;
}

.treatment-name {
    margin-top: 10px;
    font-size: 16px;
    color: #0f766e; /* match your icon color */
    font-weight: 500;
}

.app {
    background-color: #0f766e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}

.btn-book {
    background-color: #065f46;
    color: white;
    padding: 20px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

.sub-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.bracesimg {
    display: block;
    width: 100%;
    height: 50%;
}
.wisdomimg {
    display: block;
    width: 100%;
    height: 50px;
}

.treatment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.treatment-box {
    border: 1px solid #065f46;
    /* padding: 10px 20px; */
    border-radius: 8px;
    width: 180px;
    font-weight: 500;
    background-color: #fff;
    transition: 0.3s ease;
}

.treatment-box:hover {
    background-color: #065f46;
    color: white;
    transform: translateY(-5px);
}

.treatment-highlight {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #065f46;
    border-radius: 10px;
    overflow: hidden;
    color: white;
    padding: 60px;
}

.treatment-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.treatment-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.treatment-image {
    flex: 1;
}
.treatment-image img {
    border-radius: 0.5rem;
    width: 100%;
    display: block;
    height: auto;
}

.denthead {
    text-align: center;
    font-weight: 600;
}

@media (max-width: 425px) {
    .treatment-section {
        width: 95%;
    }
    .treatment-highlight {
        padding: 25px;
        flex-direction: column;
    }
}

/************************************** testimonial section   ******************************/

.testimonial-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.testimonial-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial-grid {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    width: max-content;
}

.testimonial-card {
    background-color: #065f46;
    color: white;
    width: 100%;
    max-width: 365px;
    height: 250px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 90px;
    padding: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0; /* ✅ Add this line */
}

.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-card img.avatar {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    display: flex;
    align-items: center;
}

.testimonial-card h3 {
    margin: 10px 0;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-arrow-btn {
    background-color: #065f46;
    border: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.arrow-btn:hover {
    background-color: white;
    border: 1px solid black;
}

/* Hide scrollbar */
.testimonial-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-wrapper {
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 auto;
    min-width: 280px; /* Adjust for your design */
}

/* === MOBILE SCROLL STYLES === */
@media (max-width: 768px) {
    .testimonial-grid {
        display: flex;
        gap: 25px;
        width: max-content;
    }

    .testimonial-card {
        background-color: #065f46;
        color: white;
        width: 100%;
        max-width: 230px;
        height: 250px;
        border-bottom-left-radius: 50px;
        border-top-right-radius: 90px;
        padding: 20px;
        flex-shrink: 0; /* ✅ Prevents card from shrinking in flex */
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }
}

/************************** section css  *************************/
.section-main-map {
    display: flex;
    flex-wrap: wrap;
    background-color: #f5f0ee;
}

.left-column {
    padding: 20px;
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.top-images {
    display: flex;
    gap: 10px;
}

.top-images img {
    width: 50%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
}

.right-column {
    flex: 1 1 300px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-column h3 {
    margin-bottom: 10px;
}

.right-column p {
    font-size: 14px;
    line-height: 1.5;
}

.bottom-text {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 425px) {
    .section {
        flex-direction: column;
    }

    .top-images img {
        height: 120px;
    }

    .right-column {
        padding-top: 20px;
    }
}

/********************visit dental clinic************* */

.visit {
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    padding: 40px 20px;
}

.treatment1 {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.timeline-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding-left: 30px;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 51%;
    top: 91px;
    bottom: 0;
    width: 10px;
    /* background: #004d40; */
    background: #ccc;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.timeline-item.left {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 100px;
    height: 100px;
    background-color: #00796b;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: absolute;
    left: 49.5% !important;
    transform: translateX(-50%);
}

.timeline-item.right .timeline-marker {
    top: -40px;
}

.timeline-item.left .timeline-marker {
    top: -2px;
}

.timeline-content {
    background: white;
    border: 2px solid #00796b;
    padding: 32px;
    text-align: center;
    width: 30%;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 2px 80px;
}

.timeline-content img {
    max-width: 100%;
    margin-top: 10px;
    border-radius: 8px;
}

.timeline-content:hover {
    background-color: #00796b;
    color: white;
}

.treatment1 {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.timeline-container {
    position: relative;
    width: 90%;
    margin: auto;
    padding-left: 30px;
}
.timeline-progress {
    position: absolute;
    left: 51%;
    top: 100px;
    width: 10px;
    background-color: #00796b;
    transform: translateX(-50%);
    z-index: 2;
    height: 0;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 51%;
    top: 80px;
    bottom: 0;
    width: 10px;
    background: #ccc;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-container::after {
    content: "";
    position: absolute;
    left: 51%;
    top: 120px;
    width: 10px;
    background-color: #00796b; /* active progress color */
    transform: translateX(-50%);
    z-index: 2;
    height: 0;
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.timeline-item.left {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 100px;
    height: 100px;
    background-color: #00796b;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item.right .timeline-marker {
    top: 0;
}

.timeline-item.left .timeline-marker {
    top: 0;
}

.timeline-content {
    background: white;
    border: 2px solid #00796b;
    padding: 18px 17px;
    text-align: center;
    width: 30%;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

.timeline-content img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 8px;
}

.timeline-content:hover {
    background-color: #00796b;
    color: white;
}

@media (max-width: 425px) {
    .timeline-marker {
        left: 47% !important;
    }

    .timeline-container::before {
        top: 80px;
    }
    .timeline-content {
        width: 100%;
        border-left: none;
        z-index: 15;
        margin-top: 110px !important;
    }
    .timeline-item {
        margin: 5rem 0;
    }

    .timeline-marker {
        margin-top: 0%;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .timeline-content {
        background: white;
        border: 2px solid #00796b;
        padding: 32px;
        text-align: center;
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 30%;
        z-index: 2;
    }
}

/* ===== Responsive Styles for Mobile ===== */

@media screen and (max-width: 768px) {
    .choosehead .ourhead {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: -0.025rem;
    }
}

.section-tittle {
    text-align: center;
}

.mainabout {
    margin-top: 8rem;
}

.dentalabout1,
.dentalabout2 {
    flex: 0 0 40%;
    text-align: center;
}

.dentalabout1 img,
.dentalabout2 img {
    display: block;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-us-images-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.value-card svg path {
    fill: #065f46;
    transition: fill 0.3s ease;
}

.value-card:hover svg path {
    fill: white;
}

.about-v2-single-img-wrap {
    flex: 1 1 45%;
    position: relative;
    text-align: center;
}

.about-v2-single-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.about-v2-img-shape-left {
    z-index: -1;
    /* background-color: #fa9552; */
    border-bottom-right-radius: 26px;
    width: 436.41px;
    height: 20px;
    position: absolute;
    inset: auto auto -18px 0%;
}

.about-v2-img-shape-right {
    z-index: -1;
    /* background-color: #fa9552; */
    border-top-left-radius: 26px;
    width: 436.41px;
    height: 20px;
    position: absolute;
    inset: -18px 0% auto auto;
}

.section-details {
    text-align: center;
}

.about-card:hover {
    color: white;
    background-color: #065f46;
}

.aboutsec {
    margin-top: 10rem;
}

.core-values-section {
    /* padding: 60px 20px; */
    text-align: center;
    background-color: #fff;
}

.core-title {
    font-size: 28px;
    font-weight: bold;
    margin: 50px 0;
}

.text-green {
    color: #007f5f;
}

.values-row {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 25px;
    justify-content: center;
    margin-bottom: 40px;
}

.value-card img:hover {
    background-color: white;
}

.value-card {
    background: #f4f4f4;
    padding: 25px 25px;
    width: 100%;
    height: auto;
    justify-items: center;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    background-color: #036c5f;
    color: white;
}

.value-card:hover img {
    fill: white;
}

.value-card.active {
    background-color: #007f5f;
    color: #fff;
}

.value-card.active .icon {
    background-color: #fff;
    color: #007f5f;
}

.icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.core-subtitle {
    font-size: 24px;
    font-weight: 500;
}

.doctor-section {
    /* padding: 60px 20px; */
    background: #fff;
    text-align: center;
}

.core-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .about-v2-img-shape-left {
        width: 100%;
    }
    .doctor-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 30px !important;
        position: relative;
    }
    .footermain {
        margin-top: 40px;
    }
}

.text-green {
    color: #007f5f;
}

.doctor-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
    position: relative;
}

.doctor-image-wrap {
    position: relative;
    width: 280px;
}

.doctor-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.image-bg {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: #f4a340;
    border-radius: 12px;
    z-index: 1;
}

.doctor-info-wrap {
    position: relative;
    max-width: 500px;
}

.info-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: #f4a340;
    border-radius: 12px;
    z-index: 1;
}

.info-card {
    background-color: #007f5f;
    color: white;
    padding: 60px 30px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.info-card h3 {
    margin-top: 0;
}

.info-card h5 {
    margin-top: 10px;
    color: #a0f2d2;
}

.info-card p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}

/* *****************************footer section****************** */

.foot-img {
    width: 80%;
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.footermain {
    background-color: var(--clr-);
    margin-bottom: 30px;
    position: relative;
}

.footerlist {
    margin-top: 5rem;
    color: white;
    line-height: 1.5;
}
.footerlist li a {
    text-decoration: none;
}

.foottime {
    margin-top: 5rem;
}

footer {
    position: relative;
    background-color: #0f766e;
    color: white;
    /* padding-top: 50px; */
    padding-bottom: 150px;
}

.footer-curve {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 750px;
    overflow-x: hidden;
    height: 100px;
    background-color: white;
    border-top-left-radius: 80px;
    z-index: 1;
}

.foothead {
    margin: 50px 0 0 0;
    text-align: center;
}

@media (max-width: 425px) {
    .footimg {
        width: 250px;
        margin-top: 1rem;
    }

    .footermain {
        margin: 30px 0 0;
    }
    .footer-curve {
        width: 350px !important;
        height: 80px !important;
    }
}
@media (min-width: 426px) and (max-width: 768px) {
    .footimg {
        width: 230px;
        margin-top: 3rem;
    }
    .footer-curve {
        width: 550px !important;
        height: 80px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footimg {
        width: 320px;
        margin-top: 3rem;
    }
}

/* ***************Gallery**************** */

.maingallery {
    margin-top: 8rem;
}
.gallhead {
    text-align: center;
    font-weight: 500;
}

.gallpatient {
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
}
.gallery-footer {
    margin-top: 3rem;
}

.app-buttgall:hover {
    text-decoration: none;
    font-weight: 600;
    color: black;
    background-color: white;
}

.app-buttgall {
    display: inline-block;
    border: 1px solid var(--clr-);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    color: white;
    background-color: var(--clr-);
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.patientour {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.patient-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.patient-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.patient-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    margin: 0;
    padding: 0.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
}
.gallvidhead {
    font-weight: 600;
    text-align: center;
}

.parent {
    width: 100%;
    height: 300px;
}

/* *************************FAQ Question************************ */

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    background-color: var(white);
}

.faq-question {
    margin: 0;
    font-size: 1.2rem;
    color: #03010d;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: #03010d;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 1rem;
}

.faq-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
    background-color: var(--clr-);
    color: white;
}

.faq-question {
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.325s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem 1rem;
}

.faq-answer p {
    background-color: var(--clr-);
}

.faq-item.active .faq-answer {
    display: block;
    color: white;
    background-color: var(--clr-);
}
.faq-toggle.active h3 {
    color: white;
}

.faq-toggle.active {
    color: black;
}

.quehead {
    text-align: center;
    font-weight: 600;
    margin: 30px 0;
    font-size: 2rem;
}

@media screen and (max-width: 767px) {
    .faq-question {
        font-size: 1.2rem;
    }
}

.horizontal-line {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px; /* or margin */
}

/* ****************** Blog*************** */

.blogimg {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 150px 0 150px 0;
}

.blogrimg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 26px;
    border-radius: 0 150px 0 150px;
}

.bloghead {
    color: white;
    background-color: var(--clr-);
    text-align: center;
    padding: 10px;
}

.blogdescription {
    margin-top: 2rem;
}

.blogside {
    border: 1px solid var(--clr-);
    height: auto;
}
.respimg {
    max-width: 150px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.sideblogimg {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.horizontal-line {
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.first-card {
    padding: 5rem;
    border: 1px solid red;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .top-images {
        flex-direction: column;
        align-items: center;
    }

    .top-images img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
.blogmainhead {
    margin-top: 7rem;
    text-align: center;
}

.testimonial-card:first-child {
    display: block;
}
@media (max-width: 768px) {
    .blogimg {
        margin-top: 20px;
        padding: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .blogdescription {
        margin-top: 1rem;
    }
}

/* Blog Posts Section
-------------------------------------------------------------- */
.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgb(238, 221, 221);
    transition: 0.3s;
}

.blog-posts .post-img img {
    transition: 0.5s;
    display: block;
    width: 100%;
    height: auto;
}

.blog-posts .post-date {
    background-color: var(--accent-color);
    color: white;
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog-posts .post-content {
    padding: 30px;
}

.blog-posts .post-title {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.blog-posts .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.blog-posts .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
    margin-top: 20px;
}

.blog-posts hr {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 15px;
}

.blog-posts .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
    color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 31px;
    list-style: none;
}

.blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog-pagination li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
    color: var(--contrast-color);
}
.fa-solid {
    padding: 6px 1px;
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}
.blog-detailsec {
    margin-top: 8rem;
}
.blogsidebar {
    margin-top: 8rem;
}

.blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
    /* margin: -30px -30px 20px -30px; */
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

.blog-imgside {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 15px;
}

.blogsidebar {
    box-shadow: 0 4px 10px rgb(238, 221, 221);
    height: 40%;
}

/*********************Services*******************
****************************************/

.modal-overlay,
.modal-overlay1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.active,
.modal-overlay1.active {
    display: flex;
}

.modal-box {
    color: white;

    border-radius: 10px;
    background-color: #004d40;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    position: relative;
}

.modal-overlay img,
.modal-overlay1 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Close button (better positioning & responsiveness) */
.close-btn {
    position: absolute;
    top: -35px;
    right: -34px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

/* Optional padding container if needed */
.modalfull {
    background-color: #004d40;
    padding: 3rem;
    margin: 6rem auto;
    border-radius: 10px;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
}

/* Tablet & below (768px) */
@media (max-width: 768px) {
    .modal-box {
        padding: 1.5rem;
    }

    .modalfull {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (max-width: 320px) {
    .close-btn {
        top: -157px;
        bottom: -50px;
        right: -33px;
        font-size: 24px;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
}
@media (min-width: 321px) and (max-width: 425px) {
    .close-btn {
        top: -196px;
        bottom: 30px;
        right: -33px;
        font-size: 24px;
        width: 25px;
        height: 25px;
        line-height: 25px;
    }
}

@media (min-width: 426px) and (max-width: 526px) {
    .close-btn {
        top: -245px;
        bottom: 30px;
        right: -33px;
    }
}

@media (min-width: 527px) and (max-width: 627px) {
    .close-btn {
        top: -302px;
        bottom: 30px;
        right: -33px;
    }
}

@media (min-width: 628px) and (max-width: 767px) {
    .close-btn {
        top: -375px;
        bottom: 30px;
        right: -33px;
    }
}

/* Small devices (<=480px) */
@media (max-width: 480px) {
    .modal-box {
        padding: 0;
        margin: 0;
    }

    .modalfull {
        padding: 1.5rem;
        margin: 0.5rem;
    }
}

.service-section {
    padding: 60px 20px;
    text-align: center;
}
.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px 30px;
}
.cardservice {
    background-color: #f3f4f6;
    padding: 25px;
    border-radius: 30px;
    transition: transform 0.3s ease;
    width: 290px;
    height: 300px;
    margin: auto;
    box-sizing: border-box;
}

.cardservice svg {
    display: block;
    margin: 20px auto;
}

.cardservice:hover {
    background-color: #036c5f;
    color: white;
}
.cardservice:hover p {
    background-color: #036c5f;
    color: white;
}
.cardservice:hover a {
    background-color: #036c5f;
    color: white;
}

.cardservice svg path {
    fill: #036c5f;
    transition: fill 0.3s ease;
}

.cardservice:hover svg path {
    fill: white;
}

.cardservice img {
    width: 100%;
    height: auto;
    margin: auto;
    margin-bottom: 15px;
}

.cardservice h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cardservice p {
    font-size: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.card.active {
    background-color: #065f46;
    color: white;
}

.card.active a {
    color: white;
}

.prob-section {
    text-align: center;
}

.read-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 25px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.read-more-btn:hover {
    background-color: #0056b3;
}
.replace:hover {
    background-color: #0f766e;
    border-radius: 50px;
    color: white;
}
.replace {
    border: 2px solid #0f766e;
    border-radius: 20px;
}

.clean:hover {
    background-color: #0f766e;
    border-radius: 50px;
    color: white;
}
.clean {
    border: 2px solid #0f766e;
    border-radius: 20px;
}
.service-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px 30px;
}

.cardservice {
    background-color: #f3f4f6;
    padding: 25px;
    border-radius: 30px;
    transition: transform 0.3s ease;
    width: 250px;
    height: 300px;
    box-sizing: border-box;
}

.cardservice:hover {
    background-color: #036c5f;
    color: white;
}
.cardservice:hover p {
    background-color: #036c5f;
    color: white;
}
.cardservice:hover a {
    background-color: #036c5f;
    color: white;
}

.cardservice img {
    width: 40px;
    margin-bottom: 15px;
}

.clean {
    font-size: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.cardservice a {
    color: #065f46;
    text-decoration: none;
    font-weight: 500;
}

.card.active {
    background-color: #065f46;
    color: white;
}

.card.active a {
    color: white;
}

.read-more-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 25px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.read-more-btn:hover {
    background-color: #0056b3;
}
.replace:hover {
    background-color: #0f766e;
    border-radius: 50px;
    color: white;
}
.replace {
    border: 2px solid #0f766e;
    border-radius: 20px;
}

.clean:hover {
    background-color: #0f766e;
    border-radius: 50px;
    color: white;
}
.clean {
    border: 2px solid #0f766e;
    border-radius: 20px;
}
/* 
  ************Appointment**************** */

.form-section {
    background-image: url("img/dentalfaq.webp");
    background-size: cover;
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
}

.form-section {
    margin-top: 4rem;
}

.form-head {
    text-align: center;
}
.form-para {
    text-align: center;
}

.form-container {
    max-width: 1200px;
    margin: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.form-group {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
}

.full-width {
    flex: 1 1 100%;
}

.form-group label,
.form-group p {
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-button {
    display: inline-block;
    border: 1px solid var(--clr-);
    width: 50%;
    text-align: center;
    margin: auto;
    padding: 10px;
    border-radius: 10px;
}

.form-button:hover {
    background-color: var(--clr-);
    text-decoration: none;
    color: white;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .form-group {
        flex: 1 1 100%;
    }
}

/* ***************Contact Us ********************* * */

.contpage {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.contheading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-card {
    background-color: #99f6e4;
    border-radius: 30px;
    padding: 15px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    flex: 1 1 20px; /* Flex-grow, shrink, and basis */
}

.hover-label {
    transition: all 0.7s ease 0.9s; /* delay of 0.2s */
}

.card-link {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

.card-icon i {
    font-size: 2rem;
    background-color: white;
    border-radius: 50%;
    padding: 15px;
    color: #0f766e;
}

.phone-number {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 15px;
}
.location {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 15px;
}

.hover-label {
    background-color: white;
    color: #0f766e;
    border-radius: 25px;
    padding: 5px 15px;
    margin-top: 15px;
    /* opacity: 0;yh
  transition: opacity 0.3s ease;  */
    font-weight: 500;
}

.contact-card:hover .hover-label {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 24px;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
    .card-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.fullmap {
    width: 100%;
    height: 100%;
    margin-bottom: 200px;
}

.saimap {
    height: 500px;
    width: 100%;
}

.treatment-fixed-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #004d40;
    color: white;
    padding: 16px;
    border-radius: 10px;
    width: 250px;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
    .values-row {
        display: flex;
        flex-direction: column;
        padding: 25px 0px 10px 0px;
        gap: 25px;
        align-items: center;
    }
}
@media (min-width: 768px) and (max-width: 990px) {
    .values-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 25px 0px 10px 0px;
        gap: 20px;
        margin-bottom: 30px;
    }

    .value-card {
        width: calc(50% - 10px);
        box-sizing: border-box;
    }
}
