/* Media query for tablet devices */
.bookapp, .tollfree, .emergen, .nabhuicon {
    display: block; /* Set display to flex */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    margin-left: 40px;
}
@media screen and (max-width: 1143px) {
    .bookapp{
        display: none;
    } 
    .tollfree{
        display:none;
    }
    .emergen{
        display:none;
    }
    .nabhuicon{
        display:none;
    }
}
@media screen and (max-width: 1155px) {
    /* Hide elements within the specified range */
    .bookapp{
        display: flex;
    } 
    .tollfree{
        display:flex;
    }
    .emergen{
        display:none;
    }
    .nabhuicon{
        display:flex;
    }
    
}

@media screen and (max-width: 1485px)  {
    .logo img{
        margin-left: 20px;
        width: 180px;
        height: auto;
        
    }
    

}
.dropdown-menu {
margin-top: 20px; 
margin-left: 60vw;
position: absolute;

height: fit-content;
width: 1;
transition: right 0.5s ease; 


z-index: 1;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}
/* @media screen and (max-width: 1200px) {
    .right-sidebar {
        display: none;
    }
    .card{
        display: none;
    }
} */

   .right-sidebar {
    margin-top: -120px;
    margin-right: 100px;
    padding: 30px;
    
    display: block; /* Display the sidebar by default */
}

.doctor-card1 {
    margin-bottom: 20px;
}

.doctor-card1 img {
    display: block; /* Ensures the image takes the full width available */
    height: 100px;
    width: auto;
    margin-bottom: 10px; /* Adds space between the image and the details */
}

.doctor-details h3 {
    margin-bottom: 5px; /* Adds space below the doctor's name */
}

.doctor-details button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #337ab7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.other-doctor-card button:hover {
    background-color: #265273;
}


    /* Default style for the menu button */
  .menu-button {
            display: none; /* Hide the menu button by default */
        }

       /* Style for the dropdown menu */
 /* .dropdown-menu {
    
    position: fixed;
  top: 0; 
 margin-left: 250px;
  height: 70vh;
  width: 250px;
  background-color: rgba(156, 156, 156, 0.15);
  backdrop-filter: blur(5px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}  */


/* Media query for screens with a maximum width of 600px */
        @media only screen and (max-width: 933px) {
            .menu-button {
                display: block; /* Display the menu button */
            }
        }
.leftalin{
    margin-left:-110px;
}
.rightalin{
    margin-right:-110px;
}
.stalin{
    margin-left:-90px;
    margin-top: 20px;
}
.rightalin {
    text-align: right; /* Align content to the right */
}

.rightalin ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rightalin ul li {
    display: inline-block;
    margin-left: 10px; /* Adjust the spacing between items */
}

.rightalin ul li:first-child {
    margin-left: 0; /* Remove margin for the first item */
}
.card-img img {
    width: auto;
    height: 190px;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Use flexbox to align items */
}



.social-icons li:last-child {
    margin-right: 0; /* Remove margin for the last item */
}

/* If you want to align items to the right on smaller screens */
@media (max-width: 768px) {
    .social-icons {
        justify-content: flex-end; /* Align items to the right */
    }
}

.rightalin ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    display: inline-block; /* Display the icons side by side */
 /* Adjust spacing between icons */
}

.social-icons li:last-child {
    margin-right: 0; /* Remove margin for the last icon */
}

 
#slider {
    overflow: hidden;
}

#slider figure {
    position: relative;
    width: 500%; /* Adjust width as needed */
    margin: 0;
    left: 0;
    animation: 20s slider infinite;
}

#slider figure img {
    width: 20%; /* Set initial width */
    height: 600px; /* Set the desired height */
    float: left;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    #slider figure img {
        width: 20%; /* Adjust width for smaller screens */
        height: 300px; /* Adjust height for smaller screens */
    }
    
}

@media (max-width: 576px) {
  

    #slider figure {
    /* position: relative; */
    width: 500%; /* Adjust width as needed */
    margin: 0;
    left: 0;
    animation: 20s slider infinite;
}
    #slider figure img {
        width: 20%; /* Adjust width for even smaller screens */
        height: 300px; /* Adjust height for even smaller screens */
    }
    .logo img{
        width: 200px;
        
    }
    .appointment img{
        display: none;
    }
    .appointment .nav-link{
        display: none;
    }
}
.voulnteers1 .video-card {
    margin-right: 40px; /* Adjust the margin bottom as needed */
}

