:root {
    --primary-blue: #438cf9;
    --dark-blue: #0a58ca;
}

.bg {
    background-color: #E9DEC8;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    padding-top: 72px;
    height: 100%;
    background-image: url(../img/pharmabg.jpg);
    background-attachment: fixed;

}



h1,
h2,
h5 {
    font-weight: 600;
}

.navbar {
    background-color: #9ec6ae;
}

.nav-search-btn {
    background: transparent !important;
    border: none !important;
    padding: 6px 10px !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
}

.nav-search-btn:hover,
.nav-search-btn:focus {
    color: #dbe7ff;
    outline: none;
}

/* Better spacing on mobile */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 8px;
    }
}

/* ===============================
   VERTICAL HERO – FULL CSS
================================ */

.vertical-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background: #000;
}

/* ===== SLIDES ===== */
.v-carousel {
    position: relative;
    height: 100%;
}

.v-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: transform, opacity;
}

.v-slide.active {
    opacity: 1;
    z-index: 2;

}

/* Background zoom layer */
.v-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    z-index: 0;
}

.v-slide.active::before {
    animation: bgZoom 16s ease forwards;
}

/* Overlay stays above background */
.v-overlay {
    z-index: 1;
}

/* Text above everything */
.v-content {
    position: relative;
    z-index: 2;
}

/* ===== SUBTLE CINEMATIC ZOOM ===== */
@keyframes bgZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

/* ===== OVERLAY ===== */
.v-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25));
    z-index: 1;
}

/* ===== CONTENT ===== */
.v-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;

    text-align: left;
    padding-left: 8%;
    padding-top: 32%;
    max-width: 1000px;
    color: #fff;
}

/* ===============================
   LINE-BY-LINE TEXT REVEAL
================================ */

/* Initial hidden state */
.reveal-text span {
    font-size: 42px;
    font-weight: 700;
}

.reveal-text span,
.v-content p {
    opacity: 0;
    transform: translateY(28px);
}

/* FORCE animation on active slide */
.v-slide.active .reveal-text span {
    animation-name: textUp !important;
    animation-duration: 0.8s !important;
    animation-timing-function: ease !important;
    animation-fill-mode: forwards !important;
}

.v-slide.active .reveal-text span:nth-child(1) {
    animation-delay: 0.15s !important;
}

.v-slide.active .reveal-text span:nth-child(2) {
    animation-delay: 0.35s !important;
}

.v-slide.active .v-content p {
    animation-name: paraUp !important;
    animation-duration: 0.8s !important;
    animation-timing-function: ease !important;
    animation-delay: 0.6s !important;
    animation-fill-mode: forwards !important;
}

/* Keyframes */
@keyframes textUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes paraUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===============================
   LEFT INDICATORS
================================ */

.v-indicators {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.v-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.v-indicators .dot.active {
    background: #fff;
}

/* ===============================
   RIGHT SOCIAL ICONS
================================ */

.v-social {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 10;
}

.v-social a {
    color: #f5f5f5;
    font-size: 1.2rem;
    opacity: 0.9;
}

.v-social a:hover {
    opacity: 1;
    color: #fff;

}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

    .v-content {
        padding: 0 24px;
        text-align: center;

    }

    .v-social {
        display: none;
    }

    .vertical-hero {
        height: 26vh;
    }

    .v-indicators .dot {
        height: 4px;
        width: 4px;
    }

    .v-content {
        text-align: left !important;
        padding-left: 12% !important;
        max-width: 380px !important;
        padding-top: 34%;
    }

    .reveal-text span {
        font-size: 16px !important;



    }

    .v-content p {
        font-size: 12px !important;
    }

}

/* ===============================
   ACCESSIBILITY – REDUCED MOTION
================================ */

@media (prefers-reduced-motion: reduce) {

    .v-slide {
        animation: none !important;
        transition: none !important;
    }

    .reveal-text span,
    .v-content p {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .v-slide {
        opacity: 1;
        transform: none;
    }

    .reveal-text span,
    .v-content p {
        opacity: 1;
        transform: none;
    }
}

/* ================= HOME INTRO ================= */

.home-intro {
    background: #F3EFE3;
    padding: 90px 0 !important;
}

.home-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.home-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #9ec6ae;
}

.home-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    text-align: justify;
}

.intro-img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-height: 420px;
    object-fit: cover;
}

.btn1 {
    background-color: #9ec6ae;
    color: #fff;
}

.btn1:hover {
    background-color: #506e5d;
    color: #fff;
}

