@keyframes fadeUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.animate-fadeUp {
    animation: fadeUp 0.6s ease;
}
.swiper-slide h1{
    font-family: 'NTR', sans-serif;
    -webkit-font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    color: #2b2b2b;
}
.om-opecity{
    --tw-text-opacity: 1;
}
.om-link {
    color: #67b2c2 !important;
}
.om-link a {
    color: #67b2c2 !important;
}
.om-link a:hover {
    color: #01302b !important;
}

.om-hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to right,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.88) 35%,
        rgba(255,255,255,0.55) 45%,
        rgba(255,255,255,0) 55%
    );
}

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

.small-container {
    max-width: 900px;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 600;
    color: #243447;
    margin-bottom: 10px;
}

.section-title span {
    color: #7b7b7b;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #243447;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #dcdcdc;
    transition: 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.primary-btn span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2f6b89;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-btn {
    background: #2f6b89;
    color: #ffffff;
    border-color: #2f6b89;
}

.dark-btn span {
    background: rgba(255,255,255,0.2);
}

/* ABOUT HERO */

.about-hero-section {
    background: #ffffff;
    padding: 80px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.about-content .sub-title {
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
}

.about-content h1 {
    font-size: 60px;
    margin: 20px 0;
    color: #243447;
}

.about-content p {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 17px;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    min-height: 500px;
}

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

/* WHAT WE DO */

.what-we-do-section {
    padding: 100px 0;
}

.what-we-do-section h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #243447;
}

.what-we-do-section p {
    color: #6b7280;
    line-height: 2;
    font-size: 16px;
}

/* MISSION */

.mission-vision-section {
    padding-bottom: 100px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.mission-card {
    background: #69b7c9;
    padding: 60px;
    border-radius: 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mission-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    top: -100px;
    left: -50px;
}

.mission-card h3 {
    font-size: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.mission-card p {
    line-height: 2;
    position: relative;
    z-index: 2;
}

/* TEAM */

.team-section {
    padding: 100px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    padding: 15px;
}

.team-image img {
    border-radius: 20px;
    height: 340px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.team-content {
    padding: 10px 25px 35px;
    text-align: center;
}

.team-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-content span {
    color: #9ca3af;
    display: block;
    margin-bottom: 20px;
}

.team-content p {
    color: #6b7280;
    line-height: 1.8;
}

/* CTA */

.cta-banner-section {
    background: linear-gradient(to right,#cda14d,#e7c87e,#cda14d);
    padding: 40px 0;
}

.cta-banner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-content p {
    color: #374151;
}

/* TESTIMONIAL */

.testimonial-section {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.testimonial-card p {
    line-height: 2;
    color: #6b7280;
    margin-bottom: 40px;
}

.testimonial-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-bottom span {
    color: #9ca3af;
    font-size: 13px;
}

.rating {
    color: #d9a441;
    letter-spacing: 2px;
}

/* FAQ */

.faq-section {
    background: #ffffff;
    padding: 100px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    color: #243447;
    list-style: none;
}

.faq-item p {
    margin-top: 20px;
    color: #6b7280;
    line-height: 1.8;
}

/* GALLERY */

.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* BLOG */

.blog-section {
    padding: 100px 0;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 450px;
}

.blog-image {
    height: 100%;
}

.blog-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.7),rgba(0,0,0,0.1));
    z-index: 1;
}

.blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: #ffffff;
}

.blog-content span {
    display: block;
    margin-bottom: 15px;
    opacity: 0.8;
}

.blog-content h3 {
    font-size: 30px;
    line-height: 1.5;
}

/* RESPONSIVE */

@media(max-width: 992px) {

    .about-hero-grid,
    .mission-grid,
    .team-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cta-banner-wrap {
        flex-direction: column;
        text-align: center;
    }

    .about-content h1 {
        font-size: 42px;
    }

    .section-title h2,
    .what-we-do-section h2 {
        font-size: 34px;
    }

    .mission-card {
        padding: 40px;
    }
}

@media(max-width: 576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .about-content h1 {
        font-size: 36px;
    }

    .section-title h2,
    .what-we-do-section h2 {
        font-size: 30px;
    }

    .mission-card h3 {
        font-size: 30px;
    }

    .cta-content h3 {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 22px;
    }
}
.zenreHero,
.zenreHero .swiper-wrapper,
.zenreHero .swiper-slide {
    height: 286px;
}

.zenreHero .swiper-slide {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

@media (min-width: 768px) {
    .zenreHero,
    .zenreHero .swiper-wrapper,
    .zenreHero .swiper-slide {
        height: 500px;
    }

    .zenreHero .swiper-slide {
        background-size: cover !important;
    }
}

@media (min-width: 1024px) {
    .zenreHero,
    .zenreHero .swiper-wrapper,
    .zenreHero .swiper-slide {
        height: 600px;
    }
}

/* =====================================================
   Doctor About Content
===================================================== */

.doctor-about-content {
    color: #374151;
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

/* Remove unnecessary spacing from first element */
.doctor-about-content > :first-child,
.doctor-about-content .doctor-profile > :first-child {
    margin-top: 0;
}

/* Headings */
.doctor-about-content h2,
.doctor-about-content h3,
.doctor-about-content h4 {
    color: #002a4a;
    font-weight: 700;
    line-height: 1.25;
}

/* Main doctor name */
.doctor-about-content h2 {
    margin: 0 0 0.5rem;
    font-size: 1.875rem; /* Tailwind: text-3xl */
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* Section headings */
.doctor-about-content h3 {
    position: relative;
    margin: 2rem 0 1rem;
    padding-bottom: 0.75rem;
    font-size: 1.375rem;
    border-bottom: 1px solid #e2eff2;
}

/* Small accent line below section heading */
.doctor-about-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 3rem;
    height: 3px;
    border-radius: 9999px;
    background-color: #67b2c2;
}

/* Qualification heading */
.doctor-about-content h4 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #67b2c2;
}

/* Paragraphs */
.doctor-about-content p {
    margin: 0 0 1rem;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
}

/* First role paragraph below doctor qualification */
.doctor-about-content h4 + p {
    margin-bottom: 1.5rem;
    color: #002a4a;
}

/* Bold text */
.doctor-about-content strong {
    color: #002a4a;
    font-weight: 700;
}

/* Lists */
.doctor-about-content ul,
.doctor-about-content ol {
    display: grid;
    gap: 0.625rem;
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
    color: #4b5563;
}

.doctor-about-content ul {
    list-style-type: disc;
}

.doctor-about-content ol {
    list-style-type: decimal;
}

.doctor-about-content li {
    padding-left: 0.25rem;
    line-height: 1.65;
	font-size: 16px;
}

.doctor-about-content li::marker {
    color: #67b2c2;
    font-weight: 700;
}

/* Remove last unnecessary margin */
.doctor-about-content > :last-child,
.doctor-about-content .doctor-profile > :last-child {
    margin-bottom: 0;
}

/* =====================================================
   Tablet: Tailwind md breakpoint
===================================================== */

@media (min-width: 768px) {
    .doctor-about-content {
        font-size: 1rem;
    }

    .doctor-about-content h2 {
        font-size: 2.25rem; /* Tailwind: md:text-4xl */
    }

    .doctor-about-content h3 {
        margin-top: 2.5rem;
        font-size: 1.5rem;
    }

    .doctor-about-content h4 {
        font-size: 1.125rem;
    }

    .doctor-about-content p {
        font-size: 1rem;
    }

    .doctor-about-content ul,
    .doctor-about-content ol {
        padding-left: 1.75rem;
    }
}

/* =====================================================
   Desktop: Tailwind lg breakpoint
===================================================== */

@media (min-width: 1024px) {
    .doctor-about-content h2 {
        font-size: 3rem; /* Tailwind: lg:text-5xl */
    }

    .doctor-about-content h3 {
        font-size: 1.75rem;
    }
}
