/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Plus Jakarta Sans',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f6f9fc;
    color:#263238;
    overflow-x:hidden;
    line-height:1.7;
}

html,
body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:90px 0;
}


/*==============================
HEADER
==============================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    height:60px;
    width:80px;
    display:block;
    object-fit:contain;
    transform:scale(1.15);
    transform-origin:left center;
}

.logo span{
    font-size:1.3rem;
    font-weight:700;
    color:#0b1f3a;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    color:#37474f;
    font-weight:500;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#1976d2;
}

.header-btn{
    display:flex;
    align-items:center;
    gap:15px;
}

.search-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#edf5ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#1976d2;
    transition:.3s;
}

.search-btn:hover{
    background:#1976d2;
    color:#fff;
}

.primary-btn{
    padding:12px 28px;
    background:#1976d2;
    color:#fff;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.primary-btn:hover{
    background:#0d47a1;
}

.secondary-btn{
    padding:12px 28px;
    border:2px solid #1976d2;
    border-radius:40px;
    color:#1976d2;
    font-weight:600;
    transition:.3s;
}

.secondary-btn:hover{
    background:#1976d2;
    color:#fff;
}

#menuBtn{
    display:none;
    font-size:1.6rem;
    cursor:pointer;
}


/*==============================
HERO
==============================*/

.hero{
    padding-top:170px;
    background:linear-gradient(to right,#eef6ff,#ffffff);
}

.hero-content{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:60px;
}

.hero-tag{
    display:inline-block;
    background:#dbeeff;
    color:#0b5ed7;
    padding:10px 18px;
    border-radius:30px;
    font-size:.9rem;
    margin-bottom:20px;
    font-weight:600;
}

.hero h1{
    font-size:3rem;
    max-width:650px;
    color:#0b1f3a;
    line-height:1.2;
    margin-bottom:20px;
}

.hero p{
    color:#546e7a;
    max-width:580px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-image{
    text-align:center;
    border-radius:20px;
    overflow:hidden;
}

.hero-image img{
    width:100%;
    max-width:540px;
    margin:auto;
}


/*==============================
STATS
==============================*/

.stats{
    background:#fff;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:#fff;
    border-radius:16px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.stat-box h2{
    color:#1976d2;
    font-size:2.3rem;
    margin-bottom:10px;
}

.stat-box p{
    color:#607d8b;
}


/*==============================
SECTION TITLE
==============================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#1976d2;
    font-weight:600;
}

.section-title h2{
    margin:15px 0;
    font-size:2.5rem;
    color:#0b1f3a;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#607d8b;
}


/*==============================
SPECIALTIES
==============================*/

.specialty-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 12px 25px rgba(0,0,0,.06);
    transition:.35s;
    text-align:center;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    width:68px;
    height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2.5rem;
    color:#1976d2;
    margin:0 auto 22px;
    border-radius:20px;
    background:#eaf4ff;
}

.card h3{
    margin-bottom:15px;
    color:#0b1f3a;
}

.card p{
    color:#607d8b;
}

/*==============================
CLINICAL BRIEF
==============================*/

.clinical-brief{
    background:#f8fbff;
}

.brief-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
    margin-top:45px;
}

.brief-wrapper{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
    margin-top:45px;
}

.briefs-cta{
    text-align:center;
    margin-top:45px;
}

.brief-card{
    height:100%;
    border:1px solid #e6eef7;
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    border-top:4px solid #1976d2;
}

.brief-card:hover{
    transform:translateY(-8px);
}

.brief-card i{
    font-size:42px;
    color:#1976d2;
    margin-bottom:20px;
}

.brief-card span{
    display:block;
    color:#1976d2;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:10px;
}

.brief-card h3{
    color:#0b1f3a;
    font-size:1.35rem;
    margin-bottom:15px;
    line-height:1.4;
}

.brief-card p{
    color:#607d8b;
    line-height:1.7;
    margin-bottom:20px;
}

.brief-card a{
    color:#1976d2;
    font-weight:600;
}

@media(max-width:992px){

.brief-grid,
.brief-wrapper{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.brief-grid,
.brief-wrapper{
    grid-template-columns:1fr;
}

}


/*==============================
RESEARCH
==============================*/

.research{
    background:#f7fbff;
}

.research-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.research-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    transition:.35s;
}

.research-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eaf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.research-icon i{
    font-size:38px;
    color:#1976d2;
}

.research-content{
    text-align:center;
}

.research-content h3{
    margin:0 0 18px;
    color:#0b1f3a;
    font-size:1.5rem;
    line-height:1.4;
}

.research-content p{
    color:#607d8b;
    line-height:1.8;
}

.research-card:hover{
    transform:translateY(-8px);
}

.research-card i{
    font-size:45px;
    color:#1976d2;
    margin-bottom:20px;
}

.research-card h3{
    margin-bottom:15px;
    color:#0b1f3a;
}

.research-card p{
    color:#607d8b;
}


/*==============================
CASE STUDIES
==============================*/

.cases{
    background:#ffffff;
}

.case-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.case-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border-top:5px solid #1976d2;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    transition:.35s;
}

