/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #222;
    overflow-x: hidden;
    padding-top: 90px;
}

.custom-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.nav-wrapper {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 70px;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #14aae8;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #052a73;
}

/* =========================
   HERO BANNER
========================= */

.hero-banner {
    background: #fff;
}

.hero-banner img {
    width: 98%;
    max-width: 1700px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

/* =========================
   DIVISIONS
========================= */

.division-card {
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 12px;
    min-height: 140px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    transition: .3s;
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.division-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.division-link {
    text-decoration: none;
    font-weight: 600;
}

.derma-color {
    color: #1ec4b4;
}

.cosmo-color {
    color: #ef4f86;
}

.pedia-color {
    color: #3da5f4;
}

.general-color {
    color: #28a745;
}

/* =========================
   FOOTER
========================= */

footer {
    background: linear-gradient(135deg, #003a5e, #004f73);
    color: #fff;
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-grid h3,
.footer-grid h4 {
    margin-bottom: 15px;
}

.footer-grid p {
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.socials i {
    font-size: 26px;
    cursor: pointer;
    transition: .3s;
}

.socials i:hover {
    transform: translateY(-3px);
}

.footer-company-info h4 {
    color: #fff;
    margin-bottom: 11px;
    font-size: 26px;
}

.footer-company-info p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 17px;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px) {

    nav {
        position: absolute;
        top: 90px;
        left: -100%;
        width: 100%;
        background: #fff;
        transition: .3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }

    .hamburger {
        display: block;
    }

    .hero-banner img {
        width: 95%;
    }

    .division-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .logo img {
        height: 60px;
    }

    .nav-wrapper {
        height: 80px;
    }

    nav {
        top: 80px;
    }

    .hero-banner {
        padding: 15px 0 25px;
    }

    .hero-banner img {
        width: 96%;
        border-radius: 12px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .division-grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 25px;
    }

    .footer-grid {
        gap: 30px;
    }
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;

    display: flex;
    align-items: center;
}

.contact-pill {
    background: #fff;
    color: #333;
    text-decoration: none;

    padding: 16px 28px;
    border-radius: 15px;

    font-size: 18px;
    font-weight: 500;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    margin-right: -10px;

    transition: all 0.3s ease;
}

.contact-pill:hover {
    transform: translateY(-2px);
    color: #333;
}

.whatsapp-circle {
    width: 78px;
    height: 78px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 42px;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);

    border: 6px solid #fff;

    transition: all 0.3s ease;
}

.whatsapp-circle:hover {
    transform: scale(1.08);
    color: #fff;
}

@media(max-width:768px) {

    .floating-contact {
        right: 15px;
        bottom: 20px;
    }

    .contact-pill {
        font-size: 15px;
        padding: 12px 18px;
    }

    .whatsapp-circle {
        width: 65px;
        height: 65px;
        font-size: 34px;
    }
}

/* ==========================================
   SCROLL ANIMATION STYLES
========================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
        transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

/* Active state when scrolled into view */
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional staggering delays for grids */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ==========================
   CARE SECTION
========================== */

/* .care-section {
    background: #f5f5f5;
    padding: 100px 0;
} */
/* 
.care-title {
    font-size: 48px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.care-subtitle {
    color: #666;
    font-size: 15px;
}

.care-card {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    transition: all .5s ease;
}

.care-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

.care-card-large img {
    height: 470px;
}

.care-card:hover img {
    transform: scale(1.08);
} */

/* Custom Negative Margin */
.mt-lg-n5 {
    margin-top: -80px;
}

@media(max-width:991px) {

    .mt-lg-n5 {
        margin-top: 0;
    }

    .care-card img,
    .care-card-large img {
        height: 320px;
    }

    .care-title {
        font-size: 38px;
    }
}

@media(max-width:576px) {

    .care-section {
        padding: 70px 0;
    }

    .care-card img,
    .care-card-large img {
        height: 250px;
    }

    .care-title {
        font-size: 32px;
    }
}