/* Top Bar */
.custom-top-bar {
  border-bottom: 1px solid #ddd;
}

/* Primary Text Color */
.custom-text-primary {
  color: #003366 !important;
}

/* Icon Styling */
.custom-phone-info i, 
.custom-location-info i {
  font-size: 1.2rem;
}

/* Ensure content is aligned as required */
.custom-logo-container {
  display: flex;
  align-items: center;
  position: relative; /* Add relative positioning */
  left: -20px; /* Increase the negative value to move the logo further left */
}

.custom-logo-container .custom-logo-image {
  margin-right: 5px; /* Space between logo and text */
}

/* Container Styling */
.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Flexbox Utility */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

/* Move right items further right */
.custom-right-content {
  position: relative;
  right: -20px; /* Move right items further to the right */
}

.custom-phone-info {
  margin-right: 15px;
}

.custom-location-info {
  margin-left: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .custom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .custom-logo-container {
    left: 0; /* Reset left positioning */
    justify-content: center;
    margin-bottom: 10px;
  }

  .custom-right-content {
    flex-direction: column;
    right: 0; /* Reset right positioning */
    text-align: center;
  }

  .custom-phone-info,
  .custom-location-info {
    margin: 5px 0;
  }
}

@media (max-width: 768px) {
  .custom-logo-image {
    height: 40px; /* Adjust logo size for smaller screens */
  }

  .custom-text-primary {
    font-size: 0.9rem;
  }

  .custom-phone-info i, 
  .custom-location-info i {
    font-size: 1.1rem;
  }
}
/* Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.navbar-dark {
  background-color: #003366; /* Navy Blue */
}

.navbar-nav {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
}

.nav-link:hover {
  color: #f8f9fa;
}

/* Dropdown Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #000;
}

/* Show Dropdown on Hover */
.nav-item:hover > .dropdown-menu {
  display: block;
}

/* Preventive Cardiology Submenu */
.preventive-dropdown .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%; /* Align to the right of the parent */
  margin-left: 0;
  border-radius: 5px;
}

.preventive-dropdown:hover > .dropdown-menu {
  display: block;
}

/* Submenu Items */
.preventive-dropdown .dropdown-item {
  padding: 10px 16px;
  font-size: 14px;
}

.preventive-dropdown .dropdown-item:hover {
  background-color: #f1f1f1;
  color: #000;
}

/* Nested Dropdowns */
.dropdown-item.dropdown {
  position: relative;
}
.dropdown-item.dropdown .dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%; /* Aligns submenu to the right */
  margin-top: -10px; /* Slight alignment adjustment */
  border-radius: 5px;
  display: none;
  z-index: 1; /* Ensure submenu appears above other elements */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Add subtle shadow */
}

.dropdown-item.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  text-decoration: none; /* Remove underline */
  color: #333; /* Set the color to dark gray or another color */
  transition: color 0.3s ease; /* Smooth hover transition */
}

.dropdown-link:hover {
  color: #003366; /* Change hover color (optional) */
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 5px;
  }

  .preventive-dropdown .dropdown-menu {
    position: static;
    margin-left: 0;
  }
}

/* Specific Padding for the Parent Div */
.d-flex.align-items-center {
    padding: 0 15px; /* Add padding to move items away from edges */
    width: auto; /* Ensure it doesn't stretch unnecessarily */
  }
  
  /* Appointment Button Custom Style */
  .btn-appointment {
    background-color: #638F32; /* custom green background */
    color: #fff; /* White text */
    font-weight: bold; /* Bold text */
    font-family: 'Poppins', sans-serif; /* Poppins font */
    border: 2px solid #638F32; 
    border-radius: 4px; /* Rounded corners */
    padding: 10px 20px; /* Padding for a clean appearance */
    font-size: 1rem; /* Font size */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover transition */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Add subtle shadow */
    margin-left: 10px; /* Fine-tune spacing if needed */
  }
  
  /* Hover Effect */
  .btn-appointment:hover {
    background-color: #638F32;
    color: #fff; /* text white */
    border-color: #638F32; 
  }
  