.case-card:hover{
    transform:translateY(-8px);
}

.case-card h3{
    margin-bottom:15px;
    color:#0b1f3a;
}

.case-card p{
    color:#607d8b;
}





/*==============================
WHY US
==============================*/

.why-us{
    background:#f7fbff;
}

.why-content{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;
}

.why-image img{
    border-radius:20px;
}

.why-text span{
    color:#1976d2;
    font-weight:600;
}

.why-text h2{
    font-size:2.5rem;
    margin:18px 0;
    color:#0b1f3a;
}

.why-text p{
    color:#607d8b;
    margin-bottom:25px;
}

.why-text ul{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.why-text li{
    color:#455a64;
    font-weight:500;
}


/*==============================
NEWSLETTER
==============================*/

.newsletter{
    background:#1976d2;
    text-align:center;
    color:#fff;
}

.newsletter h2{
    font-size:2.4rem;
    margin-bottom:15px;
}

.newsletter p{
    max-width:700px;
    margin:0 auto 35px;
}

.newsletter form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter input{
    width:420px;
    max-width:100%;
    padding:16px 20px;
    border:none;
    border-radius:50px;
    outline:none;
    font-size:15px;
}

.newsletter button{
    padding:16px 35px;
    border:none;
    border-radius:50px;
    background:#0b1f3a;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.newsletter button:hover{
    background:#081626;
}


/*==============================
FOOTER
==============================*/

footer{
    background:#04111f;
    color:#cfd8dc;
    padding:70px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.footer-grid > div{
    background:#07182c;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:28px;
    transition:.3s;
}

.footer-grid > div:hover{
    background:#0b2342;
    transform:translateY(-5px);
}

.footer-grid h3,
.footer-grid h4{
    color:#ffffff;
    margin-bottom:18px;
    font-size:22px;
}

.footer-grid p{
    margin-bottom:10px;
    line-height:1.7;
}

.footer-grid a{
    display:block;
    margin-bottom:10px;
    transition:.3s;
}

.footer-grid a:hover{
    color:#42a5f5;
    padding-left:6px;
}

.copyright{
    margin-top:50px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}


/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.hero-content,
.why-content{
    grid-template-columns:1fr;
    text-align:center;
}

.stats .container,
.specialty-grid,
.research-grid,
.case-grid,
.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.brief-grid,
.brief-wrapper{
    grid-template-columns:1fr;
}

nav{
    display:none;
}

#menuBtn{
    display:block;
}

}

