* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
}

.emi-text-desk {
    padding: 5px 8px;
    position: absolute;
    bottom: -35px;
}

.p-relative {
    position: relative;
}

.desk-none {
    display: none;
}

.c-point {
    cursor: pointer;
}

.sticky-callback {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #ED3871, #ff4081);
    transition: bottom 0.3s ease;
}

.hide-sticky-callback {
    bottom: -10%;
}

.stick-callback-button {
    background: #ED3871;
    color: white;
    width: 100%;
    padding: 14px 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

.callback-button {
    display: inline-block;
    background: #ED3871;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
    .sticky-callback {
        display: block;
    }
}

/* Navbar Section */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 120px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 70px;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
    width: auto;
}

.navbar .logo-text {
    background: #ED3871;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
}

.navbar .phone-number {
    /* background: #673ab7; */
    color: white;
    /* padding: 12px 20px; */
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
    white-space: nowrap;
    position: relative;
    transform-origin: right;
    /* animation: expandAlternateParent 3s ease infinite; */
}

.navbar .phone-contain {
    display: flex;
    padding: 12px 20px;
    border-radius: 25px;
    background-color: #673ab7;
    gap: 10px;
    transform-origin: right;
    padding-left: 15px;
    align-items: center;
    animation: expandAlternateParent 3s ease infinite;
}

/* .navbar .phone-number::before {
  content: ''; 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;         
  height: 100%;
  background: #673ab7;   
  z-index: -1;          
  transition: width 0.5s ease;
  border-radius: 25px;
  transform-origin: right;
  /* animation: expandAlternateParent 3s ease infinite; */
} */

.navbar .phone-number .display-did {
    overflow: hidden;
  transform-origin: right;
  /* animation: expandAlternate 3s ease infinite; */
}

/* .navbar .phone-number:hover {
    background: #5e35b1;
} */

.navbar .phone-number .phone-icon {
    display: flex;
    animation: callRotate 0.9s ease infinite;
}

@keyframes callRotate {
    0%, 100% {
        transform: rotate(0);
    }

    50% {
        transform: rotate(48deg);
    }
}

/* @keyframes expandAlternate {
  0% {
    width: 100%;
  }
  50% {
    width: 30%;
  }
  100% {
    width:   100%;
  }
} */
/* 
@keyframes expandAlternate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.0875);
  }
  100% {
    transform: scaleX(1);
  }
} */

@keyframes expandAlternateParent {
  0% {
    width: 100%;
  }
  50% {
    width: 25%;
  }
  100% {
    width:   100%;
  }
}

/* @keyframes expandAlternateParent {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.3);
  }
} */
@keyframes expandAlternate {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
}

/* Excellence Banner Section */
.excellence-banner {
    background: #ED3871;
    color: white;
    text-align: center;
    padding: 0 15px;
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    bottom: -29px;
    left: 0;
    width: 100%;
    font-family: 'Lato', sans-serif;
}

.excellence-banner .excellence-track {
    white-space: nowrap;
    display: flex;
    width: 100%;
    animation: slideMessages 25s infinite;
}

.excellence-banner .excellence-track .excellence-item {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    padding: 0 10px;
}

@media (max-width: 550px) {
    .excellence-banner .excellence-track .excellence-item {
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        text-align: center;
        padding: 3px 10px;
        font-size: 10px;
    }
}

@keyframes slideMessages {
    0%, 10% {
        transform: translateX(0);
    }
    15%, 25% {
        transform: translateX(-100%);
    }
    30%, 40% {
        transform: translateX(-200%);
    }
    45%, 55% {
        transform: translateX(-300%);
    }
    60%, 70% {
        transform: translateX(-400%);
    }
    75%, 90% {
        transform: translateX(-500%);
    }
    100% {
        transform: translateX(0);
    }
}


/* Pause animation on hover */
/* .sliding-banner:hover .banner-track {
    animation-play-state: paused;
} */

/* Banner Section */
.banner-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.9) 0%, rgba(227, 242, 253, 0.8) 100%);
    margin-top: 99px;
}