/* Focus State */
.btn-appointment:focus {
  box-shadow: 0 0 5px rgba(131, 174, 67, 0.6); /* Subtle green glow on focus */
  outline: none; 
}
/* Training Button Custom Style */
.btn-training {
  background-color: #638F32; /* custom green background */
  color: #fff; /* White text */
  font-weight: bold; /* Bold text */
  font-family: 'Poppins', sans-serif; /* Poppins font */
  border: 2px solid #002366; 
  border-radius: 4px; /* Rounded corners */
  padding: 10px 20px; /* Padding for a clean appearance */
  font-size: 1rem; /* Font size */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover transition */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Add subtle shadow */
  margin-left: 10px; /* Fine-tune spacing if needed */
}

/* Hover Effect */
.btn-training:hover {
  background-color: #7f9664;
  color: #fff; /* text white */
  border-color: #002366; 
}

/* Focus State */
.btn-training:focus {
  box-shadow: 0 0 5px rgba(67, 74, 174, 0.6); /* Subtle green glow on focus */
  outline: none; 
}/* Training Button Custom Style */
.btn-training {
  background-color: #638F32; /* custom green background */
  color: #fff; /* White text */
  font-weight: bold; /* Bold text */
  font-family: 'Poppins', sans-serif; /* Poppins font */
  border: 2px solid #002366; 
  border-radius: 4px; /* Rounded corners */
  padding: 10px 20px; /* Padding for a clean appearance */
  font-size: 1rem; /* Font size */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover transition */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Add subtle shadow */
  margin-left: 10px; /* Fine-tune spacing if needed */
}

/* Hover Effect */
.btn-training:hover {
  background-color: #7f9664;
  color: #fff; /* text white */
  border-color: #002366; 
}

/* Focus State */
.btn-training:focus {
  box-shadow: 0 0 5px rgba(67, 74, 174, 0.6); /* Subtle green glow on focus */
  outline: none; 
}/* Training Button Custom Style */
.btn-training {
  background-color: #638F32; /* custom green background */
  color: #fff; /* White text */
  font-weight: bold; /* Bold text */
  font-family: 'Poppins', sans-serif; /* Poppins font */
  border: 2px solid #002366; 
  border-radius: 4px; /* Rounded corners */
  padding: 10px 20px; /* Padding for a clean appearance */
  font-size: 1rem; /* Font size */
  transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover transition */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* Add subtle shadow */
  margin-left: 10px; /* Fine-tune spacing if needed */
}

/* Hover Effect */
.btn-training:hover {
  background-color: #7f9664;
  color: #fff; /* text white */
  border-color: #002366; 
}

/* Focus State */
.btn-training:focus {
  box-shadow: 0 0 5px rgba(67, 74, 174, 0.6); /* Subtle green glow on focus */
  outline: none; 
}
  

/* Main Container */
.main-container-style1 {
  background-color: #f9f9f9;
  padding: 30px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  max-width: 800px;
}

/* Section Headers */
.section-style1 h4 {
  font-size: 1.5rem;
  color: #003366;
  font-weight: 600;
  border-bottom: 2px solid #007bff;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

/* Subheadings */
.subheading-style1 {
  font-weight: bold;
  color: #004080;
  margin-bottom: 10px;
}

/* Inputs and Selects */
.form-control {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.5);
}

/* Buttons */
.btn-custom1, .btn-custom2, .btn-style1 {
  display: inline-block;
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: none;
  margin-top: 2px;
  margin-bottom: 10px;
}

/* Primary Button */
.btn-custom1 {
  background: linear-gradient(135deg, #428fe2, #629ede);
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 91, 179, 0.4);
}

.btn-custom1:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 91, 179, 0.6);
}