@media(max-width:768px){

.hero h1{
    font-size:2.4rem;
}

.section-title h2{
    font-size:2rem;
}

.stats .container,
.specialty-grid,
.research-grid,
.case-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.hero-buttons{
    justify-content:center;
}

.logo span{
    font-size:.95rem;
    line-height:1.15;
}

.primary-btn,
.secondary-btn{
    width:auto;
    display:inline-block;
    text-align:center;
}

header .container{
    height:70px;
}

.logo{
    gap:8px;
    min-width:0;
}

.logo img{
    width:58px;
    height:48px;
    transform:scale(1.08);
}

.logo span{
    overflow-wrap:anywhere;
}

nav{
    top:70px;
}

.section-title span::before,
.section-title span::after{
    display:none;
}

section{
    padding:70px 0;
}

.newsletter h2{
    font-size:2rem;
}

.newsletter input,
.newsletter button{
    width:100%;
}

}

@media(max-width:480px){

.container{
    width:92%;
}

.hero{
    padding-top:130px;
}

.hero h1{
    font-size:2rem;
}

.section-title h2{
    font-size:1.7rem;
}

.stat-box{
    padding:25px;
}

.card,
.case-card,
.research-card{
    padding:25px;
}

.brief-content{
    padding:22px;
}

}

nav.showMenu{
    display:flex;
}

@media(max-width:992px){

nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:25px;
    display:none;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

nav a{
    padding:15px 0;
    border-bottom:1px solid #eceff1;
}

nav a:last-child{
    border:none;
}

.header-btn .primary-btn{
    display:none;
}

}

@media(max-width:768px){

nav{
    top:70px;
}

}