.banner-section .banner-images {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.banner-section .banner-image {
    width: 100%;
    z-index: 1;
}

.banner-section .banner-image.desktop {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}

.banner-section .banner-image.mobile {
    display: none;
}

.banner-section .banner-content {
    position: relative;
    z-index: 3;
    padding: 48.5px 0 48.5px 57px;
    display: grid;
    grid-template-columns: 66% 44%;
    gap: 20px;
    align-items: center;
    background: linear-gradient(91.22deg, #E9F7F6 0.77%, #FFFFFF 35.19%, rgba(255, 255, 255, 0) 66.63%);
}

.banner-section .banner-content .content-left {
    padding-right: 20px;
}

.banner-section .banner-content .content-left img {
    max-width: 100%;
    display: none;
}

.banner-section .banner-content .banner-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #181C1C;
    max-width: 90%;
    font-family: 'Lato', sans-serif;
}

.banner-section .banner-content .banner-title .highlight {
    color: #ED3871;
}

.banner-section .banner-content .content-right {
    display: none;
}

/* Offers Section */
.offers-section {
    background: transparent;
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offers-section .offer-percent {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offers-section .offer-percent p {
    font-size: 14px;
}

.offers-section .offers-title {
    color: #ED3871;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    padding: 12px 20px;
    text-align: center;
    margin: 0;
    border-bottom: 2px solid #f1f3f4;
    width: 50%;
    border-radius: 50px;
    background-color: #FDF1F3;
    border: 1px solid #FFD1E2;
    margin-bottom: -26px;
    z-index: 2;
}

.offers-section .offers-content {
    padding: 40px 15.5px 24px 15.5px;
    background-color: #FFFFFF;
    border: 1px solid #FFD1E2;
    border-radius: 16px;
}

.offers-section .offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 12px;
}

.offers-section .offer-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.offers-section .offer-item .discount {
    font-size: 38px;
    font-weight: 800;
    color: #ED3871;
    line-height: 1;
    font-style: italic;
    font-family: 'Lato', sans-serif;
    display: flex;
}

.offers-section .offer-text {
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #181C1C;
}

.content-left .cta-button {
    background: #ED3871;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.content-left .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}


/* Form Section */
.form-section {
    background: white;
    padding: 60px 120px;
}

.form-container {
    border-radius: 20px;
}

.form-section .form-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #181C1C;
    margin-bottom: 24px;
}

.cost-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto auto auto;
    gap: 15px;
    align-items: start;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus {
    border-color: #ED3871;
}

.form-input::placeholder {
    color: #999;
}

.form-input.error {
    border-color: #dc3545;
}

.location-select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

.location-select:focus {
    border-color: #ED3871;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 280px;
}

.captcha-input {
    padding: 15px 25px;
    border: 2px solid #d0d0d0;
    border-radius: 50px 0 0 50px;
    font-size: 16px;
    outline: none;
    background: white;
    flex: 1;
    min-width: 150px;
    color: #666;
    border-right: none;
}

.captcha-input::placeholder {
    color: #999;
}

.captcha-input:focus {
    border-color: #ED3871;
}

.captcha-input.error {
    border-color: #dc3545;
}

.captcha-display {
    background: #f8c8d8;
    padding: 10px 25px;
    border-radius: 0 50px 50px 0;
    font-weight: bold;
    font-size: 18px;
    color: #181C1C;
    min-width: 80px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    border: 2px solid #d0d0d0;
    border-left: none;
}

.captcha-display:hover {
    background: #f5b8cc;
    transform: scale(1.02);
}

.error-message {
    color: #dc3545;
    font-size: 15px;
    margin-top: 8px;
    display: none;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 15px;
    margin-top: 8px;
    padding-left: 10px;
}

.captcha-refresh {
    background: #673ab7;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: #5e35b1;
    transform: rotate(180deg);
}

.submit-btn {
    background: #ED3871;
    color: white;
    padding: 13.6px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.safety-text {
    color: #808080;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.safety-text::before {
    content: "✓";
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.emi-text {
    color: #ED3871;
    font-size: 16px;
    font-weight: 600;
}

.error-message {
    color: #dc3545;
    font-size: 15px;
    margin-top: 5px;
    display: none;
}

.success-message {
    color: #28a745;
    font-size: 16px;
    margin-top: 15px;
    display: none;
    text-align: center;
    padding: 10px;
    background: #d4edda;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
}

@media (min-width: 768px) and (max-width: 900px) {
    .offers-section .offers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1370px) {
    .form-section {
        padding: 30px 40px;
    }
}

@media (max-width: 1280px) {
    .cost-form {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Mobile Responsive for Form */
@media (max-width: 768px) {
    .form-section {
        padding: 30px 20px;
    }

    .safety-text {
        justify-content: center;
    }

    .form-container {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-section .form-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .cost-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .captcha-group {
        justify-content: space-between;
    }

    .captcha-input {
        flex: 1;
    }

    .submit-btn {
        width: 100%;
        padding: 9.6px;
        font-size: 18px;
        margin-top: 10px;
    }

    .form-input,
    .location-select {
        padding: 18px 20px;
        font-size: 16px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .cost-form {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .captcha-group {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .submit-btn {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 300px;
    }

    .emi-text-desk {
        padding: 5px 8px;
        position: relative;
        bottom: 0;
    }
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        height: 60px;
    }

    .navbar .logo-text {
        font-size: 16px;
        padding: 6px 12px;
    }

    .navbar .phone-number {
        padding: 10px 15px;
        font-size: 14px;
    }

    .excellence-banner {
        padding: 4px;
        font-size: 14px;
        bottom: -30px;
    }

    .banner-section {
        min-height: auto;
        background: #f0f8ff;
        margin-top: 90px;
    }

    .banner-section .banner-image.desktop {
        display: none;
    }

    .banner-section .banner-image.mobile {
        display: block;
    }

    .banner-section .banner-content {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 40px 16px 12px 16px;
        margin-top: 90px;
        margin-left: 0;
        /* background: linear-gradient(0deg, #DFF0EE 0.97%, #F4FBFA 1.94%, #FFFFFF 71.22%, rgba(255, 255, 255, 0) 81.88%); */
        background: linear-gradient(0deg, #DFF0EE -10.03%, #F4FBFA 1.94%, #FFFFFF 71.22%, rgba(255, 255, 255, 0) 93.88%);
        width: 100%;
    }

    .banner-section .banner-content .content-left {
        padding-right: 0;
    }

    .banner-section .banner-content .content-left img {
        display: block;
    }

    .banner-section .banner-content .banner-title {
        font-size: 18px;
        margin-bottom: 20px;
        max-width: 100%;
        text-align: center;
        line-height: 120%;
    }

    .offers-section .offer-item {
        gap: 3px;
    }

    .banner-section .banner-content .content-right {
        display: block;
        order: -1;
        text-align: center;
        margin-bottom: 15px;
    }

    .banner-section .banner-content .content-right img {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .offers-section {
        margin-bottom: 20px;
        width: 100%;
        /* display: none; */
    }

    .offers-section .offer-percent p {
        font-size: 8px;
    }

    .offers-section .offer-percent {
        font-size: 12px;
    }

    .offers-section .offers-title {
        font-size: 16px;
        padding: 10px 20px;
        display: none;
    }

    .offers-section .offers-content {
        padding: 0;
        border: none;
        width: 100%;
    }

    .offers-section .offers-grid {
        gap: 12px;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .offers-section .offer-item .discount {
        font-size: 20px;
    }

    .offers-section .offer-text {
        font-size: 9.2px;
        line-height: 110.00000000000001%;
    }

    .content-left .cta-button {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .form-section {
        padding: 16px 20px;
    }

    .form-section .form-container {
        padding: 0;
        border-radius: 15px;
    }

    .form-section .form-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .form-section .cost-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-section .captcha-group {
        justify-content: space-between;
    }

    .form-section .captcha-input {
        flex: 1;
    }

    .form-section .submit-btn {
        width: 100%;
        padding: 9.6px;
        font-size: 18px;
        margin-top: 10px;
    }

    .form-section .form-input,
    .form-section .location-select,
    .captcha-input {
        padding: 10px 16px;
        font-size: 16px;
        width: 100%;
    }

    .captcha-display {
        font-size: 16px;
        padding: 7px 30px;
    }

    .captcha-group {
        max-width: unset;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .banner-section .banner-content {
        gap: 30px;
        padding: 30px 20px;
    }

    .banner-section .banner-content .banner-title {
        font-size: 40px;
    }

    .offers-section {
        padding: 25px;
    }

    .form-section .cost-form {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .form-section .captcha-group {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .form-section .submit-btn {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 300px;
    }
}


/* Fertility section */

.fertility-section {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 120px 0 120px;
}

.fertility-section .free-card {
    background: linear-gradient(135deg, #fef7f7 0%, #fdedf0 100%);
    border: 2px solid #f8d7da;
    border-radius: 16px;
    padding: 12px 16px;
    position: relative;
    margin-bottom: 12px;
}

.fertility-section .free-card .free-title {
    font-family: 'Lato', sans-serif;
    background: white;
    color: #ED3871;
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    margin: -12px -16px 12px -12px;
    padding: 2px 16px;
    border-radius: 16px 16px 0 0;
    letter-spacing: 1px;
    border-bottom: 2px solid #f8d7da;
}

.fertility-section .free-card .free-list {
    list-style: none;
}

.fertility-section .free-card .free-list li {
    color: #4a5568;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
    font-family: 'Lato', sans-serif;
}

.fertility-section .free-card .free-list li::before {
    content: "•";
    color: #4a5568;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.fertility-section .stats-card {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
    border: 2px solid #b8daff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    margin-bottom: 12px;
}

.fertility-section .stats-card .stat-item .stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 4px;
}

.fertility-section .stats-card .stat-item .stat-label {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
}

/* Desktop styles */
@media (min-width: 1150px) {
    .fertility-section {
        flex-direction: row;
        align-items: stretch;
        gap: 20px;
    }

    .fertility-section .stats-card {
        flex: 1;
        min-width: 0;
    }

    .fertility-section .stats-card .stat-item .stat-number {
        font-size: 36px;
    }

    .fertility-section .stats-card .stat-item .stat-label {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 1150px) {
    .fertility-section {
        margin-bottom: 40px;
    }
}


@media (max-width: 1150px) {
    .fertility-section {
        padding: 0 20px;
    }

    .fertility-section .free-card .free-list li {
        font-size: 16px;
    }

    .fertility-section .stats-card .stat-item .stat-number {
        font-size: 18px;
    }

    .fertility-section .stats-card .stat-item .stat-label {
        font-size: 12px;
    }

    .fertility-section .free-card .free-title {
        font-size: 20px;
        padding: 8px 16px;
    }

    .fertility-section .stats-card,
    .fertility-section .free-card {
        margin-bottom: 0;
    }
}




/* Pricing css */


.pricing-container {
    padding: 60px 120px;
}

.pricing-container .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 32px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-grid> :first-child {
    grid-column: 1;
    grid-row: 1 / span 4;
}

.pricing-grid .pricing-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.pricing-grid .pricing-card:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
}

.pricing-grid .pricing-card:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

/* Fourth, fifth, sixth items go in column 3 */
.pricing-grid .pricing-card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
}

.pricing-grid .pricing-card:nth-child(6) {
    grid-column: 2;
    grid-row: 2;
}

.pricing-grid .pricing-card:nth-child(7) {
    grid-column: 3;
    grid-row: 3;
}

.pricing-card {
    background: #E3F3F1;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.treatment-name {
    font-size: 24px;
    font-weight: 800;
    color: #181C1C;
    ;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: #181C1C;
}

.price-blurred {
    color: transparent;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

.details-btn {
    color: #e53e3e;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.details-btn:hover {
    color: #c53030;
}

.details-btn::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 4px;
}

.hide-details {
    color: #e53e3e;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 20px;
    display: block;
}

.hide-details::after {
    content: ' ▲';
    font-size: 0.8rem;
    margin-left: 4px;
}

.iui-details {
    margin-top: 20px;
}

.description {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;
}

.features-list li {
    display: flex;
    /* align-items: center; */
    align-items: start;
    color: #2d3748;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.mr-5 {
    margin-right: 5px;
    margin-top: 4px;
}

.d-flex {
    display: flex;
}

/* .features-list li.included::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

.features-list li.not-included::before {
    content: '✗';
    color: #e53e3e;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
} */

.package-details {
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 1000px;
        transform: translateY(0);
    }
}

.details-content {
    margin-top: 15px;
}

.book-btn {
    background: #ED3871;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 100, 166, 0.3);
}

.view-all-btn {
    background: none;
    border: none;
    color: #ED3871;
    font-weight: 700;
    font-size: 16px;
    /* Approx 20px */
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: inline;
    text-decoration: none;
    font-family: inherit;
    display: none;
}

.view-all-btn::after {
    content: ' ▼';
    font-size: 0.9rem;
    margin-left: 4px;
}


.disclaimer {
    text-align: center;
    color: #718096;
    font-style: italic;
    margin-top: 12px;
    font-size: 0.9rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1300px) {

    .pricing-container {
        padding: 0 40px;
    }
}

@media (max-width: 990px) {

    /* .pricing-card:nth-child(n+4) {
        display: none;
    } */

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .package-none {
        display: none;
    }

    .pricing-grid> :first-child {
        grid-column: 1;
        grid-row: 1;
    }

    .pricing-grid .pricing-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .pricing-grid .pricing-card:nth-child(4) {
        grid-column: 1;
        grid-row: 5;
    }

    .pricing-grid .pricing-card:nth-child(6) {
        grid-column: 1;
        grid-row: 4;
    }

    .pricing-grid .pricing-card:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }


    .pricing-grid .pricing-card:nth-child(5) {
        grid-column: 1;
        grid-row: 6;
    }

    .pricing-grid .pricing-card:nth-child(7) {
        grid-column: 1;
        grid-row: 7;
    }

    .view-all-btn {
        display: block;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .hide-details {
        margin-bottom: 16px;
    }

    .card-header {
        margin-bottom: 12px;
    }

    .package-details {
        margin-top: 0;
    }

    .pricing-container .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .pricing-container {
        padding: 24px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 12px;
    }

    .pricing-card {
        padding: 20px;
    }

    .treatment-name {
        font-size: 20px;
    }

    .price {
        font-size: 20px;
    }

    .view-all-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 24px;
    }

    .pricing-card {
        padding: 15px;
    }

    .card-header {
        align-items: flex-start;
        gap: 10px;
    }
}


/* Understanding IUI css */

.understanding-iui * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.understanding-iui {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
}

.understanding-iui .iui-container {
    padding: 0 120px;
}

.understanding-iui .iui-title {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #181C1C;
    margin-bottom: 24px;
}

.understanding-iui .iui-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.understanding-iui .iui-card {
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(236, 72, 153, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.understanding-iui .iui-card-title {
    font-size: 24px;
    font-weight: 600;
    color: #181C1C;
    margin-bottom: 20px;
}

.understanding-iui .iui-card-text {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

.understanding-iui .iui-card-list {
    list-style: none;
    margin: 15px 0;
}

.understanding-iui .iui-card-list-item {
    color: #555;
    font-size: 18px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.understanding-iui .iui-card-list-item::before {
    content: "•";
    color: #ec4899;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.understanding-iui .iui-card ul,
.understanding-iui .iui-card li,
.understanding-iui .iui-card p {
    margin: 0;
}

.understanding-iui .iui-read-more {
    color: #ec4899;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 10px;
    position: absolute;
    bottom: 16px;
    right: 16px;
    text-decoration: underline;
}

.understanding-iui .iui-read-more:hover {
    text-decoration: underline;
}
/* 
.understanding-iui .iui-truncated {
    display: none;
} */

/* Desktop styles */
@media (min-width: 1400px) {
    .understanding-iui .iui-card {
        min-height: 15rem;
    }
}
@media (min-width: 1150px) and (max-width: 1400px) {
    .understanding-iui .iui-card {
        padding: 24px;
        height: fit-content;
        min-height: 20rem;
        display: flex;
        flex-direction: column;
    }
}
@media (min-width: 1150px) {

    .understanding-iui .iui-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .understanding-iui .iui-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        align-items: stretch;
    }

    .understanding-iui .iui-card {
        padding: 24px;
        height: fit-content;
        display: flex;
        flex-direction: column;
    }

    .understanding-iui .iui-card-title {
        font-size: 24px;
        margin-bottom: 16;
    }

    .understanding-iui .iui-card-text,
    .understanding-iui .iui-card-list-item {
        font-size: 18px;
    }

    /* .understanding-iui .iui-read-more {
        display: none;
    } */
}

.understanding-iui .iui-card:nth-child(1) .iui-card-text:not(.iui-truncated),
.understanding-iui .iui-card:nth-child(2) .iui-card-list:not(.iui-truncated),
.understanding-iui .iui-card:nth-child(3) .iui-card-list:not(.iui-truncated) {
    display: none;
}

/* Mobile styles */
@media (max-width: 1150px) {
    .understanding-iui {
        padding: 8px 0;
    }

    .understanding-iui .iui-container {
        padding: 0;
    }

    .understanding-iui .iui-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .understanding-iui .iui-cards-container {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        padding: 0 24px;
    }

    .understanding-iui .iui-cards-container::-webkit-scrollbar {
        display: none;
    }

    .understanding-iui .iui-card {
        flex: 0 0 300px;
        /* height: 300px; */
        white-space: normal;
        padding: 16px;
        display: flex;
        min-height: 18rem;
        flex-direction: column;
        padding-bottom: 40px;
    }

    .understanding-iui .iui-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .understanding-iui .iui-card-text,
    .understanding-iui .iui-card-list-item {
        font-size: 16px;
    }

    /* Show truncated content and read more link on mobile */
    .understanding-iui .iui-full-content {
        display: none;
    }

    .understanding-iui .iui-truncated {
        display: block;
    }

    .understanding-iui .iui-read-more {
        display: inline-block;
        text-align: end;
    }

    .understanding-iui .iui-card:nth-child(2) .iui-truncated,
    .understanding-iui .iui-card:nth-child(3) .iui-truncated {
        display: block;
    }
}


/* Promise section css */


.promise-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.promise-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 24px;
}

/* Desktop Grid Layout */
.promise-section .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 24px;
}

.promise-section .promise-card {
    background: #FDF9F7;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: left;
    /* min-height: 280px; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promise-section .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.promise-section .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: left;
}

.promise-section .card-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    text-align: left;
    white-space: normal;
}

.promise-section .callback-button {
    display: inline-block;
    background: #ED3871;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .promise-section .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }


    .promise-section .cards-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .promise-section .cards-container> :last-child {
        margin-right: 40px;
    }

    .promise-section .cards-container::-webkit-scrollbar {
        display: none;
    }

    .promise-section .promise-card {
        flex-shrink: 0;
        scroll-snap-align: start;
        min-height: 240px;
        padding: 25px 20px;
        max-width: 70%;
    }

    .promise-section .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .promise-section .card-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .promise-section .card-description {
        font-size: 0.9rem;
    }

    .promise-section .callback-button {
        display: none;
    }

    .promise-section {
        padding: 0;
        margin-top: 24px;
    }

    .promise-section .cards-container .promise-card {
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    .promise-section .promise-card {
        padding: 20px 15px;
        padding-left: 40px;
    }

    .promise-section .section-title {
        font-size: 24px;
    }
}




/* Doctor Section Specific Styles */
.doctor-section {
    padding: 0;
    position: relative;
}

.doctor-section .section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #181C1C;
    margin-bottom: 16px;
}

.doctor-section .doctors-slider-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    /* Add scroll snap properties */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    display: flex;
    gap: 20px;
    padding: 0 120px;
}

.doctor-section .doctors-slider-container::-webkit-scrollbar {
    display: none;
}

.doctor-section .doctors-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    width: max-content;
    padding: 0 120px;
}

.doctor-section .doctor-card {
    flex: 0 0 auto;
    width: 280px;
    background: #E3F3F1;
    border-radius: 15px;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 8px;
}


.doctor-section .doctor-image {
    width: 100%;
    height: 282px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.doctor-section .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-section .doctor-info {
    padding: 8px;
}

.doctor-section .doctor-name {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #181C1C;
    margin-bottom: 8px;
}

.doctor-section .doctor-department {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #808080;
    margin-bottom: 15px;
    line-height: 1.4;
}

.doctor-section .doctor-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.doctor-section .doctor-location {
    display: flex;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #181C1C;
}

.doctor-section .location-icon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    color: #e74c3c;
    display: flex;
}

.doctor-section .doctor-experience {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #181C1C;
}

.doctor-section .view-bio-btn {
    display: block;
    font-family: 'Lato', sans-serif;
    width: 100%;
    background: transparent;
    border: none;
    text-decoration: underline;
    color: #ED3871;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* Slider Navigation Arrows (Desktop Only) */
.doctor-section .slider-nav {
    position: absolute;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 100%;
    top: 50%;
    left: 0;
    padding: 0 20px;
    display: none;
}

.doctor-section .nav-arrow {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.doctor-section .nav-arrow:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.doctor-section .nav-arrow.prev {
    left: -25px;
}

.doctor-section .nav-arrow.next {
    right: -25px;
}


.doctor-section .section-heading {
    padding: 0 20px;
}

.captcha-mess {
    margin-top: 5px;
    color: #dc3545;
    margin-left: 5px;
    display: none;
}

/* Doctor section popup css */



.specialistOpenDiv {
    font-family: 'Lato', sans-serif;
    width: 80%;
    height: 80vh;
    display: none;
    margin: 0px auto;
    border-radius: 20px;
    background-color: white;
    position: fixed;
    z-index: 1010;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.specialistCloseBtnDiv {
    position: absolute;

    right: 20px;

    top: 20px;
}

.spacialistCloseBtn {
    width: 40px;
}

.specialistOpenCard {
    width: 30%;
    padding: 30px;
    background-color: #f5fffe;
    border-radius: 15px 0px 0px 15px;
}

.specialistCardOpenImageDiv {
    width: 100%;
}

.specialistCardOpenImageDiv img {
    width: 100%;

    aspect-ratio: 1/1.1;

    border-radius: 15px;
}

.specialistDetails {
    width: 65%;

    display: flex;

    flex-direction: column;

    gap: 30px;

    padding: 30px 8%;

    overflow-y: auto;
}

.specialistDetails::-webkit-scrollbar {
    display: none;
}


.bookAppointementinDetailsBtnDiv {
    text-align: center;
    font-family: 'Lato', sans-serif;
}

.bookAppointementinDetailsBtnDiv button {
    font-family: 'Lato', sans-serif;

    font-size: 18px;

    padding: 12px 10px;

    background-color: #ff527b;

    color: white;

    border: none;

    border-radius: 48px;

    width: 100%;
}

.specialistDetailsHeadings {
    margin-bottom: 15px;
}

.QualificationList {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-left: 20px;
}

.QualificationList li {
    color: #404040;
}

.specialistDetailsParagraphs {
    color: #404040;
}

.specialistLeftArrow {
    position: absolute;

    left: 2%;

    top: 50%;

    transform: translateY(-50%);

    width: 30px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;

    &:hover {
        box-shadow: 0 0 10px #dddddd;
        background-color: #fff;
    }
}

.specialistRightArrow {
    position: absolute;

    right: 2%;

    top: 50%;

    transform: translateY(-50%);

    width: 30px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;

    &:hover {
        box-shadow: 0 0 10px #dddddd;
        background-color: #fff;
    }
}

.specialistCardLocationExperienceDiv span {
    font-size: 14px;
}

.specialistCardLocationExperienceDiv {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: 15px 0px;
}

@media screen and (max-width: 1280px) {


    .specialistCardInfoDiv>p {
        font-size: 12px;
    }

    .specialistCardLocationExperienceDiv span {
        font-size: 12px;
    }

    .viewBioBtnDiv button {
        font-size: 16px;
    }

    .bookAppointementBtnDiv button {
        font-size: 16px;
    }

    .specialistOpenDiv {
        width: 89%;
    }

    .bookAppointementinDetailsBtnDiv button {
        font-size: 16px;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}


@media (max-width: 990px) {
    .doctor-section .doctors-grid {
        padding: 0 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .doctor-section .section-heading {
        font-size: 24px;
        margin-bottom: 16px;
        padding: 0 20px;
    }


    .specialistCloseBtnDiv {
        position: sticky;
        right: 20px;
        top: 15px;
        text-align: end;
        padding: 0 15px;
        margin-bottom: -35px;
    }

    .specialistOpenDiv {
        flex-direction: column;
        height: 95vh;
        overflow-y: scroll;
    }

    .specialistDetails {
        overflow-y: unset;
        width: 100%;
    }

    .specialistOpenCard {
        width: 100%;
        padding: 10px;
        border-radius: 15px 15px 0px 0px;
    }

    .doctor-section .doctors-slider-container {
        /* Enhanced scroll snap for mobile */
        scroll-snap-type: x mandatory;
        scroll-padding: 20px;
        padding: 0 20px;
    }

    .doctor-section .doctors-grid {
        flex-direction: row;
        align-items: flex-start;
        width: max-content;
        transform: none !important;
        padding: 0 20px;
        gap: 15px;
    }

    .doctor-section .doctor-card {
        width: 280px;
        max-width: 280px;
        flex: 0 0 280px;
        scroll-snap-align: center;
    }

    .doctor-section .slider-nav {
        display: none !important;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 990px) {
    .doctor-section .doctors-slider-container {
        scroll-snap-type: none;
        /* Disable snap on tablet grid layout */
    }

    .doctor-section .doctors-grid {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        transform: none !important;
    }

    .doctor-section .doctor-card {
        width: calc(50% - 10px);
        min-width: 280px;
        flex: none;
        scroll-snap-align: none;
        /* No snap needed in grid */
    }

    .doctor-section .slider-nav {
        display: none !important;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .doctor-section .slider-nav {
        display: flex;
    }

    .doctor-section .doctors-slider-container {
        overflow-x: auto;
        overflow-y: hidden;
        /* Enhanced scroll snap for desktop */
        scroll-snap-type: x mandatory;
        scroll-padding: 0 50px;
        /* Account for arrow spacing */
    }

    .doctor-section .doctors-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        transition: transform 0.3s ease;
    }

    .doctor-section .doctor-card {
        flex: 0 0 282px;
        width: 282px;
        scroll-snap-align: center;
    }
}

/* Placeholder for doctor images */
.doctor-section .doctor-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

/* Scroll indicators for better UX */
.doctor-section .scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
}

.doctor-section .scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: background 0.3s ease;
    cursor: pointer;
}

.doctor-section .scroll-dot.active {
    background: #e74c3c;
}

@media (min-width: 1025px) {
    .doctor-section .scroll-indicator {
        display: none;
        /* Hide on desktop where we have arrows */
    }
}


/* ivf tech css */


.ivf-tech-container {
    margin: 0;
    padding: 0;
    padding-top: 60px;
}

.ivf-technology .ivf-head {
    text-align: center;
    font-size: 36px;
    color: #181C1C;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    line-height: 120%;
}

.ivf-technology .ivf-tech-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ivf-technology .ivf-tech-grid::-webkit-scrollbar {
    display: none;
}

.ivf-technology .ivf-tech-card {
    background: #e8f4f8;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-width: 280px;
    max-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.ivf-technology .ivf-tech-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.ivf-technology .ivf-tech-card-image img {
    width: 100%;
}

.ivf-technology .ivf-tech-card-content {
    padding: 25px;
    padding-bottom: 40px;
}

.ivf-technology .ivf-tech-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ivf-technology .ivf-tech-card-subtitle {
    font-size: 15px;
    color: #404040;
    margin-bottom: 12px;
    font-weight: 500;
}

.ivf-technology .ivf-tech-card-description {
    color: #404040;
    line-height: 1.6;
    font-size: 15px;
    white-space: normal;
    word-wrap: break-word;
}

.ivf-technology .ivf-tech-card-description.expanded {
    display: block;
}

.ivf-technology .ivf-tech-card-description.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ivf-technology .ivf-tech-read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 12px;
    transition: color 0.3s ease;
    cursor: pointer;
    position: absolute;
    bottom: 16px;
    right: 16px;
}

.ivf-technology .ivf-tech-read-more:hover {
    color: #c0392b;
    text-decoration: underline;
}

.ivf-technology .ivf-tech-additional-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #34495e;
    line-height: 1.6;
    font-size: 0.9rem;
}

.ivf-technology .ivf-tech-additional-content.expanded {
    max-height: 500px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .ivf-tech-card-description.collapsed {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ivf-tech-card-description.expanded {
        display: block;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .ivf-tech-read-more {
        display: none;
    }
}

@media (min-width: 1200px) {
    .ivf-technology .ivf-tech-grid {
        overflow-x: visible;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .ivf-technology .ivf-tech-card {
        flex: 0 0 calc(25% - 19px);
        min-width: 270px;
        max-width: 290px;
    }

    .ivf-technology .ivf-tech-card-description {
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        -webkit-box-orient: unset !important;
        overflow: visible !important;
    }

    .ivf-technology .ivf-tech-read-more {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .ivf-technology .ivf-tech-card {
        min-width: 280px;
        max-width: 300px;
    }

    .ivf-technology .ivf-tech-grid {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .ivf-technology h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .ivf-tech-container {
        padding-top: 24px;
    }

    .ivf-technology .ivf-tech-grid {
        gap: 15px;
        /* margin: 0 -20px 40px -20px; */
        padding: 0 20px;
    }

    .ivf-technology .ivf-tech-card {
        min-width: 260px;
        max-width: 280px;
    }

    .ivf-technology .ivf-tech-card-content {
        padding: 20px;
        padding-bottom: 40px;
    }


    .ivf-technology .ivf-head {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .ivf-technology .ivf-tech-card-title {
        font-size: 1.25rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video section css */


.ivf-video-contain {
    padding: 0 120px;
}

.ivf-video-contain .doctors-slider-container {
    padding: 0;
}

.ivf-video-section {
    margin-top: 60px;
}

.ivf-video-section .doctor-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ivf-video-section .section-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 24px;
    color: #181C1C;
    line-height: 120%;
}

.ivf-video-section .nav-arrow:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.ivf-video-section .ivf-video-contain {
    position: relative;
}

.ivf-video-section .doctors-slider-container {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ivf-video-section .doctors-slider-container::-webkit-scrollbar {
    display: none;
}

.video-container.playing .you-img,
.video-container.playing .you-icon,
.video-container.playing .loading {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.video-container.playing {
    cursor: default;
}

.ivf-video-section .ivf-video-grid {
    display: flex;
    gap: 1rem;
    width: fit-content;
    padding: 0 1rem;
}

.ivf-video-section .video-card {
    flex: 0 0 calc((100% - 2rem) / 3);
    border-radius: 8px;
    overflow: hidden;
    scroll-snap-align: center;
    background: white;
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 20;
}

.ivf-video-section .video-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

/* Loading animation */
.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.loading.show {
    opacity: 1;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ivf-video-section .video-container .you-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ivf-video-section .video-container .you-icon {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 20%;
    cursor: pointer;
}

.ivf-video-section .youtube-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ivf-video-section .dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.ivf-video-section .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.ivf-video-section .dot.active {
    background: #007bff;
}

@media (min-width: 768px) and (max-width: 990px) {
    .ivf-video-section .video-container {
        height: 500px;
    }
}

@media (max-width: 990px) {

    .ivf-video-section .ivf-video-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: unset;
        width: unset;
        transform: unset;
        padding: 0;
    }

    .ivf-video-section .ivf-video-grid> :last-child {
        padding-right: 20px;
        flex: 0 0 100%;
    }

    .ivf-video-section .ivf-video-grid> :last-child .video-container {
        border-radius: 8px;
    }

    /* .video-card {
        margin: 10px;
    } */

    .video-container {
        height: 220px;
    }

    .ivf-video-section .video-card {
        flex: 0 0 calc(100% - 20px);
        max-width: none;
        scroll-snap-align: center;
    }

    .ivf-video-section .slider-nav {
        display: none;
    }

    .ivf-video-section .section-heading {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .ivf-video-contain {
        padding: 0;
    }

    .ivf-video-section .doctors-slider-container {
        padding: 0 20px;
    }

    .ivf-video-section {
        margin-top: 32px;
    }
}

@media (max-width: 390px) {
    .ivf-video-section .video-container {
        /* height: 160px; */
        height: 225px;
    }
}




/* CSS specific to reviews section */
.reviews-section {
    padding: 30px 0;
    margin: 30px 0;
    background-color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reviews-section .section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: #181C1C;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.reviews-section .reviews-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 120px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reviews-section .reviews-container::-webkit-scrollbar {
    display: none;
}

.reviews-section .reviews-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-section .review-card {
    background: #FBF1F7;
    border-radius: 12px;
    padding: 30px;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    border: 1px solid #FBF1F7;
}

.reviews-section .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviews-section .reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #181C1C;
    margin: 0;
}

.reviews-section .google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-section .google-logo {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-section .google-logo svg {
    width: 20px;
    height: 20px;
}

.reviews-section .stars {
    display: flex;
    gap: 2px;
}

.reviews-section .star {
    color: #ffc107;
    font-size: 16px;
}

.reviews-section .review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 24px 0px;
        margin: 0;
    }

    .reviews-section .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .reviews-section .review-card {
        min-width: 280px;
        /* max-width: 280px; */
        padding: 25px;
    }

    .reviews-section .reviewer-name {
        font-size: 1rem;
    }

    .reviews-section .reviews-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .reviews-section .review-card {
        min-width: 250px;
        /* max-width: 250px; */
        padding: 20px;
    }

    .reviews-section .section-title {
        font-size: 24px;
    }
}

.clinics-section {
    background-color: #E3F3F1;
    padding: 40px 120px;
}

.clinics-section .header {
    text-align: center;
    margin-bottom: 24px;
}

.clinics-section .header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #181C1C;
}

.clinics-section .clinics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-content: center;
}

.clinics-section .clinic-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 16px 20px;
    height: 80px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.clinics-section .clinic-info {
    position: relative;
    z-index: 2;
    flex: 1;
}

.clinics-section .clinic-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.3;
}

.clinics-section .clinic-location {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 400;
}

.clinics-section .arrow {
    position: relative;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.clinics-section .clinic-card:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
}

.clinics-section .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid #3498db;
    border-top: 2px solid #3498db;
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 1050px) {
    .clinics-section {
        padding: 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {

    .clinics-section {
        padding: 0;
        padding-top: 24px;
    }

    .clinics-section .header {
        margin-bottom: 16px;
    }

    .clinics-section .header h1 {
        font-size: 24px;
    }

    .clinics-section .clinics-grid {
        display: block;
        padding: 0;
    }

    /* Hide desktop cards on mobile */
    .clinics-section .clinics-grid>.clinic-card {
        display: none;
    }

    .clinics-section .mobile-scroll-container {
        display: block;
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* Internet Explorer 10+ */
    }

    .clinics-section .mobile-scroll-container::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .clinics-section .mobile-groups-wrapper {
        display: flex;
        gap: 15px;
        min-width: max-content;
        padding: 0 20px;
    }

    .clinics-section .mobile-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        min-width: 280px;
    }

    .clinics-section .mobile-group .clinic-card {
        display: flex;
        padding: 16px 18px;
        border-radius: 12px;
        height: 70px;
    }

    .clinics-section .clinic-name {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .clinics-section .clinic-location {
        font-size: 0.8rem;
    }

    .clinics-section .arrow {
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }

    .clinics-section .arrow::after {
        width: 10px;
        height: 10px;
    }
}

/* Hide mobile layout on desktop */
@media (min-width: 769px) {
    .clinics-section .mobile-scroll-container {
        display: none;
    }
}

/* Additional responsive breakpoints */
@media (min-width: 769px) and (max-width: 1024px) {
    .clinics-section .clinics-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
}

@media (min-width: 1025px) {
    .clinics-section .clinics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}



/* Faq css */

.faq-container {
    background: white;
    padding: 60px 120px;
    margin-bottom: 50px;
}

.faq-header {
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.faq-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #181C1C;
    margin: 0;
    line-height: 120%;
}

.faq-content {
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question .faq-head {
    font-size: 18px;
    font-weight: 700;
    color: #181C1C;
    margin: 0;
    padding-right: 20px;
    flex: 1;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 200;
    color: #2c3e50;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 0 20px 0;
}

.faq-answer p {
    font-family: 'Lato', sans-serif;
    color: #404040;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-icon {
    transform: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .desk-none {
        display: block;
    }

    .mobile-none {
        display: none !important;
    }

    .faq-header {
        padding: 0;
        padding-bottom: 16px;
    }

    .faq-answer p {
        font-size: 16px;
    }

    .faq-header h1 {
        font-size: 24px;
    }

    .faq-content {
        padding: 0;
    }

    .faq-question {
        padding: 18px 0;
    }

    .faq-question .faq-head {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer.active {
        max-height: 300px;
    }

    .faq-container {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .faq-header h1 {
        font-size: 24px;
    }

    .faq-question .faq-head {
        font-size: 16px;
    }
}

/* Unlock price modal css */

/* Modal overlay */
.unlock-price-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.unlock-price-modal .modal-overlay.active {
    display: flex;
}

/* Modal container */
.unlock-price-modal .modal {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
    box-sizing: border-box;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close button */
.unlock-price-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.unlock-price-modal .modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

/* Modal title */
.unlock-price-modal .unlock-title {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    text-align: left;
}

/* Form group */
.unlock-price-modal .form-group {
    margin-bottom: 20px;
}

/* Form inputs */
.unlock-price-modal .form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    box-sizing: border-box;
}

.unlock-price-modal .form-input::placeholder {
    color: #999;
}

.unlock-price-modal .form-input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 2px rgba(233, 30, 99, 0.1);
}

/* Captcha group - connected design */
.unlock-price-modal .captcha-group {
    display: flex;
    align-items: stretch;
    max-width: unset;
}

.unlock-price-modal .captcha-input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.unlock-price-modal .captcha-display {
    background: #fce4ec;
    color: #e91e63;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    min-width: 80px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    border: 1px solid #ddd;
    border-left: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Submit button */
.unlock-price-modal .submit-btn {
    width: 100%;
    background-color: #ED3871;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Lato', sans-serif;
}

/* Safety note */
.unlock-price-modal .safety-note {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: #808080;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
}

.unlock-price-modal .checkmark {
    width: 16px;
    height: 16px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .unlock-price-modal .modal {
        margin: 10px;
        padding: 25px 20px;
        max-width: 350px;
    }

    .unlock-price-modal .unlock-title {
        font-size: 18px;
    }

    .unlock-price-modal .form-input {
        padding: 12px 18px;
        font-size: 14px;
    }

    .unlock-price-modal .captcha-display {
        padding: 12px 15px;
        font-size: 14px;
        min-width: 70px;
    }
}

@media (max-width: 480px) {
    .unlock-price-modal .modal {
        padding: 20px 15px;
    }
}


/* Location modal css */

.location-container {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: box-shadow 0.2s, color 0.2s;
    border: none;
    text-align: left;
    width: 100%;
}

.location-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    transition: color 0.2s;
}

.location-card:hover h3 {
    color: #ec4899;
}

/* Location Modal Styles */
.location-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.location-modal-container.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 768px) {
    .location-modal-container {
        align-items: center;
        padding: 1rem;
    }
}

.location-modal-content {
    background-color: white;
    border-radius: 1rem 1rem 0 0;
    max-width: 28rem;
    width: 100%;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.location-modal-container.active .location-modal-content {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .location-modal-content {
        border-radius: 0.5rem;
        margin: 0 1rem;
        transform: scale(0.9);
    }

    .location-modal-container.active .location-modal-content {
        transform: scale(1);
    }
}

.location-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.location-modal-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
}

.location-modal-close {
    color: #6b7280;
    padding: 0.25rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.2s;
}

.location-modal-close:hover {
    color: #374151;
}

.location-modal-body {
    padding: 1.5rem;
}

.location-modal-address {
    color: #374151;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.location-modal-button {
    width: 100%;
    background-color: #ec4899;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.location-modal-button:hover {
    background-color: #be185d;
}

.location-close-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}


/* Price detail modal */


.price-detail-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.price-detail-modal .price-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: priceModalFadeIn 0.3s ease-out;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes priceModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-detail-modal .price-modal-header {
    padding: 24px 24px 0 24px;
    position: relative;
}

.price-detail-modal .price-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.3;
    width: 90%;
}

.price-detail-modal .price-close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.price-detail-modal .price-close-btn:hover {
    color: #000;
}

.price-detail-modal .price-modal-body {
    padding: 16px 24px 24px 24px;
}

.price-detail-modal .price-description {
    color: #333;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.4;
}

.price-detail-modal .price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-detail-modal .price-list li {
    padding: 6px 0;
    color: #181C1C;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-detail-modal .price-modal-content {
        margin: 50% auto;
        width: 95%;
        max-width: 350px;
    }

    .price-detail-modal .price-modal-header {
        padding: 20px 20px 0 20px;
    }

    .price-detail-modal .price-modal-body {
        padding: 16px 20px 20px 20px;
    }

    .price-detail-modal .price-close-btn {
        right: 16px;
        top: 16px;
    }
}