/* Secondary Button */
.btn-custom2 {
  background: linear-gradient(135deg, #6c757d, #5a6268);
  color: #fff;
  box-shadow: 0 5px 15px rgba(90, 98, 104, 0.4);
}

.btn-custom2:hover {
  background: linear-gradient(135deg, #5a6268, #43494f);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(90, 98, 104, 0.6);
}

/* Success Button */
.btn-style1 {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: #fff;
  box-shadow: 0 5px 15px rgba(69, 160, 73, 0.4);
}

.btn-style1:hover {
  background: linear-gradient(135deg, #45a049, #3e8e41);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(69, 160, 73, 0.6);
}

/* Focused Buttons */
.btn-custom1:focus, .btn-custom2:focus, .btn-style1:focus {
  outline: none;
  box-shadow: 0 0 5px 3px rgba(114, 160, 209, 0.5);
}

/* Disabled Buttons */
.btn-custom1:disabled, .btn-custom2:disabled, .btn-style1:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}


/* Appointment Note */
.appointment-note-style1 {
  font-size: 14px;
  color: #002366;
  margin-top: 10px;
  text-align: center;
}

/* Banner */
.banner2-section {
  position: relative;
  background-image: url('../assets/images/appointment-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  color: white;
  text-shadow: #002366;
  border-radius: 12px;
}

.banner2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 0;
  border-radius: 12px;
}

.banner2-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.banner2-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  
}

.breadcrumb1 {
  margin-bottom: 20px;
  text-align: center;
  
}

.breadcrumb1 a {
  color: #002366;
  text-decoration: none;
  font-weight: bold;

}

.breadcrumb1 a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active[aria-current="page"] {
  color: #002366; /* Change to your desired color (blue example) */
  font-weight: bold; /* Make the text bold */
   /* Underline the text */
}

.breadcrumb-item.active[aria-current="page"]:hover {
  color: #002366; /* Darker shade of blue on hover */
  text-decoration: none; /* Remove underline on hover */
}


















/* Footer Section */
.footer-section {
    background-color: #003366; /* Dark blue background */
    
  }
  
  .footer-section h5,
  .footer-section h6 {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 0.9rem;
    color: #eaeaea;
  }
  
  .footer-section a {
    color: #eaeaea;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: #003366;
  }
  
  .footer-section .input-group .form-control {
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
  }
  
  .footer-section .input-group .btn {
    background-color: #003366; /* Light blue button */
    border: black;
    color: #fff;
    border-radius: 0;
    transition: background-color 0.3s ease;
  }
  
  .footer-section .input-group .btn:hover {
    background-color: #003366;
    border:#002366;
  }
  
  .footer-section hr {
    border-top: 1px solid #eaeaea;
    opacity: 0.2;
  }



  .position-relative {
    position: relative;
  }
  .floating-label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    background: white;
    padding: 0 4px;
    color: #6c757d;
    font-size: 16px;
    transition: 0.2s ease;
  }
  .form-control:focus + .floating-label,
  .form-control:not(:placeholder-shown) + .floating-label {
    top: -8px;
    font-size: 18px;
    color: #495057;
  }

    /* Specific styling for the language tab section */
    .language-tab-section {
      margin-top: 30px;
      margin-bottom: 20px;
      font-family: 'Arial', sans-serif;
    }
  
    /* Styling for the language tab navigation */
    .language-tab-section .nav-tabs {
      background-color: #f7f7f7;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      padding: 0;
      margin: 0;
      box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    }
  
    .language-tab-section .nav-item {
      margin: 0 10px;
    }
  
    /* Styling for each tab */
    .language-tab-section .nav-link {
      padding: 12px 30px;
      text-align: center;
      font-size: 18px;
      color: #007bff;
      background-color: #f7f7f7;
      border: 1px solid #ddd;
      border-radius: 8px 8px 0 0;
      transition: background-color 0.3s ease, color 0.3s ease;
      font-weight: bold;
    }
  
    /* Hover and active state for tabs */
    .language-tab-section .nav-link:hover,
    .language-tab-section .nav-link:focus {
      background-color: #0056b3;
      color: white;
      text-decoration: none;
    }
  
    .language-tab-section .nav-link.active {
      background-color: #0056b3;
      color: white;
      border-color: #0056b3;
    }
  
    /* Styling for the tab content */
    .language-tab-section .tab-content {
      padding: 20px;
      background-color: #f8f9fa;
      border-radius: 10px;
      box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
      margin-top: 20px;
    }
  
    /* Ensure tab panes are hidden by default */
    .language-tab-section .tab-pane {
      display: none;
    }
  
    .language-tab-section .tab-pane.show {
      display: block;
    }