/* -------------------- Base / Reset -------------------- */
:root {
    --color-primary: #1c355e;
    --color-primary-dark: #14264c;
    --color-accent: #238dc1;
    --color-accent-2: #64a9ff;
    --color-light-blue: #e9f3fc;
    --color-off-white: #f2f7fb;
    --color-success: #25d366;
    --color-muted: #4a4a4a;
    --color-gray-border: #c9d8e3;
    --white: #ffffff;
    --black: #000000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Karla", sans-serif !important;
    color: var(--color-muted);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

p,
.karlian-text {
    font-family: "Karla", sans-serif !important;
}

@keyframes loop-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.animate-loop-scroll {
    animation: loop-scroll 25s linear infinite;
}


.desktop-b {
    display: block;
}

.mobile-b {
    display: none;
}

.banner img {
    width: 100%;
}

.banner-content {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: left;
    z-index: 2;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
}

.hero {
    position: relative;

}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 48% !important;
    margin: auto;
    top: 0rem;
    text-align: left;
}

.hero h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
}

/* -------------------- Hero -------------------- */


.img-fluid {
    height: 100%;
}

@media (max-width: 768px) {
    .hero {
        min-height: 360px;
    }

    .hero-inner {
        position: unset;
        max-width: 100% !important;
    }

    .hero h1 {
        font-size: 36px;
    }
}

/* -------------------- Procedure Section -------------------- */

.procedure-box {
    background-color: #EAF5FB;
    border-radius: 12px;
    padding: 40px 40px;
}

.procedure-box p {
    font-family: "Karla", sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 24px;
    margin-bottom: 6px;
    padding-right: 1rem;
}

.procedure-img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .procedure-box {
        padding: 40px 25px;
    }

    .procedure-title , 
    .video-section h2, 
    .cost-title,
    .faq-title, 
    .before-after-title, 
    .blogs-title{
        font-size: 30px !important;
        text-align: center !important;
    }

    .procedure-box p {
        text-align: center;
        padding: 0;
    }
}


/* --- Bunion features section --- */
.bunion-features {
    background-color: #EDF9FF;
    padding: 56px 16px 72px;
    font-family: 'Karla', sans-serif;
}

/* Title (Cormorant Garamond) */
.bf-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 40px;
    /* close to screenshot */
    line-height: 1.15;
    color: #1C355E;
    text-align: center;
    margin: 0 0 34px;
    letter-spacing: 0.2px;
}

/* grid of cards */
.bf-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    /* spacing between cards */
    align-items: stretch;
    justify-items: center;
}

/* each card style */
.bf-card {
    width: 100%;
    /* card width */
    background: #ffffff;
    border-radius: 10px;
    padding: 28px 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    /* subtle shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    box-sizing: border-box;
}

/* circular icon container */
.bf-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #238DC1;
    /* circle background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.04);
}

/* if using inline SVG make svg size to fit */
.bf-icon svg {
    width: 46px;
    height: 46px;
    display: block;
}

/* caption text under icon */
.bf-caption {
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    line-height: 1.25;
    font-weight: 500;
    padding: 0 6px;
}

/* ---------- Responsive breakpoints (sm / md / lg) ---------- */

/* Small screens: stack with 2 columns (or 1) */
@media (max-width: 575.98px) {
    .bf-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 18px;
    }

    .bf-card {
        width: 100%;
        max-width: 420px;
        padding: 22px;
        min-height: auto;
    }

    .bf-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

/* Medium screens: 2 columns */
@media (min-width: 576px) and (max-width: 991.98px) {
    .bf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .bf-title {
        font-size: 34px;
    }
}

/* Large screens: 3 columns for medium-large widths */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .bf-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .bf-title {
        font-size: 38px;
    }
}

/* Extra large (desktop): 5 columns */
@media (min-width: 1200px) {
    .bf-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .bf-card {
        width: 220px;
    }

    .bf-title {
        font-size: 48px;
    }
}


/* -------------------- Candidate Section -------------------- */
.candidate-section {
    background-color: #fff;
    padding: 70px 0;
}

.candidate-img {
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.candidate-content {
    padding: 0 20px;
}

.candidate-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #1C355E;
    margin-bottom: 18px;
    text-align: left;
}