@media (max-width: 992px) {
    .home-intro {
        padding: 50px 0 !important;
    }

    .home-title {
        font-size: 32px;
    }

    .home-subtitle {
        font-size: 18px;
    }

    .intro-img {
        margin-top: 20px;
    }
}

/* ================= WHAT WE DO ================= */

.what-we-do {
    background: #F3EFE3;
    padding: 90px 0 !important;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    color: #6c757d;
    font-size: 16px;
    margin-top: 8px;
}

/* Card */

.what-card {
    background: #9ec6ae;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.what-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.12);
}

/* Icon */

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(244, 245, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 28px;
    color: #ffffff;
}

.what-card h6 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.what-card p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 26px;
    }

    .what-card {
        padding: 25px 15px;
    }
}

.wd-card {
    background: #9ec6ae;
    padding: 35px 20px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.wd-card:hover {
    transform: translateY(-6px);
}


.wd-card p {
    margin-top: 8px;
    color: #ffffff !important;
    font-size: 16px !important;
    text-align: center;
}


.why-choose-us {
    padding: 80px 0;
    background-color: #9ec6ae8D;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff !important;
}

.offerings-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff !important;
}

.section-subtitle {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 16px;
    color: #f5f5f5;
}

.wc-card {
    background: #F3EFE3;
    padding: 35px 20px;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    max-height: 100px !important;
}

.wc-card:hover {
    transform: translateY(-6px);
}

.wc-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #9ec6ae;
}

.wc-card p {
    margin-top: 8px;
    color: #666;
    font-size: 15px;
}

@media (max-width: 768px) {

    .why-choose-us {
        padding: 50px 0 !important;
    }

    .why-choose-us h2,
    .offerings-section h2 {
        font-size: 26px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }

    .wc-card {
        padding: 25px 15px;
        border-radius: 14px;
        height: 100px !important;
    }

    .wc-card h3 {
        font-size: 22px;
    }

    .wc-card p {
        font-size: 14px;
    }

}

.news-section {
    padding: 90px 0;
    background: #F3EFE3;

}

.news-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #9ec6ae !important;
}

.news-section p {
    font-size: 16px;
    color: #666;
}

/* CARD */
.news-card-modern {

    width: 388px !important;
    height: 380px !important;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;

}

/* IMAGE – increased height */
.news-img-modern {
    height: 260px;
    /* increased */
    background: linear-gradient(135deg,
            rgba(118, 147, 130, 0.35),
            rgba(192, 195, 185, 0.45));
}

.news-img-modern img {
    max-height: 260px;
}


/* CONTENT */
.news-content {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TEXT */
.news-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.news-content p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: auto;
    /* pushes button down */
}

/* READ MORE CTA */
.read-more {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #9ec6ae;
    text-decoration: none;
    align-self: flex-start;
}

.read-more:hover {
    text-decoration: underline;
}

.news-card-modern {
    width: 32%;
}

@media (max-width: 768px) {

    .news-section {
        padding: 50px 0 !important;


    }

    .news-section h2 {
        margin-bottom: 0 !important;
    }

}

.get-in-touch-section {
    padding: 60px 0;
    background: #F3EFE3;
    /* soft off-white */
}

.get-in-touch-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* LEFT TITLE */
.git-left h3 {
    font-size: 28px;
    font-weight: 700;
    color: #9ec6ae;
    /* primary green */
    margin: 0;
    max-width: 250px;


}

/* DIVIDER */
.git-divider {
    width: 2px;
    height: 70px;
    background: #C0C3B9;
}

/* CONTENT */
.git-content p {
    font-size: 15.5px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
    text-align: justify;
}

/* BUTTON */
.git-btn {
    background: #9ec6ae;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.git-btn:hover {
    background: #5f7f6f;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .get-in-touch-card {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .git-divider {
        width: 60px;
        height: 2px;
    }
}

/* ================= VISION SECTION ================= */

.vision-section {
    background: #9ec6ae8D !important;
    padding: 90px 0 !important;
}

.vision-box {
    max-width: 850px;
    margin: 0 auto;
}

.vision-title {
    color: #fff !important;
    font-size: 36px;
    font-weight: 700;
}

.vision-text {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 500;
    color: #fff;
    position: relative;
}

/* Blue Accent Line */
.vision-text::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #fff;
    margin: 0 auto 25px;
    border-radius: 2px;
}

/* ================= RESPONSIVE - VISION ================= */

@media (max-width: 992px) {
    .vision-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 26px;
    }

    .vision-text {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 15px;
    }

    .vision-text::before {
        width: 50px;
        height: 3px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .vision-text {
        font-size: 15px;
    }
}

