:root {
  --primary-color: #0a2d4d;  /* Navy blue from logo */
}
.logo-img {
    height: 100px;
    transform: scale(1.2); /* 1.2 = 20% larger */
    transform-origin: center; /* Keep centered */
}

/* Font Awesome Icon Sizes and Colors */
.fas.fa-tooth { font-size: 2rem; }
.fas.fa-home,
.fas.fa-info-circle,
.fas.fa-briefcase,
.fas.fa-envelope,
.fas.fa-map-maker,
.fas.fa-user-shield {
  font-size: 20px;
  color: var(--primary-color);
}
.fas.fa-user-shield { font-size: 25px; }
.fas.fa-smile {
  font-size: 50px;
  color: var(--primary-color);
}

/* Navbar General Styling */
.navbar-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: bold;
  transition: color 0.3s ease;
  margin-right: 1rem;
}

.navbar-nav .nav-link:last-child {
  margin-right: 0;
}

.navbar-nav .nav-link i {
  margin-right: 5px;
  color: var(--primary-color);
}

.navbar-nav .nav-link:hover {
  color: #062033; /* Slightly darker navy on hover */
}

/* Admin Button */
.btn-outline-dark {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Dropdown */
.dropdown-menu {
  border-color: var(--primary-color);
  padding: 10px;
}
.dropdown-menu .form-label {
  color: var(--primary-color);
  font-weight: bold;
}
.dropdown-menu .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Repositioning */
.navbar-nav {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}
.dropdown {
  margin-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-nav {
    margin-right: 0;
  }
}

/* Custom Navbar Toggler */
.custom-toggler {
  border: none;
  background: transparent;
}
.custom-toggler .fas {
  font-size: 24px;
  color: var(--primary-color);
}

:root {
  --primary-color: #0a2d4d;  /* Navy blue brand color */
  --light-bg: #f4f9f4;       /* Keep light background if desired */
}

/* Slider Section Styles */
.slider_section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    color: #3b3a3a;
    padding-bottom: 90px;
}

.slider_section .row {
    align-items: center;
}

.slider_section .detail_box {
    color: #000000;
}

.slider_section .detail_box h1 {
    text-transform: uppercase;
    font-weight: bold;
}

.slider_section .detail_box p {
    margin-top: 20px;
}

.slider_section .detail_box a {
    display: inline-block;
    padding: 10px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 35px;
    margin-top: 35px;
}

.slider_section .detail_box a:hover {
    background-color: #061b2d; /* Slightly darker navy on hover */
}

.slider_section .img_container {
    border: 7px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
}

.slider_section .img_container div#carouselExampleControls {
    width: 100%;
    position: unset;
}

.slider_section .img_container .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
    bottom: 5%;
    right: 10%;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
}

.slider_section .carousel-control-prev {
    background-image: url(../images/prev.png);
    background-color: #ffffff;
    transform: translate(-85px, 30px);
}

.slider_section .carousel-control-next {
    background-image: url(../images/next.png);
    background-color: var(--primary-color);
    transform: translate(-45px, 0);
}

.carousel-inner {
    transition: transform 3s ease-out;
}

.carousel-item img:hover {
    transform: scale(1.05);
    transition: all 0.4s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider_section .row {
        flex-direction: column;
        align-items: center;
    }

    .slider_section .detail_box {
        text-align: center;
    }

    .slider_section h1 {
        font-size: 36px;
    }

    .slider_section p {
        font-size: 16px;
    }

    .carousel-inner .carousel-item img {
        max-height: 400px;
    }
}

