*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
     
}
html{
  width: 100%!important;
  max-width: 100%!important;
  overflow-x: hidden!important;
}
:root{
    --primary: #003759;
    --primary-dark: #072E4A;
    --primary-light: #DFF3F8;

    --secondary: #1E7A8C;
    --accent: #28B487;
    --body-text: #5D6B7B;

    --white: #FFFFFF;

    --bg-light: #F6F9FC;
    --border: #E5EDF3;

    --success: #2DBE78;
     --font-heading: "Manrope", sans-serif;
    --font-body: "Inter", sans-serif;
    --h1-size: 56px;
    --h2-size: 40px;
    --h3-size: 32px;
    --h4-size: 28px;
    --h5-size: 22px;
    --h6-size: 18px;

    /* Body */

    --text-xl: 20px;
    --text-lg: 18px;
    --text-md: 16px;
    --text-sm: 14px;
    --text-xs: 13px;

     --section-space: 120px;
    --section-space-md: 90px;
    --section-space-sm: 70px;
     --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;  
     --shadow-sm:
    0 4px 10px rgba(0,0,0,.05);

    --shadow-md:
    0 10px 25px rgba(0,0,0,.08);

    --shadow-lg:
    0 20px 50px rgba(0,0,0,.10);
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.15;
}

h1{
    font-size: var(--h1-size);
}

h2{
    font-size: var(--h2-size);
}

h3{
    font-size: var(--h3-size);
}

h4{
    font-size: var(--h4-size);
}

h5{
    font-size: var(--h5-size);
}

h6{
    font-size: var(--h6-size);
}
body{
    width: 100%!important;
    max-width: 100%!important;
    font-family: var(--font-body);
    font-size: var(--text-md);
    font-weight: 400;
    line-height: 1.8;
    color: var(--body-text);
}
@media (max-width: 991px){

    h1{
        font-size:48px;
    }

    h2{
        font-size:40px;
    }

    h3{
        font-size:30px;
    }

    h4{
        font-size:24px;
    }

}
@media (max-width: 767px){

    h1{
        font-size:32px;
    }

    h2{
        font-size:28px;
    }

    h3{
        font-size:26px;
    }

    h4{
        font-size:22px;
    }

    h5{
        font-size:20px;
    }

    h6{
        font-size:18px;
    }

    body{
        font-size:15px;
    }

}
p{
    margin-bottom: 0;
}
.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding-inline:20px;
}
.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:999px;
    font-weight:600;
    transition:.3s ease;
    text-decoration:none;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-2px);
}
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    border-radius:999px;
    background:#EAF8F2;
    color:var(--accent);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}
.card{
    background:#fff;
    border-radius:24px;
    padding:32px;
    border:1px solid var(--border);
    box-shadow:var(--shadow-sm);
}
.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}
.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}
.img-cover{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:var(--radius-lg);
}
.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid var(--border);
}

.navbar{
    min-height:90px;
}

.navbar-brand img{
    max-height:95px;
}

.navbar-nav{
    gap:14px;
}

.nav-link{
    font-family:var(--font-body);
    font-size:15px;
    font-weight:600;
    color:var(--primary);
    padding:.75rem 1rem !important;
}

.nav-link:hover{
    color:var(--primary);
}

.navbar-toggler:focus {
    box-shadow: 0 0 6px 0 #0000001f;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:15px;
}
.search-box{
    display:flex;
    align-items:center;

    width:240px;
    height:50px;

    padding:0 18px;

    background:#F5F7FA;

    border-radius:999px;
}