.voulnteers1{
    background-color: rgba(161, 234, 233, 0.4);
}
.voulnteers1 .container.section-background {
    
    padding: 20px 50px; /* Adjust the top and bottom padding as needed */
    
}
@keyframes slider {
	0% {
		left: 0;
	}
	20% {
		left: 0;
	}
	25% {
		left: -100%;
	}
	45% {
		left: -100%;
	}
	50% {
		left: -200%;
	}
	70% {
		left: -200%;
	}
	75% {
		left: -300%;
	}
	95% {
		left: -300%;
	}
	100% {
		left: -400%;
	}
}
#header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: white;
            padding: 10px 0;
            transition: top 0.3s;
            z-index: 1000;
        }
        @media (max-width: 768px) {
    
    .appointment {
        margin-left: 10px;
        flex-direction: row;
        align-items: flex-start;
    }

    .nav-items {
        flex-direction: row;
        align-items: center;
        padding-top: 20px;
        
        margin: 0;
    }

    .nav-item {
        margin: 5px 0;
    }
}
.button-container {
    display: flex;
    flex-wrap: wrap; /* Enable wrapping */
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
}

.button-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 20px; /* Adjust spacing between buttons */
    background-color: white;
    border-radius: 10px;
    border: 1px solid #337ab7;
    padding: 15px;
    width: 140px;
    height: 130px;
}

.button-link .img-fluid {
    height: 60px;
    width: 60px;
}

.button-text {
    text-align: center;
    color: #337ab7;
    font-weight: bold;
}

.button-text:hover {
    color: #DA471B;
}

/* Media query for laptops */
@media (max-width: 1024px) {
    .button-container {
        flex-direction: row;
    }
}

/* Media query for mobile devices */
@media (max-width: 700px) {
    .button-container {
        flex-direction: row;
        align-items: center;
    }
}
.facilities .nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Add some margin between buttons and content */
}

.facilities .nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px; /* Add some margin between buttons and content */
    
}

.facilities .nav-pills li {
    /* Adjust margin for spacing between buttons */
    width: 350px;
    margin: 5px;
   
}

.facilities .nav-pills li a {
    color: #000;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    display: block;
}

.facilities .nav-pills li.active a {
    background-color: #DA471B;
    color: #fff;
    border-color: chocolate;
    align-items: center;
}
@media (min-width: 992px) {
     .facilities .tab-content {
    width: 100%;
    margin-left: 200px;
}

.facilities .tab-pane {
    align-items: center;
    height: 30%;
    width: 100%; 
    
    
   
} 
}
.col-sm-12.col-md-12.col-lg-8.col-xl-8 {
    /* Adjust the width and other styles as needed */
    background-color: #f0f0f0; /* Example background color */
    margin-bottom: 20px; /* Example margin */
    padding: 20px; /* Example padding */
}

.mask {
    /* Styles for the mask container */
    padding: 10px; /* Example padding */
    background-color: #fff; /* Example background color */
    border-radius: 5px; /* Example border radius */
    box-shadow: 0 0 10px rgba(249, 247, 247, 0.889); /* Example box shadow */
    
}


.img img {
    /* Styles for the image */
    width: 100%; /* Make the image responsive */
    height: auto; /* Maintain aspect ratio */
}


.appointment {
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment img {
    height: 40px;
    margin: 0 10px;
}

@media screen and (max-width: 768px) {
    .appointment img {
        height: 30px; /* Adjust height for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .appointment img {
        height: 20px; /* Adjust height for even smaller screens */
    }
}
@media (min-width: 600px) {
    .logo{
        margin-right: 120px;
    }
   .logo a img{
    margin-left: 120px;
   
    margin-top: -30px;
   }
}


.imagedown {
    padding-top: 150px; /* Adjust according to the height of your header */
    /* Other styles for the section */
}
  /* Style for the header */
  #header {
            margin-top: 20px;
            background-color: #ffffff;
         /* padding: 10px 0; */
            
        }
        
        .black-line {
            border-top: 1px solid #827f7f;
            margin: 10px 100px 0px 100px;

        }
        
        .logo {
            width: 200px; /* Adjust width as needed */
            height: auto;
            margin-left: 30px;
        }
        
        .menu {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: bold;
        }
        
        .menu a {
            margin: 0 15px;
            text-decoration: none;
            color: #000000;
        }
        
        .appointment {
            font-size: 18px;
        }

/* Add this CSS to your stylesheet */
.nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
   margin:0px 300px 0px ;
    padding: 0;
}


