/* Service Section */
.service {
    background-color: #e8f1fa;
    padding: 60px 0;
    margin-top: 50px;
}

/* Container */
.container {
    max-width: 1200px;
}

/* Service Item */
.service-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.service-item img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.service-item:hover img {
    border-color: #003366;
}

/* Link Styling */
.service-item a {
    text-decoration: none;
    display: block;
}

/* Service Title */
.service-title {
    color: #003366;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: #005588;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-item img {
        max-width: 120px;
        height: 120px;
    }
    .service-title {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .service-item img {
        max-width: 100px;
        height: 100px;
    }
    .service-title {
        font-size: 0.9rem;
    }
    .service {
        background-color: #e8f1fa;
        padding: 60px 0;
        margin-top: 150px;
    }
}

@media (max-width: 575px) {
    .service {
        padding: 40px 0;
    }
    .service-item {
        margin-bottom: 20px;
    }
}






.mysection {
   
    height: 500px;
    width: 100%;
    display: flex;
    flex-wrap: wrap; 
    background-color: #002f5f;
}

.mysecton2 {
    width: 50%;
    height: 450px;
    color: white;
  
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.mysecton2 h1
 {
    margin-left: 130px;
    font-size: 38px;
    margin-top: 15px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.surgical2 {
    
    height: auto;
    margin-top: 10px;

}



.surgical2 p {
    padding-top: 0px;
    margin-left: 140px;
    font-size: 15px;
    margin-top: -15px;
}

.surgical2 span{
    margin-left: 05px;
}






.mysecton2 img {
    margin-left: 60px;
    margin-top: 20px;
    border-radius: 10px;
    max-width: 100%;
    height: 360px;
}


@media (max-width: 768px) {
    .mysection {
        flex-direction: column;
        height: auto;
    }


    .surgical2 p {
        padding-top: 0px;
        margin-left: 10px;
        font-size: 15px;
        margin-top: -10px;
    }
    .mysecton2 {
        width: 100%;
        height: auto;
        text-align: center;
        padding: 20px;
    }

    
.surgical2 {
    
    border: 1px solid white;
    height: 170px;
    margin-top: 20px;

}
    .mysecton2 h1
     {
        margin-left: 0;
        font-size: 22px;
    }

    .mysecton2 p {
        font-size: 14px;
    }

    .mysecton2 img {
        margin: 20px auto;
        display: block;
        width: 80%;
    }
}


/* Base Styling for Call Now Button */
.call-now-btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 50px;
    margin-left: -100px;
    background-color: transparent;
    background-color: white;
   text-decoration: none;
    color: #000; /* Text color */
    display: inline-flex;
    align-items: center;
  
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline from link */
}

/* Hover Effect for Call Now Button */
.call-now-btn:hover {
    background-color: #000; /* Black background on hover */
    color: #fff; /* White text on hover */
    transform: scale(1.05); /* Slight zoom effect */
    text-decoration: none;
}