.search-box input{
    width:100%;
    border:none;
    background:none;
    outline:none;

    margin-left:10px;

    font-size:14px;
}
.btn-primary-custom{
    height:50px;

    padding:0 28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.btn-primary-custom:hover{
    background:var(--primary-dark);
    color:#fff;
}
.hero-section{
    position:relative;
    overflow:hidden;

    padding:70px 0 90px;

    background:
    linear-gradient(
        180deg,
        #F5FBFD 0%,
        #EDF7FB 100%
    );
}
.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:url('../img/hero-pattern.jpg');
    background-repeat:no-repeat;
    background-size:cover;
    opacity:.8;
    pointer-events:none;
}
.hero-content{
    position:relative;
    z-index:2;
}
.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:999px;
    background:#DDF6EF;
    color:#168466;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;

    margin-bottom:25px;
}
.hero-content h1{

    font-family:var(--font-heading);
    margin-bottom:30px;
    max-width:650px;
}
.hero-content p{

    font-size:21px;
    line-height:1.9;
    color:var(--body-text);
    max-width:640px;
    margin-bottom:40px;
}
.hero-buttons{

    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:45px;
}
.hero-buttons .btn-primary-custom{
    min-width:220px;
    padding: 28px;
}
.btn-outline-custom{

    min-width:220px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--accent);
    border-radius:16px;
    color:var(--accent);
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:var(--accent);
    color:#fff;
}
.hero-note{

    font-size:22px;
    text-transform:uppercase;
    letter-spacing:3px;
    color:#7D8795;
    font-style:italic;
    max-width:600px;
}
.hero-image{
    position:relative;
}
.hero-image::before{

    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:#CDECF7;
    filter:blur(120px);
    border-radius:50%;
    right:-100px;
    bottom:-100px;
    z-index:0;
}
.hero-image img{

    position:relative;
    z-index:2;

    width:100%;

    border-radius:40px;

    display:block;

    box-shadow:
    0 25px 60px rgba(11,77,122,.15);
}
@media(max-width:1199px){

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        font-size:18px;
    }

}
@media(max-width:991px){

    .hero-section{
        padding:60px 0;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{

        font-size:42px;

        max-width:100%;
    }

    .hero-content p{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-note{
        max-width:100%;
    }

}
@media(max-width:575px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
    }

    .hero-badge{
        font-size:12px;
    }

    .hero-note{
        font-size:14px;
        letter-spacing:2px;
    }

    .hero-image img{
        border-radius:24px;
    }

}
/* ==========================
   ABOUT SECTION
========================== */

.about-section{
    padding:120px 0;
    background:#fff;
}

.about-media{
    position:relative;
    max-width:620px;
}

.about-image{
    border-radius:40px;
    overflow:hidden;
}

.about-image img{
    width:100%;
    display:block;
    object-fit:cover;
    transition:.4s ease;
}

.about-image:hover img{
    transform:scale(1.03);
}

/* Floating Stats */

.about-stats{
    position:absolute;
    right:-30px;
    bottom:-50px;

    width:320px;

    background:#fff;

    border-radius:32px;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    border:1px solid var(--border);

    z-index:2;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.stat-item + .stat-item{
    margin-top:28px;
}

.stat-icon{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:rgba(11,77,122,.08);

    color:var(--primary);

    font-size:28px;
}

.stat-item h4{
    margin:0;
    font-size:42px;
    font-weight:800;
    line-height:1;
}

.stat-item span{
    display:block;
    margin-top:5px;

    font-size:15px;
    text-transform:uppercase;
    color:var(--body-text);
}

/* Content */

.about-content{
    padding-left:40px;
}

.about-content h2{
    margin-top:15px;
    margin-bottom:30px;
    max-width:650px;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:25px;
}

/* Feature Cards */

.about-features{
    margin-top:40px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-card{
    background:#fff;

    border-radius:20px;

    padding:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    border-left:5px solid var(--primary);
}

.feature-card h5{
    margin-bottom:8px;
}

.feature-card p{
    margin:0;
    font-size:15px;
    line-height:1.6;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1199px){

    .about-content{
        padding-left:20px;
    }

    .about-stats{
        width:280px;
    }

    .stat-item h4{
        font-size:34px;
    }

}

@media(max-width:991px){

    .about-section{
        padding:90px 0;
    }

    .about-content{
        padding-left:0;
        text-align:center;
    }

    .about-content h2{
        max-width:100%;
    }

    .about-media{
        max-width:100%;
    }

    .about-stats{
        position:relative;

        right:auto;
        bottom:auto;

        width:100%;

        margin-top:25px;
    }

    .about-features{
        margin-top:30px;
    }

}

@media(max-width:767px){

    .about-image{
        border-radius:24px;
    }

    .about-stats{
        padding:25px;
        border-radius:24px;
    }

    .stat-item h4{
        font-size:30px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:22px;
        text-align:left;
    }

    .about-content p{
        font-size:16px;
    }

}

/* ==========================
   PRODUCT CATEGORIES
========================== */

.categories-section{
    padding:120px 0;
    background:#F7F9FB;
}

.section-heading{
    margin-bottom:60px;
}

.section-heading h2{
    margin-top:15px;
}

/* Grid */

.categories-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:24px;
}

/* Base Card */

.category-card{
    border-radius:32px;
    overflow:hidden;
    position:relative;
}

/* Category Label */

.category-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:28px;
    padding:0 14px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;

    margin-bottom:24px;
}

/* Pharma */

.pharma-card{

    min-height:340px;

    padding:48px;

    background-image: url('../img/pharma.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat    ;
    border:1px solid var(--border);

    box-shadow:var(--shadow-md);
}



.pharma-card h3{
    margin-bottom:20px;
}

.pharma-card p{
    max-width:700px;
    margin-bottom:30px;
}

.pharma-card ul{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:15px 30px;

    list-style:none;
    padding:0;
    margin:0;
}

.pharma-card li{
    position:relative;
    padding-left:22px;
}

.pharma-card li::before{

    content:"✓";

    position:absolute;
    left:0;

    color:var(--accent);
    font-weight:700;
}

/* Supplements */

.supplement-card{

    min-height:340px;

    padding:32px;

    background:var(--primary);

    color:#fff;
}

.supplement-card h3{
    color:#fff;
    margin-bottom:20px;
}

.supplement-card p{
    color:rgba(255,255,255,.85);
}
.supplement-card .category-label{
    background-color: var(--accent);
}

.focus-box{

    margin-top:30px;

    background:rgba(255,255,255,.08);

    border-radius:16px;

    padding:20px;
}

.focus-box small{

    display:block;

    color:#8AD5FF;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:10px;
}

/* Dermatology */

.derma-card{

    grid-column:1 / -1;

    min-height:420px;

    padding:50px;

    background:
    linear-gradient(
    rgba(210,242,247,.66),
    rgba(210,242,247,.66)),
    url('../img/skin-care.jpg');

    background-size:cover;
    background-position:center;
}

.derma-content{
    max-width:420px;
}

.derma-content h3{
    margin-bottom:20px;
}

/* Feature Cards */

.derma-features{

    position:absolute;

    right:35px;
    top:40px;

    width:45%;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:18px;
}

.mini-card{

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(12px);

    border-radius:18px;

    padding:18px;
}

.mini-card h6{
    margin-bottom:8px;
}

.mini-card p{
    font-size:13px;
    line-height:1.6;
    margin:0;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1199px){

    .derma-features{
        width:50%;
    }

}

@media(max-width:991px){

    .categories-section{
        padding:90px 0;
    }

    .categories-grid{
        grid-template-columns:1fr;
    }

    .derma-card{
        min-height:auto;
    }

    .derma-features{

        position:relative;

        right:auto;
        top:auto;

        width:100%;

        margin-top:35px;
    }

}

@media(max-width:767px){

    .section-heading{
        margin-bottom:40px;
    }

    .pharma-card,
    .supplement-card,
    .derma-card{
        padding:30px;
        border-radius:24px;
    }

    .pharma-card ul{
        grid-template-columns:1fr;
    }

    .derma-features{
        grid-template-columns:1fr;
    }

    .mini-card{
        padding:16px;
    }

}

@media(max-width:575px){

    .pharma-card,
    .supplement-card,
    .derma-card{
        padding:24px;
    }

    .category-label{
        font-size:10px;
    }

}
/* ==========================
   ABOUT COMPANY SECTION
========================== */

.about-company-section{
    padding:120px 0;
    background:#fff;
}

.company-content h2{
    margin:15px 0 30px;
    max-width:600px;
}

.company-content p{
    margin-bottom:25px;
    font-size:18px;
    line-height:1.9;
}

/* Vision Mission */

.vision-mission-wrap{
    margin-top:50px;

    display:flex;
    flex-direction:column;
    gap:24px;
}

.vm-card{

    display:flex;
    align-items:flex-start;
    gap:25px;

    padding:30px;

    background:#F3F7FC;

    border:1px solid var(--border);

    border-radius:28px;

    transition:.3s ease;
}

.vm-card:hover{
    transform:translateY(-4px);
}

.vm-icon{

    width:64px;
    height:64px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#fff;

    color:var(--primary);

    font-size:28px;
}

.vm-card h4{
    margin-bottom:10px;
}

.vm-card p{
    margin:0;
    font-size:16px;
    line-height:1.8;
}

/* Values Panel */

.values-panel{

    background:
    radial-gradient(circle at top right,
    rgba(16,105,184,.15),
    transparent 40%),
    #021B32;

    color:#fff;

    border-radius:40px;

    padding:60px;

    height:100%;
}

.values-panel h3{
    color:#A9D5FF;
    margin-bottom:45px;
}

.value-item{

    display:flex;
    align-items:flex-start;
    gap:24px;

    margin-bottom:40px;
}

.value-item:last-child{
    margin-bottom:0;
}

.value-item span{

    min-width:60px;

    font-size:52px;
    font-weight:800;

    line-height:1;

    color:rgba(255,255,255,.18);
}

.value-item h5{
    color:#fff;
    margin-bottom:8px;
}

.value-item p{
    margin:0;
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1199px){

    .values-panel{
        padding:45px;
    }

}

@media(max-width:991px){

    .about-company-section{
        padding:90px 0;
    }

    .values-panel{
        margin-top:10px;
    }

}

@media(max-width:767px){

    .vm-card{

        flex-direction:column;
        gap:18px;

        padding:24px;
    }

    .values-panel{

        border-radius:28px;
        padding:30px;
    }

    .value-item{
        gap:18px;
    }

    .value-item span{
        min-width:45px;
        font-size:36px;
    }

}

@media(max-width:575px){

    .company-content p{
        font-size:16px;
    }

    .vm-card{
        border-radius:22px;
    }

    .values-panel{
        padding:24px;
    }

    .value-item{
        flex-direction:column;
        gap:10px;
    }

}

/* ==================================
   LOGISTICS SECTION
================================== */

.logistics-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    #F3FAFD 0%,
    #EAF5FA 100%);
}

/* Background Pattern */

.logistics-section::before{

    content:"";

    position:absolute;
    inset:0;

    background-image:
    linear-gradient(
    rgba(11,77,122,.04) 1px,
    transparent 1px),

    linear-gradient(
    90deg,
    rgba(11,77,122,.04) 1px,
    transparent 1px);

    background-size:40px 40px;

    pointer-events:none;
}

/* Top Area */

.logistics-top{
    position:relative;
    z-index:2;
}

/* Content */

.logistics-content h2{
    margin:15px 0 25px;
    max-width:500px;
}

.logistics-content p{
    margin-bottom:20px;
    font-size:18px;
    line-height:1.9;
}

/* Image */

.logistics-image{

    position:relative;

    border-radius:42px;

    overflow:hidden;

    border:10px solid #fff;

    box-shadow:
    0 25px 70px rgba(11,77,122,.12);
}

.logistics-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* HQ Badge */

.hq-badge{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:15px;
}

.hq-icon{

    width:74px;
    height:74px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:var(--primary);

    color:#fff;

    font-size:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.25);
}