.offerings-section {
    padding: 90px 0;
    background: #9ec6ae8D;
}

.offerings-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
}

/* SINGLE CARD */
.offerings-card {
    max-width: 900px;
    margin: 0 auto;
    background: #F3EFE3;
    border-radius: 18px;
    padding: 45px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.offerings-card p {
    font-size: 16px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 22px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .offerings-card {
        padding: 30px 25px !important;
    }

    .offerings-section {
        padding: 50px 0;

    }
}

.footer-modern {
    background: #9ec6ae;
    /* your primary theme */
    color: #f7f8f6;
    padding: 70px 0 30px;
    font-size: 14.5px;
}

/* LOGO */
.footer-logo {
    height: 50px;
    margin-bottom: 8px;
}

/* TEXT */
.footer-modern p {
    color: #f1f3f1;
    line-height: 1.7;
}

/* SECTION TITLES */
.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #eef2ef;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.75;
}

/* SOCIAL ICONS */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* GALLERY */
.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.footer-gallery img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 60px;
}

/* CONTACT */
.footer-contact p {
    color: #f1f3f1;
}

.footer-phone {
    margin-top: 15px;
    font-weight: 500;
    color: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    font-size: 13.5px;
    color: #e8ece8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-modern {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 20px;
    }

    .footer-gallery img {
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
        max-height: 60px;
    }
}

/* ===============================
   HERO SECTION
================================= */

.about-hero {

    background-color: #9ec6ae8d;
    text-align: justify;


}

.about-hero h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.about-hero p {
    max-width: 1100px;
    margin: 0 auto;
    font-size: 17px;
    opacity: 0.95;


}


/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 992px) {
    .about-container {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .about-hero h2 {
        font-size: 32px;
    }

    .about-container {
        padding: 30px 25px;
    }

    .section-title1 {
        font-size: 26px !important;
    }

    .about-container p {
        font-size: 15px;
    }
}






/* ===== VISION SECTION ===== */
.vision-section1 {
    background-color: #F3EFE3 !important;
    width: 100%;
}

.vision-title1 h2 {
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a !important;
}

.vision-title1 span {
    color: #9ec6ae;
}

.vision-subtitle {
    max-width: 700px;
    margin: 16px auto 0;
    font-size: 0.95rem;
}

/* Tabs */
.vision-tabs {
    display: inline-flex;
    gap: 8px;
    background: #f1f5ff;
    padding: 6px;
    border-radius: 40px;
    margin-top: 28px;
}

.vision-tab {
    border: none;
    background: transparent;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #333;
}

.vision-tab.active {
    background: #9ec6ae;
    color: #fff;
}

/* Content */
.vision-content {
    display: none;
}

.vision-content.active {
    display: block;
}

.vision-content h3 {
    font-weight: 600;
    margin-bottom: 12px;
}

.vision-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
}

/* Checklist */
.vision-list {
    list-style: none;
    padding: 0;
}

.vision-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #444;
}

.vision-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #438cf9;
    font-size: 0.9rem;
}

/* Images */
.vision-images {
    display: flex;
    gap: 20px;
}

.vision-images img {
    width: 50%;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 768px) {

    .vision-images {
        margin-top: 40px;
        flex-direction: row;
        gap: 8px;
    }

    .vision-title1 {
        font-size: 1.6rem !important;
    }

    .vision-images img {
        width: 49%;
        border-radius: 20px;
        object-fit: cover;
    }
}

.gallery-section {
    padding: 90px 0;
    background: #F3EFE3;

}

/* Title */
.section-title2 {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a !important;
    margin-bottom: 10px;
}

.gallery-section h5 {
    color: #9ec6ae;
    margin-bottom: 10px !important;
}



/* FILTER BUTTONS */
.gallery-filter {
    margin-bottom: 40px;
}

.filter-btn {
    border: 1px solid #9ec6ae;
    background: transparent;
    color: #9ec6ae;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #9ec6ae;
    color: #fff;
}

/* CARD WRAPPER */
.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;


}


/* IMAGE */
.gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card img:hover {
    transform: scale(1.05);
}

/* CAPTION */
.gallery-caption {
    padding: 15px;
}

