/* ===================================
   ROOT VARIABLES
=================================== */
:root {
    --primary: #0077b6;
    --secondary: #00b4d8;
    --dark: #0a1f44;
    --light: #f8f9fa;
}

/* ===================================
   GLOBAL
=================================== */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    scroll-behavior: smooth;
}

.section-padding {
    padding: 100px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

img {
    max-width: 100%;
}

/* ===================================
   NAVBAR
=================================== */
.navbar {
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--dark) !important;
}

.nav-link {
    font-weight: 500;
    margin-left: 10px;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

/* ===================================
   HERO
=================================== */
.hero {
    height: 100vh;
    background: url('../images/hero-biotech-lab.png') center/cover no-repeat;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(10,31,68,0.9), rgba(0,180,216,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* ===================================
   BUTTONS
=================================== */
.btn-primary {
    background: var(--primary);
    border: none;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ===================================
   CARDS
=================================== */
.card-custom {
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===================================
   PAGE HEADER
=================================== */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: white;
    text-align: center;
}

/* ===================================
   CTA
=================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

/* ===================================
   FOOTER
=================================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
}

.footer .social-icons i {
    margin: 0 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer .social-icons i:hover {
    color: var(--secondary);
}

.footer {
    background: #0e1a2b;
    color: #fff;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 8px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
}

.dropdown-menu {
    border-radius: 8px;
    border: none;
}

/* ===== Expertise Section ===== */

.expertise-section {
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
}

.section-title h2 {
    font-weight: 700;
    color: #0e1a2b;
}

.title-line {
    width: 70px;
    height: 3px;
    background: #0d6efd;
    margin: 15px auto 0;
    border-radius: 5px;
}

.expertise-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 16px;
    transition: all 0.35s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-card h5 {
    font-weight: 600;
    margin-top: 20px;
    color: #0e1a2b;
    line-height: 1.4;
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 26px;
    color: #0d6efd;
    transition: 0.3s;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.expertise-card:hover .expertise-icon {
    background: #0d6efd;
    color: #fff;
}

/* ===== Capabilities Section ===== */

.capabilities-section {
    background: #ffffff;
}

.capability-card {
    background: #f8fbff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.capability-card h4 {
    font-weight: 600;
    color: #0e1a2b;
}

.highlight-card {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7) !important;
    color: #fff;
}

.highlight-card h4 {
    color: #fff;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.styled-list i {
    font-size: 16px;
    margin-top: 4px;
    color: #0d6efd;
}

.highlight-card .styled-list i {
    color: #fff;
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ===== About Section ===== */

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.info-card {
    background: #f8fbff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.info-card h3 {
    margin-top: 15px;
    font-weight: 600;
    color: #0e1a2b;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0d6efd;
}

.highlight-card {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
}

.highlight-card h3 {
    color: #fff;
}

.highlight-card .info-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Core Values */

.core-values h3 {
    font-weight: 600;
}

.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.value-card i {
    font-size: 24px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.value-card h6 {
    margin-top: 8px;
    font-weight: 600;
    color: #0e1a2b;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ===== Services Section ===== */

.services-section {
    background: linear-gradient(180deg, #f9fbff 0%, #eef3f9 100%);
}

.service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #0e1a2b;
}

.service-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.service-card ul li {
    margin-bottom: 8px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    text-align: left !important;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(13,110,253,0.08);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ===== Quality Section ===== */

.quality-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.quality-intro {
    max-width: 850px;
    margin: auto;
}

.lead-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.quality-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.quality-card h4 {
    margin-top: 15px;
    font-weight: 600;
    color: #0e1a2b;
}

.quality-icon {
    width: 60px;
    height: 60px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0d6efd;
}

.quality-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.quality-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.quality-list i {
    color: #0d6efd;
    margin-top: 4px;
}

.highlight-card {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
}

.highlight-card h4 {
    color: #fff;
}

.highlight-card .quality-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.highlight-card .quality-list li,
.highlight-card .quality-list i {
    color: #fff;
}

.quality-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ===== Locations Section ===== */

.locations-section {
    background: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
}

.location-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    /*display: flex;*/
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.location-card h6 {
    margin: 0;
    font-weight: 600;
    color: #0e1a2b;
    font-size: 14.5px;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 16px;
    flex-shrink: 0;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

/* ===== Careers Section ===== */

.careers-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.career-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.career-card i {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.career-card h6 {
    font-weight: 600;
    color: #0e1a2b;
    margin: 0;
}

.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Why Work Section */

.why-work-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 20px;
    color: #fff;
}

.why-work-section h3 {
    font-weight: 600;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s;
}

.benefit-card i {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-card p {
    margin: 0;
    font-size: 14px;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== Capabilities Section ===== */

.capabilities-section {
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.capability-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.capability-card i {
    font-size: 30px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.capability-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #0e1a2b;
}

.capability-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


/* Focus Area Section */

.focus-area-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 20px;
    color: #ffffff;
}

.focus-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.focus-card i {
    font-size: 24px;
    margin-bottom: 10px;
}

.focus-card p {
    margin: 0;
    font-weight: 500;
}

.focus-card:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== Case Study Section ===== */

.case-study-section {
    background: #f8fbff;
}

.case-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-left: 5px solid #0d6efd;
}

.case-card h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #0e1a2b;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.case-block {
    margin-bottom: 18px;
}

.case-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.case-label.challenge {
    background: #fff3cd;
    color: #856404;
}

.case-label.solution {
    background: #d1e7dd;
    color: #0f5132;
}

.case-label.outcome {
    background: #cfe2ff;
    color: #084298;
}

.case-card ul {
    padding-left: 18px;
    margin: 0;
}

.case-card ul li {
    margin-bottom: 6px;
}

/* ===== Biologics Section ===== */

.biologics-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.service-intro h2 {
    font-weight: 600;
    color: #0e1a2b;
}

.service-intro p {
    max-width: 750px;
    margin: 0 auto 15px;
    color: #6c757d;
}

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.service-card i {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.service-card h6 {
    font-weight: 600;
    margin: 0;
    color: #0e1a2b;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


/* Benefits Section */

.benefits-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 20px;
    color: #ffffff;
}

.benefits-section h3 {
    font-weight: 600;
}

.benefit-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.benefit-box i {
    font-size: 22px;
    margin-bottom: 10px;
}

.benefit-box p {
    margin: 0;
    font-weight: 500;
}

.benefit-box:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== Medical Device Section ===== */

.device-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.device-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    height: 100%;
}

.device-card i {
    font-size: 28px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.device-card h6 {
    font-weight: 600;
    margin: 0;
    color: #0e1a2b;
}

.device-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


/* Regulatory Section */

.regulatory-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 20px;
    color: #ffffff;
}

.regulatory-section h3 {
    font-weight: 600;
}

.regulatory-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.regulatory-card i {
    font-size: 22px;
    margin-bottom: 10px;
}

.regulatory-card p {
    margin: 0;
    font-weight: 500;
}

.regulatory-card:hover {
    background: rgba(255,255,255,0.2);
}

/* ===== Locations Page ===== */

.location-card {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05) !important;
    transition: 0.3s ease !important;
    height: 100% !important;
}

.location-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

.location-icon {
    font-size: 28px !important;
    color: #0d6efd !important;
    margin-bottom: 15px !important;
}

.location-card h5 {
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}

.location-card .city {
    font-weight: 500 !important;
    color: #0d6efd !important;
    margin-bottom: 10px !important;
}

.location-card .address {
    font-size: 14px !important;
    color: #6c757d !important;
    margin-bottom: 15px !important;
}

.map-link {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    color: #0d6efd !important;
}

.map-link:hover {
    text-decoration: underline !important;
}

.map-wrapper iframe {
    border-radius: 20px !important;
    width: 100% !important;
}