/* Service Section */
.service_section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.heading_container h2 {
    text-align: center;
    font-size: 36px;
    color: #1a3c8b; /* Royal blue for main heading */
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Service Box Container */
.service_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

/* Individual Service Box */
.box {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 30px;
    transition: all 0.3s ease;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Icon Style */
.box .img-box i {
    font-size: 50px;
    color: #1a3c8b; /* Royal blue for icons */
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.box .img-box i:hover {
    color: #11285c; /* Darker royal blue on hover */
}

/* Title and Description */
.box .detail-box h5 {
    font-size: 24px;
    color: #1a3c8b; /* Royal blue for title */
    font-weight: bold;
    margin-bottom: 10px;
}

.box .detail-box p {
    font-size: 16px;
    color: #6c757d; /* Subtle gray for paragraph */
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service_container {
        flex-direction: column;
        align-items: center;
    }
    .box {
        width: 80%;
    }
}


/* Footer Styling */
.footer-section {
  background-color: #343a40; /* Dark background color */
  color: #ffffff;            /* Light text color */
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c9a227; /* Gold accent color for title */
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
}

.footer-section a:hover {
  color: #c9a227; /* Gold on hover */
}

.footer-section i {
  font-size: 1.5rem;
  color: #c9a227; /* Icon color to match gold theme */
}

@media (max-width: 767px) {
  .footer-section .text-md-right {
    text-align: center;
  }
}

/* General Styling */
.about_us_section {
  background-color: #f8f9fa;
  padding: 3rem 1rem;
}

.about_us_section .section-title {
  font-size: 2.5rem;
  color: #333;
  font-weight: bold;
}

.about_us_section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.about_us_section ul {
  list-style: disc;
  padding-left: 20px;
}

.about_us_section ul li {
  margin-bottom: 10px;
}

/* Card Styling */
.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
}

/* Responsive Spacing */
@media (max-width: 768px) {
  .about_us_section {
    padding: 2rem 1rem;
  }

  .about_us_section .section-title {
    font-size: 2rem;
  }

  .card h4 {
    font-size: 1.3rem;
  }

  .about_us_section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .about_us_section p {
    text-align: justify;
  }
}
/* CEO Section Styling */
.ceo_section {
  padding: 3rem 1rem;
  background-color: #ffffff;
}

.ceo_section .section-title {
  font-size: 2.5rem;
  color: #333;
  font-weight: bold;
}

.ceo_section img {
  border: 5px solid green;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.ceo_section img:hover {
  transform: scale(1.05);
}

.ceo_content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ceo_content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.ceo_content p.font-italic {
  color: #333;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ceo_section {
    padding: 2rem 1rem;
  }

  .ceo_section img {
    max-width: 200px;
	
  }

  .ceo_content h3 {
    font-size: 1.8rem;
	color:green;
  }

  .ceo_content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .ceo_section .row {
    text-align: center;
  }

  .ceo_content h3 {
    margin-top: 1rem;
  }
}



/* Contact Icon Styling */
.contact-icon {
  width: 75px;
  height: 75px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 36px;
  color: #4CAF50;
}

/* Text Styling */
h6 {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}



  /* Circular profile icon */
  .user-icon img {
      width: 40px;  /* Size of the circle */
      height: 40px;
      object-fit: cover;  /* Ensures the image fits inside the circle */
  }
  
  /* Optional: Add border or other styles */
  .user-icon img {
      border: 2px solid #fff;  /* White border around the circle */
  }
    /* Gallery Section Styling */
    .gallery_section {
      padding: 3rem 1rem;
      background-color: #f8f9fa;
    }

    .gallery_section .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .gallery_section .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .gallery_section .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery_section .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery_section .gallery-item .gallery-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      text-align: center;
      padding: 0.5rem;
      font-size: 1rem;
    }
	/* General Styles for the Container */
#register-section {
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo and Brand Section */
#register-section .brand-logo {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #28a745; /* Green color */
}

#register-section .logo {
    color: #28a745;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

/* Form Styles */
#register-section form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
#register-section .form-control {
    border-radius: 8px;
    border: 1px solid #28a745; /* Green border */
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

/* Focus Effect for Input Fields */
#register-section .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Submit Button */
#register-section .btn-primary {
    background-color: #28a745; /* Green background */
    border-color: #28a745;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#register-section .btn-primary:hover {
    background-color: #218838; /* Darker green on hover */
    border-color: #1e7e34;
}

/* Link Styles */
#register-section a {
    color: #28a745; /* Green link color */
    text-decoration: none;
}

#register-section a:hover {
    text-decoration: underline;
    color: #218838; /* Darker green when hovered */
}

/* Terms and Conditions Checkbox */
#register-section .form-check-label {
    font-size: 14px;
    color: #333;
}

/* Bottom Links */
#register-section p.mt-4 {
    font-size: 14px;
    text-align: center;
}

#register-section .btn-link {
    font-size: 14px;
    color: #007bff; /* Blue link color */
    text-decoration: none;
}

#register-section .btn-link:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker blue on hover */
}

/* Section Header (Green Accent) */
#register-section h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #28a745; /* Green color */
    margin-bottom: 30px;
}

/* Form Text */
#register-section p.mb-4 {
    text-align: center;
    color: #555;
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    #register-section {
        padding: 20px;
    }

    #register-section .form-control {
        font-size: 14px;
    }

    #register-section .btn-primary {
        font-size: 14px;
    }
}
/* General Styles for the Forgot Password Section */
#forgot-password-section {
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo and Brand Section */
#forgot-password-section .brand-logo {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #28a745; /* Green color */
}

#forgot-password-section .logo {
    color: #28a745;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

/* Forgot Password Heading */
#forgot-password-section h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #28a745; /* Green color */
    margin-bottom: 30px;
}

/* Form Styles */
#forgot-password-section form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
#forgot-password-section .form-control {
    border-radius: 8px;
    border: 1px solid #28a745; /* Green border */
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

/* Focus Effect for Input Fields */
#forgot-password-section .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Submit Button */
#forgot-password-section .btn-primary {
    background-color: #28a745; /* Green background */
    border-color: #28a745;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#forgot-password-section .btn-primary:hover {
    background-color: #218838; /* Darker green on hover */
    border-color: #1e7e34;
}

/* Back to Login Link */
#forgot-password-section .text-center a {
    color: #28a745; /* Green link color */
    text-decoration: none;
    font-size: 14px;
}