.gallery-caption h6 {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.gallery-caption p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* ============================= */
/* TABLET (≤ 992px) */
/* ============================= */
@media (max-width: 992px) {

    .gallery-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-card img {
        height: 160px;
    }

    .gallery-caption h6 {
        font-size: 14px;
    }

    .gallery-caption p {
        font-size: 13px;
    }

}

/* ============================= */
/* MOBILE (≤ 576px) */
/* ============================= */
@media (max-width: 576px) {

    .gallery-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .gallery-filter {
        margin-bottom: 25px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 6px 14px;
        margin: 4px;
    }

    .gallery-card img {
        height: 140px;
    }

    .gallery-caption {
        padding: 12px;
    }

    .gallery-caption h6 {
        font-size: 13px;
    }

    .gallery-caption p {
        font-size: 12px;
    }

}

.directors-hero-modern {
    padding: 140px 0 80px;
    background: #9ec6ae8d;
}

.section-tag {
    display: inline-block;
    background: rgba(251, 255, 253, 0.1);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.directors-hero-modern h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.directors-hero-modern p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #f5f5f5;
    font-size: 17px;
}

.directors-modern {
    padding: 80px 0 80px;
    background: #F3EFE3;
}

.director-modern-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.director-modern-card:hover {
    transform: translateY(-6px);
}

.director-image img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.director-details h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.role {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9ec6ae;
    margin-bottom: 15px;
}

.director-details p {
    max-width: 500px;
    color: #4b5563;
    line-height: 1.8;
    text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
    .director-modern-card {
        flex-direction: column;
        text-align: center;
    }

    .directors-hero-modern {
        padding: 80px 0 80px !important;
    }

    .director-image img {
        width: 200px;
        height: 240px;
    }
}

.careers-hero-modern {
    padding: 140px 0 80px;
    background: #9ec6ae8d;
}

.careers-hero-content {
    max-width: 800px;
}

.careers-hero-modern h1 {
    color: #fff;

}

.careers-hero-modern p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;

}

.careers-values {
    padding: 120px 0;
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.values-left h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
}



.value-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

.value-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .careers-hero-modern {
        padding: 50px 0 80px !important;
    }
}

/* ================= WHY JOIN ================= */

.why-join {

    background: #F3EFE3;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.why-join-list {
    list-style: none;
    padding-left: 0;
}

.why-join-list li {
    margin-bottom: 14px;
    font-weight: 500;
    padding-left: 28px;
    position: relative;
}

.why-join-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #9ec6ae;
    font-weight: bold;
}

/* Highlight box */

.why-highlight {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow:
        0 10px 25px rgba(118, 147, 130, 0.08),
        0 20px 50px rgba(118, 147, 130, 0.12);

    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .why-highlight {
        padding: 25px;
        margin-top: 20px;
    }
}

/* ================= OPENINGS MODERN ================= */

.openings-modern {
    background: #fafefb;
}

/* Left Panel */
.openings-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.openings-left p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Job List */
.job-list {
    border-left: 3px solid #769382;
    padding-left: 30px;
}

.job-item {
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s ease;
    cursor: pointer;
}

.job-item:hover {
    color: #9ec6ae;
    transform: translateX(6px);
}

@media (max-width: 768px) {

    .openings-left h2 {
        font-size: 26px;

    }

    .openings-left p {
        padding-bottom: 10px;
    }

    .job-list {
        border-left: none;
        border-top: 3px solid #9ec6ae;
        padding-left: 0;
        padding-top: 10px;
    }

    .job-item {
        padding: 15px 0;
    }
}

/* ================= WORK CULTURE NEW ================= */

.work-culture-new {
    background: #ffffff;
}

/* Large Quote */
.culture-quote {
    max-width: 900px;
    margin: 0 auto;
}

.culture-quote p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    position: relative;

}

/* Accent line under quote */
.culture-quote p::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #9ec6ae;
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Horizontal Value Strip */
.culture-values {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.value-item {
    flex: 1;
    min-width: 200px;
    padding: 15px 10px;
    border-bottom: 2px solid #e5e7eb;
    transition: 0.3s ease;
}

.value-item h6 {
    margin: 0;
    font-weight: 600;
}

.value-item:hover {
    border-color: #9ec6ae;
    transform: translateY(-4px);
    color: #769382;
}

@media (max-width: 768px) {

    .culture-quote p {
        font-size: 16px;

    }

    .culture-values {
        flex-direction: column;
        gap: 8px;

    }

    .value-item {
        border-bottom: 1px solid #e5e7eb;
    }
}

/* ================= APPLY SECTION ================= */

.apply-section {
    background: linear-gradient(180deg, #F3EFE3 0%, #ffffff 100%);
}

.apply-content {
    max-width: 500px;
}

.apply-text {
    font-size: 16px;
    color: #444;
}

.apply-email {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
}

.apply-email a {
    color: #9ec6ae;
    text-decoration: none;
}

.apply-email a:hover {
    text-decoration: underline;
}

.apply-note {
    margin-top: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.apply-brand {
    margin-top: 30px;
    font-size: 15px;
    color: #9ec6ae;
}

/* Zoho Form Box */

.apply-form-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.08);
}

.zoho-placeholder iframe {
    border-radius: 10px;
}

@media (max-width: 768px) {

    .apply-content {
        text-align: center;
    }

    .apply-form-box {
        padding: 15px;
    }

    .zoho-placeholder iframe {
        height: 450px;
    }
}

.careers-apply-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #F3EFE3 0%, #ffffff 100%);
}