.page-banner{
    padding:170px 0 90px;
    background:linear-gradient(135deg,#0b1f3a,#1d4f91);
    color:#fff;
    text-align:center;
}

.page-banner h1{
    font-size:3rem;
    margin-bottom:20px;
}

.page-banner p{
    max-width:750px;
    margin:auto;
    opacity:.9;
}

.about-section{
    background:#fff;
}


.contact-section{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2,
.contact-form h2{
    margin-bottom:20px;
    color:#0b1f3a;
}

.contact-info>p{
    margin-bottom:35px;
    color:#607d8b;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.info-box i{
    width:55px;
    height:55px;
    background:#1976d2;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
}

.info-box h3{
    margin-bottom:8px;
    color:#0b1f3a;
}

.info-box p{
    color:#607d8b;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #dfe5ec;
    border-radius:12px;
    outline:none;
    font-size:15px;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    border:none;
    background:#1976d2;
    color:#fff;
    padding:16px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.contact-form button:hover{
    background:#125db3;
}

@media(max-width:768px){

.contact-grid{
    grid-template-columns:1fr;
}

.brief-card{
    flex-direction:column;
    text-align:center;
}

.brief-image img{
    width:100%;
    height:220px;
}

}



.why-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.section-tag{
    display:inline-block;
    width:max-content;
    padding:8px 18px;
    border-radius:30px;
    background:#e9f3ff;
    color:#1976d2;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:18px;
}

.why-content h2{
    font-size:2.6rem;
    color:#0b1f3a;
    line-height:1.25;
    margin-bottom:20px;
}

.why-content>p{
    color:#607d8b;
    line-height:1.9;
    margin-bottom:35px;
    max-width:650px;
}

.why-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px;
    background:#ffffff;
    border:1px solid #e6edf5;
    border-radius:16px;
    transition:.3s;
}

.why-item:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.why-item i{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#1976d2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.why-item h4{
    color:#0b1f3a;
    margin-bottom:8px;
    font-size:1.15rem;
}

.why-item p{
    color:#607d8b;
    line-height:1.7;
    margin:0;
}


.section-title{
    text-align:center;
    margin-top:40px;
    margin-bottom:35px;
}

.section-title span{
    display:inline-block;
    color:#1976d2;
    font-size:1rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
    position:relative;
}

.section-title span::before,
.section-title span::after{
    content:"";
    position:absolute;
    top:50%;
    width:60px;
    height:2px;
    background:#1976d2;
}

.section-title span::before{
    right:115%;
}

.section-title span::after{
    left:115%;
}

.section-title h2{
    font-size:3rem;
    color:#0b1f3a;
    line-height:1.2;
    max-width:900px;
    margin:auto;
}


/*==============================
HIDE SCROLLBAR
==============================*/

html{
    scrollbar-width:none;
    -ms-overflow-style:none;
}

::-webkit-scrollbar{
    width:0;
    height:0;
}

::-webkit-scrollbar-thumb{
    display:none;
}

/* 2026 responsive brand polish */
:root {
    --clinical-ink: #08111f;
    --clinical-blue: #0057ff;
    --clinical-cyan: #00c2ff;
}

body {
    color: var(--clinical-ink);
}

header {
    border-bottom: 1px solid rgba(8, 17, 31, 0.08);
}

.hero {
    min-height: auto;
    background: linear-gradient(115deg, rgba(0, 87, 255, 0.08), transparent 44%), radial-gradient(circle at 88% 22%, rgba(0, 194, 255, 0.2), transparent 28rem), #fff;
}

.hero-content {
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
}

.hero-tag {
    border: 1px solid rgba(0, 87, 255, 0.18);
    background: #eef5ff;
    color: var(--clinical-blue);
}

.hero-text h1 {
    max-width: 780px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero-image img {
    width: min(100%, 560px);
    aspect-ratio: 4 / 3;
    object-fit: contain;
    filter: drop-shadow(0 24px 45px rgba(0, 87, 255, 0.16));
}

.primary-btn,
.secondary-btn {
    border-radius: 999px;
}

.specialty-card,
.brief-card,
.case-card,
.guideline-card {
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(8, 17, 31, 0.08);
}

footer {
    background: #08111f;
}

.copyright p::after {
    content: " Educational clinical content only; it does not replace institution protocols or licensed medical judgment.";
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
    .hero {
        padding-top: 7rem;
        padding-bottom: 3.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-text {
        width: min(100%, 24rem);
    }

    .hero-tag {
        display: block;
        width: 100%;
    }

    .hero-text h1 {
        max-width: 100%;
        font-size: clamp(2rem, 10.5vw, 3rem);
        line-height: 1;
        letter-spacing: -0.035em;
        text-transform: none;
        overflow-wrap: break-word;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.9rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }

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

/* Inner page banners: varied existing images + readable text */
.page-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #08111f !important;
    background-position: center;
    background-size: cover;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,17,31,0.86), rgba(8,17,31,0.56), rgba(8,17,31,0.18));
}

.page-banner > * {
    position: relative;
    z-index: 1;
}

.page-banner h1,
.page-banner p {
    color: #fff !important;
    text-shadow: 0 3px 18px rgba(0,0,0,0.45);
}

body.page-about .page-banner { background-image: url("images/about.jpg") !important; }
body.page-specialties .page-banner { background-image: url("images/hero.png") !important; }
body.page-guidelines .page-banner { background-image: url("images/research.jpg") !important; }
body.page-case-studies .page-banner { background-image: url("images/about.jpg") !important; }
body.page-clinical-briefs .page-banner { background-image: url("images/research.jpg") !important; }
body.page-contact .page-banner { background-image: url("images/hero.png") !important; }

/* Full-width image hero override */
.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.82) 46%, rgba(255,255,255,0.18) 100%), url("images/hero.png") center right / contain no-repeat, linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.hero .container {
    width: min(1180px, calc(100% - 32px));
    max-width: none;
    margin-inline: auto;
}

.hero-image {
    display: none;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.84)), url("images/hero.png") center bottom / 92% auto no-repeat, #eef5ff;
        padding-bottom: 16rem;
    }
}

@media (max-width: 480px) {
    .container,
    .hero .container,
    .hero-text,
    .section-title,
    .card,
    .brief-card,
    .case-card,
    .research-card {
        min-width: 0;
        max-width: 100%;
    }

    .hero-tag {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hero-text h1,
    .hero p,
    .section-title h2,
    .section-title p,
    .card h3,
    .card p,
    .brief-card h3,
    .brief-card p,
    .case-card h3,
    .case-card p,
    .research-card h3,
    .research-card p {
        max-width: 100%;
        overflow-wrap: break-word;
    }
}
