﻿ 
 .footer-section {
            padding: 120px 0 100px;
        }
        .footer-thumb1 {
    position: absolute;
    bottom: 90px;
    right: -46px;
    text-align: right;
    z-index: -1;
}

 .pagedata-sec {
            padding: 40px 0;
            background-color: #f9f9f9;
        }


        .section-header {
            font-size: 28px;
            font-weight: bold;
            padding-bottom: 10px;
            border-bottom: 3px solid #007bff;
            margin-top: 40px;
            margin-bottom: 20px;
            color: #333;
        }

        .allpage-text {
            margin-bottom: 30px;
        }

        .allpage-text-p {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }


        .intimages {
            margin-top: 20px;
            text-align: center;
        }

        .intimages-left {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }

            .intimages-left:hover {
                transform: scale(1.05);
            }

        .doctor-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            margin-bottom: 40px;
        }

            .doctor-table th, .doctor-table td {
                border: 1px solid #ddd;
                padding: 10px 12px;
                text-align: left;
            }

            .doctor-table th {
                background-color: #007bff;
                color: white;
                font-weight: bold;
            }

            .doctor-table td a {
                color: #007bff;
                text-decoration: underline;
            }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 40px;
        }

            .video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

        .spababou22 {
            color: #007bff;
        }

        .pagebordd-dingtth2 {
            font-size: 22px;
            font-weight: 600;
            color: #222;
            border-bottom: 2px solid #007bff;
            padding-bottom: 6px;
            margin-bottom: 15px;
        }

        .mission-section {
            background: linear-gradient(to right, #f0f9ff, #e0f7fa, #f9f9f9);
            padding: 70px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* Mission Box */
        .mission-box {
            background: linear-gradient(145deg, #e6f7fb, #f0fcff); /* Soft medical-themed gradient */
            border-radius: 16px;
            padding: 50px 30px;
          
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
            transition: transform 0.3s ease;
            animation: fadeInUp 1s ease;
        }


        /* Header */
        .mission-header h2 {
            font-size: 36px;
            font-weight: 700;
            color: #005582;
            margin-bottom: 35px;
            position: relative;
            display: inline-block;
        }

            .mission-header h2::after {
                content: "";
                width: 80px;
                height: 4px;
                background: #1abc9c;
                position: absolute;
                bottom: -10px;
                left: 0;
                border-radius: 2px;
            }

        /* Each Mission Point */
        .mission-point {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
            padding: 15px 20px;
            border-left: 5px solid #1abc9c;
            background-color: #fdfefe;
            border-radius: 8px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 0.8s forwards;
        }

            .mission-point:nth-child(1) {
                animation-delay: 0.2s;
            }

            .mission-point:nth-child(2) {
                animation-delay: 0.4s;
            }

            .mission-point:nth-child(3) {
                animation-delay: 0.6s;
            }

            .mission-point:nth-child(4) {
                animation-delay: 0.8s;
            }

            .mission-point:nth-child(5) {
                animation-delay: 1s;
            }

            .mission-point:nth-child(6) {
                animation-delay: 1.2s;
            }

            .mission-point:hover {
                background-color: #e3f9f8;
                transform: translateX(5px);
                box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
            }

            /* Icon */
            .mission-point i {
                font-size: 24px;
                color: #1abc9c;
                margin-right: 18px;
                margin-top: 6px;
                min-width: 30px;
            }

            /* Text */
            .mission-point p {
                font-size: 18px;
                line-height: 1.7;
                color: #333;
                margin: 0;
            }

            .mission-point strong {
                color: #007bff;
                font-weight: 600;
            }

        /* Animations */
        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mission-box {
                padding: 30px 20px;
            }

            .mission-header h2 {
                font-size: 28px;
            }

            .mission-point p {
                font-size: 16px;
            }

            .mission-point i {
                font-size: 20px;
            }
            
        }