
    .containerr {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        text-align: center;
    }

    .title {
        font-size: 36px;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    .ethics {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .card {
        background: #ffffff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 300px;
        text-align: center;
        transition: 0.3s;
    }

    .card:hover {
        transform: scale(1.05);
    }

    .card img {
        width: 160px;
        height: 100px;
        /*margin-bottom: 10px;*/
    }

    .card h3 {
        color: #34495e;
        margin-bottom: 10px;
    }

    .title {
        font-size: 36px;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 20px;
    }

    /* Doctor Profile Section */
    #doctor-profile {
        background: #f9e3e7;
    }

    /* Image Styling */
    .doctor-img {
        width: 80%;
        max-width: 250px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

    .doctor-img:hover {
        transform: scale(1.05);
    }

    /* Doctor Info */
    .doctor-info {
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .doctor-name {
        font-size: 24px;
        font-weight: bold;
        color: #d63384;
    }

    .specialty {
        font-size: 18px;
        font-weight: 600;
        color: #007bff;
    }

    .doctor-text {
        font-size: 16px;
        color: #555;
        margin-top: 10px;
    }
    /* Background Image Styling */
    .wellness-section {
        background: url('img/about.png') no-repeat center center;
        background-size: cover;
        padding: 80px 0;
    }

    /* Icon Styling */
    .icon {
        font-size: 50px;
        color: #2f9365;
        /* Gold Color */
        margin-bottom: 15px;
    }

    /* Text Styling */
    .wellness-section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
        color: black;
    }

    .wellness-section p {
        font-size: 1.2rem;
        font-weight: 500;
        color: black;
    }

    /* Mobile Responsive Padding */
    @media (max-width: 768px) {
        .wellness-section {
            padding: 50px 0;
        }

        .icon {
            font-size: 40px;
        }
    }
  
    /* Section Background */
    .speciality-section {
        padding: 60px 0;
        background: #f9f9f9;
    }

    /* Doctor Image Styling */
    .doctor-img {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid #ddd;
    }

    /* Card Styling */
    .card {
        border-radius: 12px;
        transition: all 0.3s ease-in-out;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* Icon Styling */
    .card-title i {
        margin-right: 8px;
    }


        /* Appointment Section */
        .appointment-section {
            padding: 50px 0;
            background: #f9f9f9;
        }
    
        /* Form Styling */
        .appointment-form .form-control {
            border-radius: 8px;
            padding: 10px;
            border: 1px solid #ccc;
        }
    
        .appointment-form .btn {
            background-color: #007bff;
            color: white;
            border-radius: 8px;
            padding: 10px;
            font-size: 16px;
        }
    
        .appointment-form .btn:hover {
            background-color: #0056b3;
        }
    
        /* Contact Info */
        .contact-info p {
            margin: 5px 0;
        }
    
        .contact-info i {
            color: #007bff;
            margin-right: 8px;
        }

    
