.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.section-title {
    color: #2c3e50;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 75%;
    height: 3px;
    background: #3498db;
    bottom: 25px;
    left: 0;
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
}

.highlight-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-top: 2rem;
}

.medical-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
}

.shape {
    position: absolute;
    background: #3498db;
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 20%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.animate-delay-1 {
    animation-delay: 0.3s;
}

.animate-delay-2 {
    animation-delay: 0.6s;
}


:root {
    --primary: #2563eb;
    --secondary: #1e3a8a;
    --accent: #3b82f6;
    --light: #f8fafc;
    --dark: #1e293b;
}

.vision-mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    margin-bottom: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    position: relative;
    z-index: 2;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.05;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

:root {
    --primary: #2563eb;
    --secondary: #1e3a8a;
    --accent: #3b82f6;
    --light: #f8fafc;
    --dark: #1e293b;
}

.service-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/*.service-icon {*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    background: rgba(37, 99, 235, 0.1);*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin-bottom: 1.5rem;*/
/*}*/

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: #22c55e;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/*.service-card img{*/
/*    height: 200px!important;*/
/*    width: 100%;*/
/*}*/