* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003D82;
    --dark-blue: #002855;
    --light-blue: #E8F4F8;
    --sky-blue: #4ECDC4;
    --off-white: #F8FAFB;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-light: #d0d8e0;
    --shadow-sm: 0 2px 8px rgba(0, 61, 130, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 61, 130, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 61, 130, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* ============================================
           NAVIGATION BAR
           ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

 
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--sky-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sky-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--sky-blue);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #3db8b0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
           PAGE HEADER
           ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* ============================================
           CONTENT SECTIONS
           ============================================ */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.6s ease-out;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
           VALUE CARDS
           ============================================ */

.value-card {
    background: var(--text-light);
    border: 1px solid var(--light-blue);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.6s ease-out forwards;
    margin-bottom: 2rem;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-blue);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--sky-blue) 0%, #3db8b0 100%);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
           TIMELINE
           ============================================ */

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-blue), var(--sky-blue));
}

.timeline-item {
    margin-bottom: 3rem;
    animation: fadeIn 0.6s ease-out forwards;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 52%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 52%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--sky-blue);
    border: 4px solid var(--text-light);
    border-radius: 50%;
    top: 0;
}

.timeline-content {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-blue);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 5px solid var(--primary-blue);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
           FOOTER
           ============================================ */

footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sky-blue);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-dot {
        left: 0;
    }

    .timeline-content {
        border-left: 5px solid var(--primary-blue);
        border-right: none;
    }

    .timeline-item:nth-child(even) .timeline-content {
        border-left: 5px solid var(--primary-blue);
        border-right: none;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }
}

.text-white {
    color: var(--text-light);
}

.text-primary {
    color: var(--primary-blue);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.transition-smooth {
    transition: all 0.3s ease;
}

.rounded-lg {
    border-radius: 15px;
}

.shadow-md {
    box-shadow: var(--shadow-md);
}


/* ============================================
           DESIGN PHILOSOPHY: Modern Healthcare Minimalism
           ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003D82;
    --dark-blue: #002855;
    --light-blue: #E8F4F8;
    --sky-blue: #4ECDC4;
    --off-white: #F8FAFB;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-light: #d0d8e0;
    --shadow-sm: 0 2px 8px rgba(0, 61, 130, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 61, 130, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 61, 130, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

/* ============================================
           NAVIGATION BAR
           ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--sky-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sky-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--sky-blue);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #3db8b0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
           PAGE HEADER
           ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* ============================================
           CONTENT SECTIONS
           ============================================ */

.section {
    padding: 80px 0;
}

/* ============================================
           CONTACT INFO CARDS
           ============================================ */

.contact-info-card {
    background: var(--text-light);
    border: 1px solid var(--light-blue);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.6s ease-out forwards;
    margin-bottom: 2rem;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-blue);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--sky-blue) 0%, #3db8b0 100%);
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.contact-info-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-card a {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-blue);
}

/* ============================================
           CONTACT FORM
           ============================================ */

.contact-form {
    background: var(--text-light);
    border: 1px solid var(--light-blue);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    animation: slideInRight 0.8s ease-out;
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ============================================
           FOOTER
           ============================================ */

footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sky-blue);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }
}

.text-white {
    color: var(--text-light);
}

.text-primary {
    color: var(--primary-blue);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.transition-smooth {
    transition: all 0.3s ease;
}

.rounded-lg {
    border-radius: 15px;
}

.shadow-md {
    box-shadow: var(--shadow-md);
}






/* ============================================
           DESIGN PHILOSOPHY: Modern Healthcare Minimalism
           ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003D82;
    --dark-blue: #002855;
    --light-blue: #E8F4F8;
    --sky-blue: #4ECDC4;
    --off-white: #F8FAFB;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-light: #d0d8e0;
    --shadow-sm: 0 2px 8px rgba(0, 61, 130, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 61, 130, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 61, 130, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
           NAVIGATION BAR
           ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--sky-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sky-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--sky-blue);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #3db8b0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
           PAGE HEADER
           ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* ============================================
           CONTENT SECTIONS
           ============================================ */

.section {
    padding: 80px 0;
}

.policy-container {
    background: var(--text-light);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.6s ease-out;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--light-blue);
    color: var(--primary-blue);
}

.policy-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.policy-section p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.policy-section li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.policy-section strong {
    color: var(--primary-blue);
}

.last-updated {
    background: var(--light-blue);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* ============================================
           FOOTER
           ============================================ */

footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sky-blue);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .policy-container {
        padding: 2rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }
}

.text-white {
    color: var(--text-light);
}

.text-primary {
    color: var(--primary-blue);
}

.bg-light-blue {
    background-color: var(--light-blue);
}



/* ============================================
           DESIGN PHILOSOPHY: Modern Healthcare Minimalism
           ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #003D82;
    --dark-blue: #002855;
    --light-blue: #E8F4F8;
    --sky-blue: #4ECDC4;
    --off-white: #F8FAFB;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --border-light: #d0d8e0;
    --shadow-sm: 0 2px 8px rgba(0, 61, 130, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 61, 130, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 61, 130, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* ============================================
           NAVIGATION BAR
           ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

 
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--sky-blue) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sky-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background-color: var(--sky-blue);
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #3db8b0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
           PAGE HEADER
           ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

/* ============================================
           CONTENT SECTIONS
           ============================================ */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.6s ease-out;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
           SERVICE CARDS
           ============================================ */

.service-card {
    background: var(--text-light);
    border: 1px solid var(--light-blue);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.6s ease-out forwards;
    margin-bottom: 2rem;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--sky-blue) 0%, #3db8b0 100%);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    color: var(--sky-blue);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* ============================================
           DETAILED SERVICE SECTION
           ============================================ */

.service-detail {
    background: var(--text-light);
    border-left: 5px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out forwards;
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--sky-blue);
    transform: translateX(5px);
}

.service-detail h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-detail p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
           FOOTER
           ============================================ */

footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

footer h5 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sky-blue);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ============================================
           RESPONSIVE DESIGN
           ============================================ */

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }
}

.text-white {
    color: var(--text-light);
}

.text-primary {
    color: var(--primary-blue);
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.transition-smooth {
    transition: all 0.3s ease;
}

.rounded-lg {
    border-radius: 15px;
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.services {
    padding: 10px;
}

.contact {
    margin-left: 4in;
    margin-top: 60px;


}

.imagelogo {
    width: 80px;
    height: 70px;
}