.apply-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.apply-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.apply-info p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 30px;

}

.apply-points {
    list-style: none;
    padding: 0;
}

.apply-points li {
    margin-bottom: 12px;
    color: #374151;
    position: relative;
    padding-left: 20px;
}

.apply-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #9ec6ae;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Form */
.apply-form-modern {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-row.single {
    flex-direction: column;
}

.input-row input,
.input-row select {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    outline: none;
}

.input-row input:focus,
.input-row select:focus {
    border-color: #9ec6ae;
}

.apply-form-modern button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #9ec6ae;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.apply-form-modern button:hover {
    background: #5f7c6c;
}

@media (max-width: 992px) {
    .apply-modern-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .input-row {
        flex-direction: column;
    }
}

/* ================= PRODUCT HERO MODERN ================= */

.product-hero-modern {
    padding: 140px 0 80px;
    background: #9ec6ae8d;
}



.product-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.product-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .product-hero-modern {
        padding: 50px 0 80px;
    }

    .product-hero-content h1 {
        font-size: 32px;
    }

    .product-hero-content p {
        font-size: 15px;
    }
}

.product-overview {
    background: #F3EFE3 !important;
}

.product-overview h2 {
    font-size: 36px;
    font-weight: 600;
}

.product-overview p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.therapeutic-list {
    background: #ffffff;
}

.therapy-row {
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
}

.therapy-row h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #9ec6ae;
}

.therapy-row p {
    color: #555;
    margin: 0;
}

.product-forms-modern {
    background: #9ec6ae;
    color: #fff;
}

/* ================= PRODUCT FORMS WITH ICONS ================= */

.product-forms-icons {
    background: #9ec6ae;
}

.forms-icons-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.form-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
    cursor: pointer;
}

.form-item i {
    font-size: 40px;
    color: #fff;
    transition: 0.3s ease;
}

.form-item span {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

/* Hover effect */
.form-item:hover i {
    transform: translateY(-6px);
    color: #fff;
}

.form-item:hover span {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .forms-icons-wrapper {
        gap: 30px;
    }

    .form-item i {
        font-size: 32px;
    }

    .form-item span {
        font-size: 14px;
    }
}

.quality-modern {
    background: #F3EFE3;

}

.quality-list-modern {
    list-style: none;
    padding: 0;

}

.quality-list-modern li {
    padding-left: 28px;
    margin-bottom: 15px;
    position: relative;
}

.quality-list-modern li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #9ec6ae;
}

.contact-hero-modern {
    padding: 140px 0 80px;
    background: #9ec6ae8d;
}

.contact-hero-modern h1 {
    color: #fff;
}

.contact-hero-modern p {
    color: #fff;
}

.contact-modern {
    padding: 100px 0;
    background: #F3EFE3;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.06);
}

.contact-info-panel {
    position: relative;
    background: linear-gradient(135deg, #9ec6ae, #88b09a);
    color: #ffffff;
    padding: 20px;
    border-radius: 14px;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

/* Heading */
.contact-info-panel h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-subtext {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 18px;
    margin-top: 3px;
}

.info-item p {
    margin: 0;
    font-size: 14.5px;
}

/* Background Circle */
.bg-circle {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 90%);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-panel {
        margin-bottom: 40px;
    }

    .contact-hero-modern {
        padding: 50px 0;
    }

    .contact-modern {
        padding: 50px 0;

    }
}

.contact-form-modern {
    padding: 20px;
}

/* Form */
.contact-form-modern form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row.single {
    flex-direction: column;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    outline: none;
    font-size: 14px;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #9ec6ae;
}

.contact-form-modern button {
    width: 100%;
    padding: 15px;
    border-radius: 16px;
    border: none;
    background: #9ec6ae;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.contact-form-modern button:hover {
    background: #5f7c6c;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 50px;
    }

    .form-row {
        flex-direction: column;
    }
}

.contact-map {

    background: #F3EFE3;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .map-wrapper {
        height: 350px;
        border-radius: 25px 25px 0 0;
    }
}