.candidate-section p {
    font-family: "Karla", sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Responsive layout */
@media (max-width: 992px) {
    .candidate-section {
        padding: 50px 0;
    }

    .candidate-title {
        text-align: center;
        font-size: 34px;
        margin-top: 2rem;
    }

    .candidate-section p {
        text-align: center;
    }

    .candidate-img {
        width:100%;
    }

}

/* -------------------- Keyhole Bunion Surgery Procedure Section -------------------- */
:root {
    --bg: #EAF6FB;
    /* light blue background like screenshot */
    --text: #1C355E;
    /* deep blue for headings */
    --muted: #5b6b7c;
    /* muted paragraph color */
    --card-bg: #ffffff;
    --accent: #BFD9EE;
    /* pale left bar */
    --leftbar: #1C355E;
    /* active left bar color */
}

/* Section layout */
.procedure-section {
    background: #fff;
    padding: 56px 20px;
    font-family: 'Karla', sans-serif;
}

.procedure-inner {
    margin: 0 auto;
}

/* Title */
.procedure-title {
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    color: #1C355E;
    font-weight: 400;
    font-size: 48px;
    margin-bottom: 34px;
    letter-spacing: 0.5px;
}

/* Grid */
.preparing-section {
    background: #EAF6FB;
    padding: 80px 0px;
}

.procedure-grid {
    display: flex;
    grid-template-columns: 1fr 630px;
    gap: 35px;
}

/* Steps list */
.procedure-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
        width: 65%;
}

/* Individual step button */
.step-item {
    background: transparent;
    border: none;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background .18s ease;
    outline: none;
}

/* subtle hover */
.step-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* left vertical bar visual */
.step-leftbar {
    width: 6px;
    height: 100%;
    border-radius: 4px;
    background: #BFD9EE;
    flex-shrink: 0;
    box-shadow: none;
}

/* step label container */
.step-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    flex: 1;
}

/* step title */
.step-title {
    color: #1C355E;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 40px;
}

/* inline hidden short description (visible only for active) */
.step-desc-inline {
    color: #363636;
    font-size: 16px;
    line-height: 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .24s ease;
    font-family: "Karla", sans-serif !important;
}

/* arrow */
.step-arrow {
    color: #1C355E;
    font-size: 18px;
    transform: rotate(180deg);
    /* default down */
    transition: transform .18s ease;
    margin-left: 8px;
}

/* Active step styling */
.step-item.active {
    background: rgba(255, 255, 255, 0.04);
}

.step-item.active .step-arrow i{
    transform: rotate(0deg);
}

.step-item.active .step-leftbar {
    background: #1C355E;
}

.step-item.active .step-desc-inline {
    max-height: 300px;
    opacity: 1;
}

/* arrow up for active */
.step-item.active .step-arrow {
    transform: rotate(0deg);
}

/* Right image card */
.procedure-image img {
    display: none;
}

.procedure-image img.active {
    display: block;
}

.procedure-image {
    display: flex;
    justify-content: center;
   
    border-radius: 25px;
    width: 55%;
}

