*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
 
}
/**This styles for navigation bar with logo and search bar in header**/
header{
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    color: transparent;
}

header:hover{
    background-color: rgb(2, 46, 2);
}header:hover{
    background-color: rgb(2, 46, 2);
}

.logo{
    float: left;
    margin-left: -40px; 
    animation: logoAnimation 3s infinite alternate;
}

@keyframes logoAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-7px);
    }
}

.logo h1{
    color:black;
    padding: 10px;
    font-size: 40px;
}

.Glow{
    color: #1bb407c4;
    text-shadow: 2px 1px 2px #011f01c4;
}

nav li{
    display: inline-block;
    list-style: none;
    padding: 15px 15px;
    font-weight: bold;
    font-family: 'Times New Roman';
    color: black;
    font-weight: bold;  
}

nav li:hover{
    border-bottom: yellowgreen 2px solid;
    color: darkgreen ;
}

nav li a:hover{
    color: darkgreen;
    transition: all 0.4s ease 0s;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
    padding: 3px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    text-decoration: none;
    display: block;
}
a,button{
    font-size: 16px;
    font-weight: 500;
    color: black;
    text-decoration: none;
    cursor: pointer;
}
button{
    background: rgba(0,0,0,0.2);
    border: 2.5px solid darkgreen;
    border-radius: none;
    padding: 9px 20px;
    margin-top: 8px;
    border-bottom-left-radius:0;
    border-top-left-radius:0;
    margin-left: -6px;
    border-left: none;    
    background-color: darkgreen;
}

button:hover{
    background-color:green;
    color: white;
}

.srch{
    width: 220px;
    border: 2.5px solid darkgreen;
    border-radius: none;
    padding: 10px 25px;
    margin-right: -40px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-right: 0px;
    color:black;
}

/**This styles for background in home page -Backimg section **/
#Backimg{
    background: linear-gradient(rgba(0,0,0,0.5),#011f01c4),url(Images/new1.jpg);
    background-size: cover;
    background-position: center;
    height: 595px;
    margin: 0;
}

.Backimg-Text{
    text-align: center;
    color:black;
    padding-top: 80px; 
    padding: 70px;
}

.Backimg-Text h1{
    font-size: 60px;
    font-family:'Times New Roman', Times, serif;
    animation: slideleft 3s linear forwards;
    margin-left: 30px;
    margin-top: 50px;
    text-shadow: 2px 1px 2px black;
}

@keyframes slideleft{
    0%{transform:translate(100px);
       opacity:0;
    }
    100%{transform:translate(opx);
         opacity:1;
    }
}

.Backimg-Text p {
    font-size: 20px;
    font-style: italic;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    padding: 25px;
    margin-left: 30px;
    animation: slideleft 2s linear forwards;
    animation-delay: 3s;
}

.Backimg-btn{
    margin: 0px auto 0;
    animation: slideleft 2s linear forwards;
    animation-delay: 4s; 
}

.Backimg-btn a{
    font-family: 'Arial';
    width: 150px;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 3px;
    color: white;
    border: .5px solid rgb(3, 119, 42);
    z-index: 1;
    transition: color 0.5s;
    position: relative;
    letter-spacing: 1px;
}

.Backimg-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    background:rgb(4, 180, 4);
    z-index: -1;
    transition: 0.5s;
}

.Backimg-btn a:hover span{
    width: 100%;    
}

.Backimg-btn a:hover{
    color:black;     
}

.Backimg-btn a.Jbtn {
    background-color: rgb(2, 128, 2);
}

hr{
    width: 150px;
    margin-left: 50px;
    margin-right: 50px;    
}

/**This styles for titles of all sections in home page expect Backimg section **/
.title {
    text-align: center;
    padding-bottom: 30px;   
}

.title p{
    margin: auto;
    font-size: 10px;
    color: rgb(7, 116, 7);
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;   
}

.title p::after{
    content: "";
    width:50px;
    height: 30px;
    background: linear-gradient(rgb(16, 141, 16),white);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);   
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
   
.title h1{
    font-size: 30px;
    text-align: center;
    margin-top: 0;
}

/**This styles for our services section in home page **/
#our-services{
    width: 100%;
    padding: 90px 0;
    height: 500px;
}

.Services-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    margin-top: 35px;
    margin-left: 200px;
    margin-right: 200px;
}
    
.Services-info p{
    text-align: center;
    font-size: 20px;
}

.Sbtn{
    background-color: green;
    width: 200px;
    margin-left: 27px;
    align-items: center;

}
.Sbtn:hover{
    transition: all 0.4s ease 0s;
    background-color: rgb(21, 168, 21);
}
.Sbtn a{
    font-size: 16px;
    font-weight: 500;
    color:black;
    text-decoration: none;
    cursor: pointer;
}

        /** This styles for info_1. It's mean first service card **/
.info_1 { 
    background:white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transition: transform 0.3s ease-in-out;
    margin-right: 22px; 
    height: 220px;
    width: 300px;
    }