#forgot-password-section .text-center a:hover {
    text-decoration: underline;
    color: #218838; /* Darker green when hovered */
}

/* Form Text */
#forgot-password-section p.mb-4 {
    text-align: center;
    color: #555;
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    #forgot-password-section {
        padding: 20px;
    }

    #forgot-password-section .form-control {
        font-size: 14px;
    }

    #forgot-password-section .btn-primary {
        font-size: 14px;
    }
}
/* General Styling for the Card */
#card {
    max-width: 400px;
    margin: auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Brand Logo */
#card .brand-logo {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #28a745; /* Green color for the logo */
}

#card .logo {
    color: #28a745;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Login Form Title */
#card p.mb-4 {
    font-size: 16px;
    text-align: center;
    color: #555;
}

/* Input Fields */
#card .form-control {
    border-radius: 8px;
    border: 1px solid #28a745; /* Green border */
    padding: 12px;
    transition: all 0.3s ease-in-out;
}

/* Input Focus Effect */
#card .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Input Group for Password */
#card .input-group {
    display: flex;
    align-items: center;
}

#card .input-group button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#card .input-group input {
    flex-grow: 1;
}

/* Password Visibility Icon */
#card #toggle-password i {
    font-size: 20px;
    color: #28a745;
}

/* Submit Button */
#card .btn-primary {
    background-color: #28a745;
    border-color: #28a745;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

#card .btn-primary:hover {
    background-color: #218838; /* Darker green on hover */
    border-color: #1e7e34;
}

/* Remember Me Checkbox */
#card .form-check-input {
    border-radius: 4px;
}

/* Additional Links Section */
#card .text-center p {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

#card .btn-link {
    color: #28a745; /* Green link color */
    font-size: 14px;
    text-decoration: none;
}

#card .btn-link:hover {
    color: #218838; /* Darker green when hovered */
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    #card {
        padding: 20px;
    }

    #card .form-control {
        font-size: 14px;
    }

    #card .btn-primary {
        font-size: 14px;
    }
}
}
*/
}
#alternative-register {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s ease;
}

.social-login i {
    font-size: 20px;
}

.social-login.google {
    background-color: #db4437;
}

.social-login.facebook {
    background-color: #4267B2;
}

.social-login.twitter {
    background-color: #1DA1F2;
}

.social-login:hover {
    opacity: 0.9;
}
/* style.css */

/* General Page Styling */

}

/* Header Section Styling */
/* Header Section Styling */
#header_section {
    background-color: #ffffff;
    color: green;
}

/* Custom Navbar */
#header_container {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#navbar {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar_logo h1 {
    font-size: 24px;
    font-weight: bold;
    color: green;
}

/* User Profile Icon */
#user_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer; /* Make the icon clickable */
}

/* User Profile Icon Image */
#user_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dropdown Menu */
#dropdown_menu {
    display: none; /* Initially hidden */
    position: absolute;
    top: 45px; /* Position the dropdown below the icon */
    right: 0;  /* Align to the right of the user icon */
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 1000;
}

#dropdown_menu .dropdown-item {
    color: #333;
    padding: 10px 15px;
    font-size: 14px;
    text-decoration: none;
    display: block;
}

#dropdown_menu .dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Show dropdown when user clicks the icon */
#user_icon.active + #dropdown_menu {
    display: block; /* Show dropdown */
}
#dropdownMenuButton{
	Border-radius:50%;
}
/* Admin Section */
#admin-section {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* Logo */
#admin-section .logo-icon {
    color: green;
    margin-bottom: 10px;
}

#admin-section .logo-text {
    color: green;
    font-size: 1.5rem;
}

/* Form Fields */
#admin-section .form-label {
    font-weight: 600;
    color: #555;
}

#admin-section .form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

#admin-section .form-control:focus {
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
    border-color: #007bff;
}

/* Button */
#admin-section .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

#admin-section .btn-primary:hover {
    background-color: #0056b3;
}


/* Main Container */
.container1 {
  position: relative;
  width: 1000px;
  height: 600px;
  background: #fff;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 15px;
}

/* Slide Wrapper */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Each Item */
.item {
  position: absolute;
  width: 200px;
  height: 300px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  overflow: hidden;
}

/* Positioning Each Image */
.item:nth-child(1) {
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 5;
}

.item:nth-child(2) {
  left: calc(50% - 110px);
  z-index: 4;
}

.item:nth-child(3) {
  left: calc(50% + 120px);
  z-index: 3;
}

.item:nth-child(4) {
  left: calc(50% + 350px);
  z-index: 2;
}

.item:nth-child(5) {
  left: calc(50% + 580px);
  z-index: 1;
}

/* Content Box inside Image */
.content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Title Text */
.content .name {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Description Text */
.content .des {
  font-size: 14px;
  margin-top: 5px;
}

/* Button Style */
.content button {
  margin-top: 10px;
  padding: 8px 16px;
  background: #007bff;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.content button:hover {
  background: #0056b3;
}
