
/* NAVBAR CSS */

.clinic-heading {
    font-family: 'Roboto', sans-serif; 
    font-weight: bold;
    color: #0d1b3d; 
    letter-spacing: 2px; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
    margin-bottom: 5px;
  }
  
  @media (max-width: 1200px) {
  .clinic-heading {
    font-size: 2rem;
  }
  }
  
  @media (max-width: 992px) {
  .clinic-heading {
    font-size: 1.8rem;
  }
  }
  
  @media (max-width: 768px) {
  .clinic-heading {
    font-size: 1.6rem;
  }
  }
  
  @media (max-width: 576px) {
  .clinic-heading {
    font-size: 1.4rem;
  }
  }
  
  
  
  /* MEDIA QUERIES OF DROPDOWN HOME */
  
  @media (max-width: 768px) {
  .dropdown-menu {
    width: 100%;
    padding: 20px;
  }
      
  .dropdown-item {
    padding: 15px;
    font-size: 1.1rem;
  }
  }
      
  @media (max-width: 576px) {
  .dropdown-menu {
    width: 100%;
    padding: 15px;
    border-radius: 0;
  }
      
  .dropdown-item {
    padding: 12px;
    font-size: 1rem;
  }
  }
  @media (max-width: 480px) {
  .dropdown-menu {
    padding: 10px;
  }
      
  .dropdown-item {
    padding: 10px;
    font-size: 0.9rem;
  }
  }
  .navbar-nav .nav-link:hover {
    color: blue;
    border-radius: 5px;
  }
    
  .navbar-nav .nav-link {
    font-size: 16px;
    color: green;
    font-weight: bold;
    padding-left: 20px;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
    
  .navbar-nav .nav-link:hover {
    color: #0056b3;
    border-bottom: 3px solid #007BFF;
  }
  
  
    /* DROPDOWN CSS */
  
  .stylish-dropdown {
    border-radius: 8px; 
    padding: 10px; 
    }
    
  .stylish-dropdown .dropdown-item {
    color:green ;
    font-weight: 500;
  }
  
  .stylish-dropdown .dropdown-item:hover{
    color: blue;
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h1 {
    color:#004d99;
    margin-bottom: 10px;
}

.intro p {
    font-size: 18px;
}

.research-section h2, .documents-section h2, .media-library h2, .dental-research h2 {
    color: #004d99;
    margin-bottom: 20px;
    text-align: left;
}

.research-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}

.card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.card h3 {
    color: #004d99;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    line-height: 1.5;
}

.dental-research {
    text-align: left;
    margin-bottom: 40px;
}

.dental-research img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.dental-research p {
    font-size: 18px;
    line-height: 1.6;
}

.documents-section ul, .media-library ul {
    list-style-type: none;
}

.documents-section li, .media-library li {
    margin-bottom: 10px;
}

.documents-section li a, .media-library li a {
    color: #004d99;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid #004d99;
}

.documents-section li a:hover, .media-library li a:hover {
    color: #003366;
    border-bottom: 2px solid #003366;
}

/* Responsive Media Queries */

@media (max-width: 1024px) {
    .research-cards {
        justify-content: center;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
    }

    .intro p {
        font-size: 16px;
    }

    .dental-research p {
        font-size: 16px;
    }
}




/* FOOTER CSS */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.footer {
    background-color: #0d1b3d;
    color: #fff;
    padding: 40px 0;
    font-size: 15px;
}
.footer h5 {
    font-weight: bold;
    margin-bottom: 20px;
}
.footer p {
    color: #b5b9bf;
}
.footer a {
    color: #b5b9bf;
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
    text-decoration: none;
}
.footer .icon {
    margin-right: 10px;
}
.footer .social-icons a {
    margin-right: 10px;
    display: inline-block;
    font-size: 20px;
    color: #b5b9bf;
}
.footer .social-icons a:hover {
    color: #fff;
}
.footer .opening-hours i {
    margin-right: 10px;
}
.footer .copyright {
    margin-top: 30px;
    text-align: center;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1f73f0;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Media queries */
@media (max-width: 767px) {
.footer {
    text-align: center;
}
.footer .col-md-3 {
    margin-bottom: 20px;
}
}

.ankor{
    margin-left: 10px;
}

.links{
    margin-left: 20px;
}

.others{
    margin-left: 20px;
}

#clock{
    font-size: 30px;
}

#phone{
    font-size: 20px;
    color: white;
}
#location{

    font-size: 20px;
    color: white;
}
#envelope{

    font-size: 20px;
    color: white;
}


#facebook{

    font-size: 30px;
    color: white;

}
#insta{

    font-size: 30px;
    color: white;

}
#twitter{
    font-size: 30px;
    color: white;
}