.procedure-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
     background: #fff;
}
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}
.step-arrow i { transition: transform .2s ease; }
.step-arrow i.rotate { transform: rotate(180deg); }
/* Smooth accordion container */
.step-content,
.mobile-only {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

/* When active → auto expands smoothly */
.step-item.active .mobile-only {
    max-height: 500px; /* Large enough so it never clips */
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .procedure-grid {
        grid-template-columns: 1fr 420px;
    }
}

@media (max-width: 900px) {
    .procedure-grid {
        grid-template-columns: 1fr;
    }

    .procedure-title {
        font-size: 30px;
    }
}

/* small screens - increase spacing */
@media (max-width: 480px) {

    .step-leftbar {
        height: 42px;
        width: 6px;
    }

    .step-title {
        font-size: 18px;
    }
    .procedure-grid{
      display: block;
    }
    .procedure-steps{
      width: 100%;
    }
      .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

/* -------------------- Recovery Section -------------------- */
/* -------------------- Recovery Section -------------------- */
.recovery-section {
    background-color: #fefefe;
    font-family: 'Karla', sans-serif;
}

.recovery-title {
    font-family: 'Cormorant Garamond', serif;
    color: #1C355E;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

/* Card */
.recovery-section {
    background-color: #fefefe;
    padding: 80px 0px;
}

.recovery-card {
    border: 1px solid #D8D8D8;
    border-radius: 6px;
    overflow: visible;
    background: #fff;
    margin: 40px auto 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
}

.recovery-card::before,
.recovery-card::after {
    content: "";
    position: absolute;
    top: -10px;
    width: 10px;
    height: 28px;
    background: #000;
    border-radius: 3px;
    z-index: 3;
}

.recovery-card::before,
.recovery-card::after {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.recovery-card::before {
    left: 28%;
}

.recovery-card::after {
    right: 28%;
}

/* -------------------- Header -------------------- */
.recovery-header {
    background-color: #1C355E;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    padding: 22px 14px;
    border-bottom: 1px solid #1C355E;
    position: relative;
    border-radius: 6px 6px 0 0;
    text-align: center;
    overflow: visible;
    /* clips can extend */
}

/* -------------------- Binder Clips -------------------- */

/* -------------------- Body -------------------- */
.recovery-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    padding: 40px;
    line-height: 24px;
    text-align: center;
    font-family: 'Karla', sans-serif;
}

/* -------------------- Carousel adjustments -------------------- */
.recovery-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.recovery-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.recovery-carousel .owl-nav {
    position: absolute;
    top: 61%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.recovery-carousel .owl-nav button.owl-prev,
.recovery-carousel .owl-nav button.owl-next {
    background: none;
    border: none;
    font-size: 26px;
    color: #1C355E;
    transition: color 0.3s;
}

.recovery-carousel .owl-nav button.owl-prev {
    position: relative;
    right: 0rem;
}

.recovery-carousel .owl-nav button.owl-next {
    position: relative;
    left: 0rem;

}

.recovery-carousel .owl-nav button:hover {
    color: #000;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .recovery-title {
        font-size: 28px;
    }

    .recovery-card {
        width: 90%;
    }

    .recovery-carousel .owl-nav button.owl-next,
    .recovery-carousel .owl-nav button.owl-prev {
        left: 0px;
        right: 0px;

    }
}

/* -------------------- YouTube Video Section -------------------- */
.video-section {
    background-color: #EAF4FB;
    padding: 80px 0 !important;
}

.video-title {
    font-family: 'Cormorant Garamond', serif;
    color: #1C355E;
    font-size: 40px;
    font-weight: 500;
}

.video-wrapper {
    position: relative;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-placeholder {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* -------------------- Cost Section -------------------- */
/* SECTION */
.cost-section {
    background-color: #EAF4FB;
    font-family: 'Karla', sans-serif;
    position: relative;
}

.cost-title {
    font-family: 'Cormorant Garamond', serif;
    color: #1C355E;
    font-size: 48px;
    font-weight: 500;
}

/* Row divider */

/*.cost-row::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #B7C5DC;
}
*/
/* Columns */
/*.cost-column {
    padding: 0 40px;
}*/

/* Cost Item (tab) */
.cost-item {
    border-left: 3px solid #B7C5DC;
    /* default light indicator */
    transition: border-color 0.3s ease;
    padding-left: 20px;
    margin: 0 10px;
}

.cost-item.active {
    border-left-color: #1C355E;
    /* dark blue when active */
}

/* Header */
.cost-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    color: #1C355E;
    padding: 16px 0;
    transition: color 0.3s ease;
}

.cost-header h3 {
    font-size: 32px !important;
    font-weight: 500 !important;

}

.cost-header p {
    font-size: 16px !important;
}

.cost-header i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cost-item.active .cost-header i {
    transform: rotate(180deg);
}

/* Body */
/*.cost-body  {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  animation: fadeIn 0.3s ease;
}*/

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cost-body p {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

/* Table */
.cost-body table {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px auto 15px;
    animation: fadeIn 0.3s ease;
    display: block;
}

.cost-body table th {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid #C9D8E8;
    text-transform: uppercase;
    font-size: 16px;
}

.cost-body table td {
    padding: 10px 0;
    border-bottom: 1px solid #E0E0E0;
    font-size: 16px;
    color: #000;
}

.cost-body table tr:last-child td {
    border-bottom: none;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cost-row::before {
        display: none;
    }

    .cost-column {
        padding: 0 15px;
        border-bottom: 1px solid #C9D8E8;
    }

    .cost-column:last-child {
        border-bottom: none;
    }
}

/* -------------------- FAQ Section -------------------- */
.faq-section {
    background: #fff;
    padding: 80px 0
}

.faq-title {
    font-family: "Cormorant Garamond", serif;
    text-align: center;
    color: #1C355E;
    font-size: 48px;
    margin-bottom: 34px;
}

/* Accordion wrapper: single border visually only between items */
.faq-wrap {
    margin: 0 auto;
    border-top: 0;
    /* no outer border */
    border-bottom: 0;
}

/* Each item: no outer border, only a divider between items */
.faq-item {
    position: relative;
    padding: 0;
    margin: 0;
    background: transparent;
}

/* Question button */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 14px 8px;
    font-family: "Karla", sans-serif;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

/* subtle top spacing like in screenshot */
.faq-item+.faq-item .faq-q {
    padding-top: 18px;
}

/* Divider: show thin line between items — implemented as :after on faq-item for closed states */
.faq-item::after {
    content: "";
    display: block;
    height: 1px;
    background: #E6E7EA;
    /* light divider */
    margin: 0 0 0 0;
}

.faq-q span{
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.faq-a p{
    font-size: 16px;
    color: 363636;
}

/* Answer hidden by default; when visible we want divider below the answer, not below the question */
.faq-a {
    padding: 0 8px 18px 8px;
    font-family: "Karla", sans-serif;
    color: #363636;
    font-size: 16px;
    line-height: 1.8;
}

/* When active — we will move the divider beneath the answer by setting item::after margin-top */
.faq-item.active::after {
    margin-top: 0;
}

/* Chevron */
.faq-chevron {
    font-size: 18px;
    color: #1C355E;
    transition: transform 0.25s ease;
}

/* Rotate when expanded */
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

/* Tweak spacing for large screens to match screenshot feel */
@media (min-width: 992px) {
    .faq-q {
        padding: 18px 12px;
        font-size: 16px;
    }

    .faq-a {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px;
    }
}

/* -------------------- Before & After Section -------------------- */
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: flex;
}

.before-after-section {
    background-color: #EAF4FB;
    font-family: 'Karla', sans-serif;
    padding: 80px 0;
}

.before-after-title {
    font-family: 'Cormorant Garamond', serif;
    color: #1C355E;
    font-size: 48px;
    font-weight: 500;
}

/* Carousel Items */
.ba-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 10px;
}

/* Images Row */
.ba-images {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.ba-images img {
    width: 48%;
    border-radius: 6px;
    object-fit: cover;
}

.ba-images i {
    font-size: 28px;
    color: #1C355E;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Info (Blue Footer Bar) */
.ba-info {
    background-color: #1C355E;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

.ba-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ba-info p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: #DCDCDC;
}

/* Owl Carousel Arrows */
.before-after-carousel .owl-nav {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.before-after-carousel .owl-nav button {
    background: none;
    border: none;
    font-size: 26px;
    color: #1C355E;
    transition: color 0.3s ease;
}

.before-after-carousel .owl-nav button:hover {
    color: #000;
}

.before-after-carousel .owl-nav button.owl-prev,
.before-after-carousel .owl-nav button.owl-next {
    background: none;
    border: none;
    font-size: 26px;
    color: #1C355E;
    transition: color 0.3s;
}

/* Dots hidden */
.before-after-carousel .owl-dots {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ba-images {
        flex-direction: column;
        gap: 10px;
    }

    .ba-images img {
        width: 100%;
    }

    .ba-images i {
        position: static;
        transform: none;
    }
}

/* -------------------- Blogs Section -------------------- */
.blogs-section {
    background-color: #fff;
    font-family: 'Karla', sans-serif;
    padding: 80px 0;
}

.blog-slider.owl-carousel .owl-dots.disabled,
.blog-slider.owl-carousel .owl-nav.disabled {
    display: none;
}

.blogs-title {
    font-family: 'Cormorant Garamond', serif;
    color: #1C355E;
    font-size: 48px;
    line-height: 68px;
    font-weight: 400;
}

/* Blog Card */
.blog-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: #EDF9FF;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card .blog-content {
    padding: 18px 20px;
    color: #333;
    border: 1px solid #EDF9FF;
}

.blog-date {
    color: #1C355E;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}

.blog-title {
    font-family: 'Karla', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-desc {
    font-size: 16x;
    color: #363636;
    margin-bottom: 12px;
    line-height: 1.6;
}

.blog-link {
    font-size: 16px;
    font-weight: 600;
    color: #238DC1;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-img img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-img img {
        height: 180px;
    }
}

/* -------------------- Profile Card Section -------------------- */
.consultant-section {
    background-color: #ffffff;
    font-family: 'Karla', sans-serif;
}

.consultant-card {
    background-color: #EAF6FB;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    max-width: 1000px;
    justify-self: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.consultant-image {
    overflow: hidden;
    border-radius: 12px 0 0 12px;
}

.consultant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right content */
.consultant-info {
    flex: 1;
    padding: 50px 30px;
    color: #111;
}

.consultant-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: #1C355E;
    margin-bottom: 15px;
    text-align: left;
}

.consultant-title {
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.consultant-desc {
    font-size: 16px;
    color: #000;
    line-height: 24px;
    margin-bottom: 25px;
}

/* Meta details */
.consultant-meta {
    display: flex;
    flex-direction: column;
}

.consultant-meta p {
    font-size: 20px;
    line-height: 24px;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
}

.consultant-meta strong {
    color: #238DC1;
    font-weight: 400;
    display: inline-block;
    width: 110px;
    font-size: 16px;
}

/* Link */
.consultant-link {
    display: inline-block;
    margin-top: 18px;
    color: #1C355E;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1C355E;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.consultant-link:hover {
    color: #000;
    border-color: #000;
}

/* ---------------------- Responsive ---------------------- */
@media (max-width: 992px) {
    .consultant-card {
        flex-direction: column;
        border-radius: 12px;
    }

    .consultant-image {
        border-radius: 12px 12px 0 0;
        height: 350px;
    }

    .consultant-info {
        padding: 30px 25px;
    }

    .consultant-name {
        font-size: 28px;
    }
}


/* -------------------- Contact / Get In Touch -------------------- */
.contact-section {
    padding: 80px 24px;
    background-color: #F2F7FB;
}


.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ---------- FORM ---------- */
.contact-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 0 auto;
    align-items: stretch;
}

/* Left Image */
.contact-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}


@media screen and (min-width: 1025px) and (max-width: 1280px) {
     .section-heading{
        font-size: 42px !important;
     }
} 


@media screen and (min-width: 992px) and (max-width:1024px) {
     .section-heading{
        font-size: 42px !important;
     }
     .recovery-body{
        padding: 30px;
        font-size: 14px;
        margin-bottom: 10px;
     }
     .recovery-header{
        font-size: 26px;
        padding: 15px;
     }
} 

@media screen and (min-width: 768px) and (max-width: 991px) { 
  .desktop-b{
    display: block !important;
  }
  .mobile-b{
    display: none !important;
  }
  .banner-content {
        top: 0 !important;
        bottom: 0 !important;
    }
    .hero h1{
        font-size: 42px;
    }
    .recovery-body{
        padding: 20px;
    }
    .video-section h2, .cost-title, .faq-title, .before-after-title, .blogs-title{
        font-size: 34px !important;
    }
    .consultant-image{
        height: auto;
    }
}

@media (max-width: 991px) {
    .mobile-b{
        display: block;
    }
    .desktop-b{
        display: none;
    }
    .cost-section{
        padding-top: 0 !important;
    }
    .foot_condition_wrapper .banner-section .desktop-banner{
        display: none !important;
    }
    .foot_condition_wrapper .banner-section .mobile-banner{
        display: block !important;
    }
    .banner-content{
        top: auto;
        bottom: 7%;
    }
    .video-wrapper iframe{
        height: 400px;
        border-radius: 8px;
    }
    .consultant-image img{
        height: auto;
    }
}