.hq-label{

    padding:14px 28px;

    background:#fff;

    border-radius:16px;

    font-weight:600;

    color:var(--heading);

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}

/* Feature Grid */

.logistics-features{

    position:relative;
    z-index:2;

    margin-top:50px;

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:24px;
}

/* Cards */

.logistic-card{

    background:#fff;

    border-radius:24px;

    padding:32px 28px;

    min-height:150px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.35s ease;
}

.logistic-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(11,77,122,.12);
}

.logistic-card i{

    font-size:34px;

    color:var(--primary);

    margin-bottom:20px;

    display:block;
}

.logistic-card h5{

    margin:0;

    line-height:1.5;
}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:1199px){

    .logistics-features{
        grid-template-columns:
        repeat(4,1fr);
    }

}

@media(max-width:991px){

    .logistics-section{
        padding:90px 0;
    }

    .logistics-content{
        text-align:center;
    }

    .logistics-content h2{
        max-width:100%;
    }

    .logistics-features{
        grid-template-columns:
        repeat(3,1fr);
    }

}

@media(max-width:767px){

    .logistics-image{
        border-radius:28px;
        border-width:6px;
    }

    .hq-icon{
        width:60px;
        height:60px;
        font-size:24px;
    }

    .hq-label{
        padding:12px 18px;
        font-size:14px;
    }

    .logistics-features{
        grid-template-columns:
        repeat(2,1fr);
    }

    .logistic-card{
        min-height:auto;
        padding:24px;
    }

}