/* Adjustments for mobile sizes */
@media (max-width: 600px) {
    .imagedown {
    padding-top: 120px; /* Adjust according to the height of your header */
    /* Other styles for the section */
    height: 600px;
}
    #header {
            position: fixed;
            top: 0;
            left: 0;
            
            color: white;
            margin-top: 0;
            transition: top 0.3s;
           
        }
        .logo a{
            margin: 0;
        }
    .logo a img{
        padding: 0;
        width: 120px; /* Adjust logo width for smaller screens */
        height: 50px;
        margin-left: 0px;
        margin-top: 0px;
    }

    .appointment {
        margin-left: 5px; /* Adjust margin for appointment section */
    }
    .bottom-mobile {
        display: block; /* Show the mobile menu section */
    }
    .header-content{
        display: none;
    }
    .black-line{
        display: none;
    }
    .appointment img{
        display: none;
    }



.sidenav .dropdown-btn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
}

.sidenav .dropdown-container {
    display: block;
    background-color: #262626;
    padding-left: 8px;
}
    .nav-items {
        display: flex; /* Display navigation items as flexbox on mobile */
        flex-direction: row; /* Stack navigation items vertically */
        align-items: center; /* Center align navigation items */
        margin-top: 10px; /* Add margin between logo and navigation items */
    }

    .nav-item {
        margin: 5px 0; /* Add margin between navigation items */
    }
    


   .showbox{
    display: none;
   }
  
  
}
.appointment img{
    height: 40px;
    width:30px ;
     margin-top: -40px;
     padding: 10px;

}
.nav-item {
   margin: 0; 
}

.nav-link {
    text-decoration: none;
    color: black; /* Adjust link color as needed */
}

.nav-link:hover {
    color: rgb(244, 114, 85); /* Adjust hover color as needed */
}

/* Adjust the width of the left section to cover the whole page */
.left-section {
    width: calc(100% - 200px); /* Subtract the width of the right section */
    padding-right: 20px;
}

/* Remove the right section */
.right-section {
    display: none;
}

/* Adjust the width of the main container */
.main-container {
    display: flex;
    margin-left: 20px; /* Adjust margin-left to center the content */
}

/* Add styling for the content */
.content {
    margin-top: 20px;
}

/* Style headings and paragraphs */
.content h3 {
    color: #337ab7;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.5;
}



.content{
    margin-top: -30px;
    margin-left: 10px;
    padding: 10px;
}
.content h3{
    text-align: left;
    font-weight: bold;
    color: #265273;
    margin-bottom: 20px;

}
   .vr {
    background-color: rgb(160, 157, 157);
    width: 0.5px;
    height: 100%;
    margin: 10px;
}



.main-container {
    display: flex;
}

.left-section {
    flex: 3; /* Adjusted to 3/4 of the width */
    padding-right: 20px;
}

.right-section {
    flex: 1; /* Adjusted to 1/4 of the width */
}

.other-doctors {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.other-doctor-card {
    width: calc(50% - 10px);
}

.other-doctor-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.other-doctor-card button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #337ab7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.other-doctor-card button:hover {
    background-color: #265273;
}

.views-row {
    margin-bottom: 20px;
}

.search-listing {
    display: flex;
    justify-content: space-between;
   
    border-radius: 10px;
    padding: 10px;
}

.search-listing__left img {
    width: fitcontent;
    height: 200px;
   
}

.search-listing__right {
    flex: 1;
    padding-left: 10px;
}

.doctor-name a {
    color: #337ab7;
    font-weight: bold;
    text-decoration: none;
}

.doctor-designation {
    font-weight: bold;
    margin-top: 5px;
}

.doctor-qualification {
    margin-top: 5px;
}

.doctor-bio {
    margin-top: 10px;
}

.title {
    font-weight: bold;
    margin-top: 5px;
}

.search-listing__right__links__book-appointment a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #337ab7;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.search-listing__right__links__book-appointment a:hover {
    background-color: #265273;
}
.headings{
    font-weight: bold;
  text-align: left;
  margin:10px;

}
/* /---------------------------------------------------------------------------------------------------------------------------------------------------/ */
    .doctor-card {
    display: flex;
    width: 90%;
    height: calc(100vh / 3); /* 1/3rd of the viewport height */
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.doctor-info {
    flex: 1;
    padding: 20px;
}

.doctor-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.doctor-image img {
    width: 40%; /* Adjust image width as needed */
    height: auto;
    
}

.appointment-button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #337ab7;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.appointment-button:hover {
    background-color: #265273;
}
