/* General Styles */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --accent-color: #ff6b6b;
  --gradient-primary: linear-gradient(135deg, #ef7f1a, #ef7f1a);
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.section-title {
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
}

.btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  max-width: 221px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  /* box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3); */
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

/* Header */
.navbar {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

/* Banner Section */
.banner-section {
  position: relative;
  margin-top: -1px;
}

.banner-container {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.banner-container img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.banner-content {
  /* position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); */
  position: absolute;
  top: 0;
  left: 0;
  /* transform: translate(-50%, -50%); */
  color: white;
  width: 50%;
  height: 100%;
  z-index: 2;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background: rgba(255, 255, 255, 0.9); */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  ); /* Stronger white shade */
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.banner-content .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #343a40;
}
/* .about-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 20px auto;
  display: block;
  object-fit: cover;

  
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScaleIn 1s forwards ease-in-out;
}

@keyframes fadeScaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
} */
.about-section .about-image-container {
  position: relative;
  /* display: inline-block; */
}
.about-section .about-image-container img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.05);
}
.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-section .about-image-container:hover img {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}
.about-section .about-image-container::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #005293, #9fcdf1);
  border-radius: 20px;
  z-index: -1;
  opacity: 1;
  transform: rotate(-3deg);
  transition: all 0.5s ease;
}

.about-section .about-image-container::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid rgb(0, 0, 0);
  border-radius: 20px;
  z-index: -1;
  animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
  0%,
  100% {
    border-color: rgba(0, 0, 0, 1);
  }
  50% {
    border-color: rgba(0, 0, 0, 0.3);
  }
}

/* Assessment Section */
.assessment-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.assessment-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(13, 110, 253, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.assessment-item {
  padding: 1.5rem;
  transition: all 0.3s;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 10px;
  height: 100%;
}
.assessment-item {
  max-width: 250px;
  margin: auto;
}
.assessment-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.assessment-item img {
  border-radius: 10px;
  transition: all 0.3s;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.assessment-item:hover img {
  transform: scale(1.05);
}

.assessment-item h5 {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.assessment-item p {
  color: var(--secondary-color);
  margin-top: 0.5rem;
}

.assessment-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.assessment-carousel .owl-prev,
.assessment-carousel .owl-next {
  position: absolute;
  background: var(--primary-color) !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.assessment-carousel .owl-prev {
  left: -20px;
}

.assessment-carousel .owl-next {
  right: -20px;
}

.assessment-carousel .owl-prev:hover,
.assessment-carousel .owl-next:hover {
  background: var(--dark-color) !important;
}

/* Premium Services Section */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
  transition: all 0.5s;
  height: 250px;
  object-fit: cover;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: white;
}

/* More Services Section */
.service-simple {
  transition: transform 0.3s;
  cursor: pointer;
}

.service-simple:hover {
  transform: translateY(-5px);
}

.service-simple img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
/* .team-section {
  padding: 80px 0;
  background-color: white;
}

.team-member {
  margin: 0 10px;
  transition: transform 0.3s;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img-container {
  position: relative;
  overflow: hidden;
}

.team-img-container img {
  width: 100%;
  transition: transform 0.5s;
}

.team-member:hover .team-img-container img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(13, 110, 253, 0.8);
  padding: 10px 0;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
}

.team-member:hover .team-social {
  bottom: 0;
}

.team-social a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  transition: all 0.3s;
}

.team-social a:hover {
  transform: scale(1.2);
}

.team-member h5 {
  margin-top: 20px;
  font-weight: 600;
}

.team-member .specialty {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-member .team-desc {
  padding: 0 15px;
  font-size: 14px;
}

.team-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.team-carousel .owl-prev,
.team-carousel .owl-next {
  position: absolute;
  background: var(--primary-color) !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.team-carousel .owl-prev {
  left: -20px;
}

.team-carousel .owl-next {
  right: -20px;
}

.team-carousel .owl-prev:hover,
.team-carousel .owl-next:hover {
  background: var(--dark-color) !important;
} */


.team-section {
  position: relative;
}

.team-member {
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Carousel arrows */
/* Custom Nav Arrows */
.custom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6600;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  z-index: 9999; /* HIGH z-index */
  cursor: pointer;
  transition: background 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.custom-nav:hover {
  background: #e65c00;
}

.custom-nav-left {
  left: 10px;  /* inside padding */
}

.custom-nav-right {
  right: 10px;
}

.custom-nav i {
  font-size: 18px;
}
.team-section {
  padding: 80px 0;
  background-color: white;
}
.team-member {
  
  transition: transform 0.3s;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);/* balanced and subtle */
  padding-bottom: 20px;
  margin-bottom: 20px;
}


.team-member {
 
  transition: transform 0.3s;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
  padding-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08); /* equal on all sides */
}

@media (max-width: 767px) {
  .custom-nav {
    top: 40%;
  }
  .appointment-content .subheading{
    font-size: 12px;
    letter-spacing: 1px !important;
  }
}
.team-section h2{
      font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-section h2::after{
  content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}











/* Appointment Section */
.appointment-section {
  background: url("../images/appointment.jpg") center center/cover no-repeat;
    no-repeat center center/cover;
  position: relative;
}

.appointment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.appointment-container {
  position: relative;
  padding: 4rem 0;
}

.appointment-content {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  margin-left: auto;
}

.appointment-content .subheading {
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: 600;
}

/* Footer */
/* .footer-section {
  background-color: rgb(0 34 68) !important;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: background-color 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: var(--primary-color);
}
.policy a {
  text-decoration: none;
} */
 
.footer-section {
  background: url('../images/drfooter-bg.jpg'); /* example image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding-top: 60px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #ffffff33;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #ccc;
  font-size: 15px;
}

.footer-links li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact li i {
  width: 20px;
  margin-right: 10px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #f07e1a;
  text-decoration: none;
}
.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-links li a:hover {
  color: #f07e1a;
  text-decoration: none;
}
.policy li a{
  text-decoration: none;
  
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .banner-content {
    width: 100%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
  }

  .appointment-content {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
    display: block;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Owl Carousel General Styling */
.owl-theme .owl-dots .owl-dot span {
  background: #d6d6d6;
  transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color);
}

.owl-carousel {
  padding: 0 30px;
}
 .modal-content {
    border-radius: 15px;
    overflow: hidden;
  }
  .modal-body label {
    font-weight: 500;
  }
  .modal-footer .btn {
    font-size: 1.1rem;
    padding: 10px;
  }
  .bg-dark{
        background-color: rgb(9 107 162) !important;
        opacity: 1;
        
  }
  .testimonial-section 
  .testimonial-card h5{
    color: #005293;
  }
  .testimonial-section h2{
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonial-section h2::after {
    
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}
  
.breadcrumb{
  text-align: center;
  padding: 80px 0px;
  margin: 0px;
  background: var(--gradient-primary);
}

.breadcrumb h1{
  color: #fff;
  font-size: 36px;
  margin: 0px;
  padding: 0px;
}

.cms-data{
  padding: 60px 0px;
}

.cms-data h3{
  color:#0a6ba2;
   font-size: 28px;
   margin-bottom: 15px;
}


.cms-data h4{
  color:#000;
  font-size: 22px;
  margin-bottom: 15px;
}


.cms-data ul,
.cms-data ol{
  margin: 0px 0px 15px;
  padding: 0px;
  list-style-type: none;
}

.cms-data ul li,
.cms-data ol li{
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.cms-data ul li::before,
.cms-data ol li::before{
  content: '\f192';
  position: absolute;
  left: 0px;
  top: 0px;
  font-family: "Font Awesome 6 Free";
  color: #ff6f00;
}