@media(max-width:575px){

    .logistics-features{
        grid-template-columns:1fr;
    }

    .logistics-content p{
        font-size:16px;
    }

    .hq-badge{
        transform:
        translate(-50%,-50%)
        scale(.85);
    }

}
/* ==========================
   PARTNERSHIP SECTION
========================== */

.partnership-section{
    padding:120px 0;
    background:#fff;
}

.partnership-wrapper{

    display:grid;
    grid-template-columns: 1fr 1fr;

    border-radius:48px;

    overflow:hidden;

    background:var(--primary-dark);

    box-shadow:
    0 25px 70px rgba(0,0,0,.12);
}

/* Left Side */

.partnership-content{

    padding:70px 60px;

    background:#083D63;

    color:#fff;
}

.light-tag{
    color:#8CC8FF;
}

.partnership-content h2{
    color:#fff;
    margin:20px 0 25px;
    max-width:420px;
}

.partnership-content p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:35px;

    max-width:500px;
}

/* Benefits List */

.partnership-list{

    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.partnership-list li{

    display:flex;
    align-items:center;

    gap:16px;

    margin-bottom:18px;

    color:#fff;

    font-weight:500;
}

.partnership-list li i{

    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#9CCEFF;

    color:var(--primary);

    flex-shrink:0;
}

/* Button */

.partnership-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 28px;

    background:#9CCEFF;

    color:var(--primary);

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.partnership-btn:hover{

    transform:translateY(-3px);

    color:var(--primary);
}

/* Right Side */

.partnership-stats{

    position:relative;

    min-height:750px;

    background:
    linear-gradient(
    rgba(2,24,45,.90),
    rgba(2,24,45,.90)),
    url('../img/Corporate-Partnership.jpg');

    background-size:cover;
    background-position:center;
}

.stats-grid{

    position:absolute;

    inset:0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    align-content:center;

    padding:80px;

    gap:60px;
}

.stat-box h3{

    font-size:72px;

    font-weight:800;

    line-height:1;

    color:#8CC8FF;

    margin-bottom:8px;
}

.stat-box span{

    display:block;

    color:rgba(255,255,255,.7);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1199px){

    .partnership-content{
        padding:60px 45px;
    }

    .stats-grid{
        padding:50px;
    }

    .stat-box h3{
        font-size:58px;
    }

}

@media(max-width:991px){

    .partnership-section{
        padding:90px 0;
    }

    .partnership-wrapper{
        grid-template-columns:1fr;
    }

    .partnership-stats{
        min-height:500px;
    }

    .partnership-content h2{
        max-width:100%;
    }

}

@media(max-width:767px){

    .partnership-wrapper{
        border-radius:30px;
    }

    .partnership-content{
        padding:40px 30px;
    }

    .stats-grid{
        padding:35px;
        gap:35px;
    }

    .stat-box h3{
        font-size:48px;
    }

}

@media(max-width:575px){

    .partnership-list li{
        align-items:flex-start;
    }

    .partnership-list li i{
        width:34px;
        height:34px;
    }

    .stats-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .partnership-stats{
        min-height:600px;
    }

    .stat-box h3{
        font-size:42px;
    }

}
/* ==========================
   QUALITY SECTION
========================== */

.quality-section{
    padding:120px 0;
    background:#F7FAFD;
}

/* Left Media */

.quality-media{
    position:relative;
}

.quality-image{
    border-radius:40px;
    overflow:hidden;
}

.quality-image img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* Floating Compliance Card */

.compliance-card{

    position:absolute;

    left:-20px;
    bottom:-30px;

    width:420px;

    background:#fff;

    border-radius:32px;

    padding:30px;

    display:flex;
    gap:20px;
    align-items:flex-start;

    border:1px solid var(--border);

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.compliance-icon{

    width:72px;
    height:72px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:#F3F7FC;

    color:var(--primary);

    font-size:32px;
}

.compliance-content h4{
    margin-bottom:10px;
}

.compliance-content p{
    margin:0;
    font-size:15px;
    line-height:1.7;
}

/* Content */

.quality-content h2{
    margin:15px 0 25px;
}

.quality-content > p{

    font-size:18px;
    line-height:1.9;

    margin-bottom:35px;
}

/* Feature Grid */

.quality-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;
}

.quality-card{

    background:#fff;

    border-radius:28px;

    padding:32px;

    border:1px solid var(--border);

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);

    transition:.3s ease;
}

