/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #0f172a;
    background-color: #ffffff;
}
body {
    background: #f9fafb;
}
.top-color-bar {
    height: 4px;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
}


/* HEADER / NAVBAR */
.site-header {
    background: linear-gradient(90deg, #0b5ed7, #0a58ca);
    border-bottom: 4px solid #084298;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TRUST NAME */
.trust-title {
    color: #ffffff;
    line-height: 1.2;
}

.trust-title .line-1 {
    display: block;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.trust-title .line-2 {
    display: block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* NAV LINKS */
.main-nav {
    display: flex;
    gap: 24px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* HERO TITLE (Trust Medical Services) */
.hero {
    padding: 100px 20px 90px;
    text-align: center;
    background: linear-gradient(135deg, #fff7ed 0%, #eef2ff 50%, #f0fdf4 100%);
}


.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #1e3a8a;
}

.hero p {
    font-size: 20px;
    color: #334155;
}

.hero-section {
    background: linear-gradient(135deg, #fff7ed, #f0f9ff);
    padding: 80px 0;
}
h1, h2 {
    color: #1e40af; /* deep blue */
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
}
.btn-primary {
    background: #ff6b00;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    background: #e85d00;
}
.service-card {
    background: white;
    border-left: 5px solid #10b981;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.trust-line-2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9933, #138808);
    margin-top: 6px;
}
.section-light {
    background: #ffffff;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
}

.section-subtitle {
    font-size: 18px;
    color: #475569;
}
.section-blue {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    padding: 80px 0;
}
.card {
    border-radius: 16px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 12px;
}

.icon-blue { background: #2563eb; }
.icon-green { background: #16a34a; }
.icon-orange { background: #f97316; }
.hero .btn {
    background: #f97316;
    color: white;
    border-radius: 10px;
    padding: 14px 32px;
    font-weight: 600;
    border: none;
}

.hero .btn:hover {
    background: #ea580c;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, #fff7ed, transparent 40%),
                radial-gradient(circle at 80% 90%, #eef2ff, transparent 40%);
    z-index: -1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .trust-title .line-2 {
        font-size: 18px;
    }

    .main-nav {
        gap: 16px;
    }
}


/* ========================
   HEADER (LOGO + TEXT)
======================== */

.top-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Group (logo + text) */
.brand-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo */
.brand-logo {
    height: 64px;         /* logo visible size */
    width: auto;
    object-fit: contain;
}

/* Text next to logo */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-small {
    font-size: 13px;
    font-weight: 500;
    color: #0b5ed7;        /* brighter/navy highlight */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-main {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;        /* dark for readability */
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.nav-links a:hover {
    color: #0b5ed7;
}

/* Underline on hover */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #0b5ed7;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Responsive (mobile) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nav-links {
        gap: 16px;
    }

    .brand-main {
        font-size: 18px;
    }
}
.logo {
    height: 90px;
}
.trust-title {
    font-family: 'Poppins', sans-serif; /* or your site font */
    line-height: 1.2;
}

.trust-line-1 {
    font-size: 14px;
    font-weight: 600;
    color: #1e40af; /* blue */
    letter-spacing: 1px;
}

.trust-line-2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827; /* dark */
}
.trust-line-2::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff9933, #ffffff, #138808);
    margin-top: 6px;
}
.hero-image {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.9)),
                url('../images/medical-bg.png');

  background-size: cover;
    background-position: center;
}
.mission-strip {
    background: linear-gradient(90deg, #ff9933, #138808);
    color: white;
    padding: 20px 0;
    font-size: 22px;
    font-weight: 600;
}
.section-stats {
    background: #fff;
    padding: 80px 0;
}

.stat-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1e40af;
}

.stat-box p {
    font-size: 18px;
    color: #475569;
}
.section-icons {
    background: linear-gradient(135deg, #f0f9ff, #fff7ed);
    padding: 80px 0;
}

.service-icon {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.service-icon i {
    font-size: 48px;
    color: #ff6b00;
    margin-bottom: 12px;
}

.service-icon h5 {
    font-weight: 600;
    color: #1e40af;
}

.service-icon:hover {
    transform: translateY(-6px);
}