.info_1 h2 {
    margin-bottom: 10px;
    text-align: center;
    padding: 20px;
    padding-bottom: 0;
}
.info_1 p {
    font-size: 16px;
    color: #666;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    padding-bottom: 15px;
}
.info_1 img{
    align-content: center;
}
                    
.info_1:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, rgba(2, 43, 2, 0.8) 0%, rgba(2, 107, 16, 0.8) 100%), url(Images/Anemia.jpg);
    background-size: cover;
}       
        /** This styles for info_2. It's mean first service card **/
.info_2 {
    background:white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transition: transform 0.3s ease-in-out;
    margin-right: 22px; 
    height: 220px;
    width: 300px;
}
.info_2 h2 {
    margin-bottom: 10px;
    text-align: center;
    padding: 20px;
    padding-bottom: 0;
}
            
.info_2 p {
    font-size: 16px;
    color: #666;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    padding-bottom: 15px;
}
.info_2 img{
    align-content: center;
}
.info_2:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, rgba(2, 43, 2, 0.8) 0%, rgba(2, 107, 16, 0.8) 100%), url(Images/Daily3.webp);
    background-size: cover;
}
         /** This styles for info_3. It's mean first service card **/
.info_3 {
    background-image:white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 10px;
    transition: transform 0.3s ease-in-out;
    margin-right: 22px; 
    height: 220px;
    width: 300px; 
}
.info_3 h2 {
    margin-bottom: 10px;
    text-align: center;
    padding: 20px;
    padding-bottom: 0;
}
.info_3 p {
    font-size: 16px;
    color: #666;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    padding-bottom: 15px;
}
.info_3 img{
    align-content: center;
}
.info_3:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, rgba(2, 43, 2, 0.8) 0%, rgba(2, 107, 16, 0.8) 100%), url(Images/Specialist-img.webp);
    background-size: cover;
}  
    
   
/**This styles for About us section in home page **/              
#About-us{
    width: 100%;
    padding: 30px 0;
    height: 500px;
    background: linear-gradient(45deg, rgba(2, 43, 2, 0.8) 0%, rgba(2, 107, 16, 0.8) 100%),url(Images/Home-img9.jpg);
}

.Content{
    margin-left: 70px;
    margin-right: 70px;
}

.Content p{
    text-align: justify;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding: 5px;
    line-height: 25px;
    letter-spacing: 1px;
}

.Content h1{
    padding: 20px;
    text-align: left;
    padding-left: 0;
    margin-top: 14px;
    padding-bottom: 0;
}

.Content img {
    float: right;
    margin-top: -210px;
}

.Abtn{
    background-color: green;
    width: 150px;
    margin-left: 5px;
}

.Abtn:hover{
    background-color: darkgreen;
}

/** This styles for our team section in home page **/
#our-executive-team{
    width: 100%;
    padding: 70px 0;
    height: 500px;  
}

#Our-Team{
    height: 500px;   
}

.team h1{
  font-family:'Times New Roman';
  font-size: 45px;
  margin-bottom: 60px;
  text-align: center;
}

.team{
  display: flex;
  justify-content: center;
  width: auto;
  text-align: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.team .member{
  background: #fff;
  margin: 5px;
  margin-bottom: 50px;
  width: 300px;
  padding: 20px;
  line-height: 20px;
  color: black;  
  position: relative;
}

.team .member h3{
  color:green;
  font-size: 20px;
  margin-top: 50px;
}

.team .member p.position{
  color: black;
  margin: 12px 0;
  font-size: 12px;
  text-transform: uppercase;
}

.team .team_member .img{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
}

.team .member .img img{
  width: 100px;
  height: 100px;
  padding: 5px;
}

.team .member .img img:hover{
transform: scale(1.5);
}

/**This style for footer section in home page **/
#footer {
    height: 200px;
    left: 0;
    width: 100%;
    background: rgb(51, 47, 47);
    transition: 0.3s;
    color: white;
    display: flex;
    background-size: cover;
}

#footer h3{
   margin-top: 30px;
}

#footer li{
    list-style-type: none;
    padding: 8px;
    font-family: 'Times New Roman';
}

.fc1{
    margin-left: 30px;
    width: 250px;
}

.fc2{
    width: 300px;
    margin-left: 2px;
}

.fc3{
    width: 300px;
    margin-left: 35px;
}

.fc4{
    width: 300px;
    margin-left: -80px;

}

.Subscribe-bar button{
    border-radius: 0; 
    color:black; 
    background-color: darkgreen;
    margin-left: 2px;
    height: 35px;
    padding: 3px;
}

.Subscribe-bar button:hover{
    color:white; 
    background-color: green;
}

/**This styles for Our objectives in we home section in home page**/
#we-hope {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    flex-wrap: wrap;
}
.Practices {
    margin: 10px;
    flex: 1;
    text-align: center;
}

.gallery {
    position: relative;
    display: inline-block;
}

.gallery img {
    width: 200px;
    height: 200px;
}
 