.quality-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 50px rgba(11,77,122,.10);
}

.quality-card h5{
    margin-bottom:15px;
}

.quality-card p{
    margin:0;
    line-height:1.8;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1199px){

    .compliance-card{
        width:360px;
    }

}

@media(max-width:991px){

    .quality-section{
        padding:90px 0;
    }

    .quality-content{
        text-align:center;
    }

    .compliance-card{

        position:relative;

        left:auto;
        bottom:auto;

        width:100%;

        margin-top:25px;
    }

}

@media(max-width:767px){

    .quality-image{
        border-radius:28px;
    }

    .quality-grid{
        grid-template-columns:1fr;
    }

    .quality-card{
        padding:24px;
        border-radius:22px;
    }

    .compliance-card{
        border-radius:24px;
        padding:24px;
    }

}

@media(max-width:575px){

    .quality-content > p{
        font-size:16px;
    }

    .compliance-card{
        flex-direction:column;
        gap:15px;
    }

    .compliance-icon{
        width:60px;
        height:60px;
        font-size:26px;
    }

}

/* ==================================
   FOOTER
================================== */

.site-footer{

    position:relative;

    background:#021B32;

    color:rgba(255,255,255,.75);

    padding:90px 0 0;

    overflow:hidden;
}

/* Top Grid */

