
     
       
        
        .hospital-intro-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(26, 95, 122, 0.15);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(45, 156, 219, 0.1);
            
            --primary-blue: #1a5f7a;
            --secondary-blue: #2d9cdb;
            --accent-teal: #00b4a0;
            --light-blue: #e3f2fd;
            --warm-yellow: #ffb74d;
            --dark-blue: #0a3d62;
           
        }
        
        /* Animated Background Elements */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            animation: float 20s infinite linear;
        }
        
        .circle-1 {
            width: 200px;
            height: 200px;
            background: var(--primary-blue);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .circle-2 {
            width: 150px;
            height: 150px;
            background: var(--accent-teal);
            bottom: 15%;
            right: 8%;
            animation-delay: 2s;
            animation-direction: reverse;
        }
        
        .circle-3 {
            width: 100px;
            height: 100px;
            background: var(--warm-yellow);
            top: 50%;
            left: 80%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(90deg); }
            50% { transform: translate(0, 40px) rotate(180deg); }
            75% { transform: translate(-20px, 20px) rotate(270deg); }
        }
        
        /* Header Section */
        .hospital-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            padding: 50px 40px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }
        
        .header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300b4a0' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .welcome-title {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            font-size: 2.8rem;
            color: white;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .hospital-name {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.2rem;
            color: var(--warm-yellow);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s both;
            position: relative;
            display: inline-block;
        }
        
        .hospital-name:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--accent-teal);
            border-radius: 2px;
        }
        
        /* Content Section */
        .content-section {
            padding: 50px 40px;
            position: relative;
            z-index: 2;
        }
        
        .intro-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.6s both;
            position: relative;
            padding-left: 30px;
            border-left: 4px solid var(--accent-teal);
        }
        
        .intro-text strong {
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, var(--light-blue) 0%, rgba(227, 242, 253, 0.7) 100%);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid var(--secondary-blue);
            animation: fadeInUp 1s ease 0.9s both;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .doctor-profile {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .doctor-icon {
            background: var(--primary-blue);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
            animation: pulse 2s infinite;
        }
        
        .doctor-info h4 {
            color: var(--dark-blue);
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .doctor-info p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .accomplishments {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
            border: 2px dashed var(--accent-teal);
            animation: fadeInUp 1s ease 1.2s both;
        }
        
        .accomplishments h5 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .accomplishments h5 i {
            margin-right: 10px;
            color: var(--accent-teal);
        }
        
        .accomplishments ul {
            padding-left: 20px;
            color: #555;
        }
        
        .accomplishments li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .accomplishments li:before {
            content: '✓';
            color: var(--accent-teal);
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        
        /* Divider Line */
        .divider-line {
            height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal), var(--primary-blue));
            margin: 40px 0;
            border-radius: 3px;
            position: relative;
            overflow: hidden;
        }
        
        .divider-line:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, white, transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        /* Know More Button */
        .know-more-container {
            text-align: center;
            padding: 30px 0;
            animation: fadeInUp 1s ease 1.5s both;
        }
        
        .know-more-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--accent-teal) 0%, var(--secondary-blue) 100%);
            color: white;
            border: none;
            padding: 18px 35px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(0, 180, 160, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .know-more-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 180, 160, 0.4);
        }
        
        .know-more-btn:active {
            transform: translateY(-2px) scale(1.02);
        }
        
        .know-more-btn i {
            margin-left: 12px;
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }
        
        .know-more-btn:hover i {
            transform: translateX(5px);
        }
        
        .know-more-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
        }
        
        .know-more-btn:hover:before {
            left: 100%;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .welcome-title {
                font-size: 2.2rem;
            }
            
            .hospital-name {
                font-size: 1.8rem;
            }
            
            .content-section {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 768px) {
            .welcome-title {
                font-size: 1.8rem;
            }
            
            .hospital-name {
                font-size: 1.5rem;
            }
            
            .content-section {
                padding: 30px 20px;
            }
            
            .intro-text {
                font-size: 1.1rem;
                padding-left: 20px;
            }
            
            .know-more-btn {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }

          /* ===== FIX GAP BETWEEN HERO & ABOUT ===== */

/* Desktop spacing */
@media (min-width: 992px) {
  .hospital-intro-container {
    margin-top: 40px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hospital-intro-container {
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hospital-intro-container {
    margin-top: 0px;
  }
}