.footer-grid{

    display:grid;

    grid-template-columns:
    1.2fr
    1fr
    1fr
    1.1fr;

    gap:60px;
}

/* Logo */

.footer-logo{

    display:inline-block;

    margin-bottom:30px;
}

.footer-logo img{
    max-width:160px;
}

/* About */

.footer-about p{

    max-width:320px;

    line-height:1.9;

    margin-bottom:35px;
}

/* Social */

.footer-social{

    display:flex;
    gap:15px;
}

.footer-social a{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#9CCEFF;

    background:rgba(255,255,255,.05);

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);
}

/* Widget Titles */

.footer-widget h5{

    color:#9CCEFF;

    margin-bottom:30px;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:14px;
}

/* Links */

.footer-widget ul{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-widget li{
    margin-bottom:18px;
}

.footer-widget a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;
}

.footer-widget a:hover{
    color:#9CCEFF;
}

/* Contact */

.footer-contact li{

    display:flex;
    align-items:flex-start;

    gap:15px;
}

.footer-contact i{

    color:#9CCEFF;

    font-size:18px;

    margin-top:3px;
}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding:25px 0;

    border-top:
    1px solid rgba(255,255,255,.08);
}

.footer-bottom p{
    margin:0;
}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:1199px){

    .footer-grid{
        gap:40px;
    }

}

@media(max-width:991px){

    .site-footer{
        padding-top:70px;
    }

    .footer-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:50px;
    }

}

@media(max-width:767px){

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .footer-about{
        text-align:center;
    }

    .footer-about p{
        max-width:100%;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-widget h5{
        margin-bottom:20px;
    }

    .footer-bottom{
        text-align:center;
    }

}

@media(max-width:575px){

    .site-footer{
        padding-top:60px;
    }

    .footer-contact li{
        gap:12px;
    }

}

.contact-section {
    padding: 100px 0;
    background: #fff;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 70px 0;
    }
}

.contact-section .custom-input {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 0;
    color: #ffffff !important;
    padding: 0.75rem 0;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.contact-section .custom-input:focus {
    border-bottom: 1px solid #ffffff !important;
}

.contact-section .custom-input::placeholder {
    /*color: rgba(255, 255, 255, 0.5);*/
    Color: rgb(255 255 255 / 74%);
    font-weight: 300;
}


.contact-section .btn-brand {
    background-color: #ffffff;
    color: #003759;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: block;
}

.contact-section .btn-brand:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 991.98px) {
    .contact-section .map-col {
        min-height: 400px;
    }
}

.gm-inset-map:hover {
    border-width: 3px !important;
    margin: -2px;
    width: 46px;
}

.gm-inset-dark {
    background-color: rgb(34 34 34 / 14%);
    border-color: rgb(34 34 34 / 34%) !important;
}