/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #185C86;
  text-decoration: none;
}

a:hover {
  color: #659ccd;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

.img-responsive{
  width: 100%;
}
.text-right{
  text-align: right;
}
.text-center{
  text-align: center;

}
::selection {
  color: #fff;
  background: #185C86;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #185C86;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #185C86;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #659ccd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #185C86;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
       background: #fff;
      transition: all 0.5s;
      z-index: 997;
      padding: 10px 0;
      top: 0px;
      
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
  padding:5px;
  background-color: #fff;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 75px;
}

/**
* Appointment Button
*/
.appointment-btn {
  margin-left: 25px;
  background: #185C86;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ee7c00;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #185C86;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
.search-box{
  background-color: #eee;
  border: 1px solid #185C86;
  margin-left: 20px;
  border-radius: 60px;
  
}

.navbar input[type=text] {  
  padding: 7px 15px;
  line-height: 32px;
  font-size: 15px;
  border: none;
  background: none;
  width: 250px;
  outline: unset;
}

.navbar .search-container{
  background: none;
  border: none;
  padding: 5px 15px;
  color: #185C86;
}


@media screen and (max-width: 600px) {

  .navbar .search-container {
    display: inline-block;
    width: 20%;
    margin: 0;
    padding: 14px;
  }
  .navbar input[type=text] {
    float: left;
    text-align: left;
    width: 80%;
    margin: 0;
  }
  .search-box{
    margin:0px 7px;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #185C86;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #185C86;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 55vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  background-color: rgba(4, 12, 21, 0.6);
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #185C86;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #185C86;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #185C86;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f9fc;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: 'Martel', serif;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #185c86;
  bottom: 0;
  /* left: calc(50% - 25px); */
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
/* Breadcrumbs Section */
.breadcrumbs {
  position: relative;
  background: #333; /* Dark background for contrast */
  padding: 20px 0;
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Ensures left alignment */
  flex-direction: column; /* Stacks title and links */
  text-align: left;
}

.breadcrumbs .title {
  align-items: center;
  color: white !important;
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px; /* Space between title and breadcrumbs */
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Aligns to the left */
  gap: 10px; /* Adds spacing between Home & About Us */
}

.breadcrumb-wrapper span, 
.breadcrumb-wrapper a {
  color: white !important;
  font-size: 16px;
  text-decoration: none;
}

.breadcrumb-wrapper a:hover {
  text-decoration: underline;
}

.breadcrumbs {
  padding: 20px 0;
    /* background-color: #eef9ec; */
    max-height: 400px;
    margin-top: 0px;
    /* min-height: 220px;
    margin-top: 85px; */
    background: url('../img/product-banner.jpg') center center;
    /* background: url('../img/about-banner.png') center center; */
}

.abt-page-title-row-inner {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.02);
  text-align: center;
  position: relative;
  padding: 200px 0px 55px 0px;
  margin: 0 auto;
  z-index: 2;
}
.abt-page-title-row-inner .row {
  min-height: 150px;
  margin: 0;
}
.page-title-heading h1 {
  display: inline-block;
    text-transform: capitalize;
    font-size: 36px;
    line-height: 1;
    font-weight: 800;
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
    color: #314618;
    font-family: 'Martel';
}
.page-title-heading h1:before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
}
.breadcrumb-wrapper {
  z-index: 99;
  display: inline-block;
}
.breadcrumb-wrapper span:first-child {
  padding-right: 20px;
}

.breadcrumb-wrapper span {
  font-size: 16px;
  display: inline-block;
  font-weight: 400;
  position: relative;
}
.breadcrumb-wrapper span:first-child:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 2px;
  right: 6px;
  top: 12px;
  display: inline-block;
  font-style: normal;
  background-color: currentColor;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #185C86;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #185C86;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #185C86;
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #185C86;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #185C86;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #185C86;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #555555;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #185C86;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #185C86;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #185C86;
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon i {
  font-size: 36px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #185C86;
}

.services .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #185C86;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br+br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: #185C86;
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: #185C86;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: #659ccd;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #fff;
  cursor: pointer;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #185C86;
}

.departments .nav-link.active {
  background: #f7f9fc;
  border-color: #185C86;
}

.departments .nav-link.active h4 {
  color: #185C86;
}

.departments .tab-pane.active {
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #185C86;
}

.departments .tab-pane p {
  color: #777777;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b2e4e6;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #f0fafa;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #185C86;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #185C86;
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.doctors .member .social a i {
  line-height: 0;
}

.doctors .member .social a:hover {
  color: #185C86;
}

.doctors .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.doctors .member .member-info {
  padding: 25px 15px;
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
}

.doctors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.doctors .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #185C86;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #185C86;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid #185C86;
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #185C86;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #185C86;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #185C86;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #659ccd;
}

.pricing .featured h3 {
  color: #fff;
  background: #185C86;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #185C86;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d9f1f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #185C86;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #32969a;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #185C86;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  /* text-align: center;
  box-shadow: 1px 1px 22px -1px rgb(50 50 50 / 31%); */
  padding: 20px;
  background: #fff;
}
.contact .info-box i {
  font-size: 22px;
  color: #ffffff00;
  border-radius: 50%;
  padding: 8px;
  border: 2px solid #185C86;
  background: #185C86;
  margin-top: 15px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #444;
  font-weight: 700;
  padding: 0px 10px 0px;
  display: inline;
}

.contact .info-box p {
  padding-left:56px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  /* box-shadow: 0 0 20px rgba(214, 215, 216, 0.5); */
  padding: 23px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #d21818;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #d21846;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #188639;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #185C86;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #659ccd;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }



  100% {
    transform: rotate(360deg);
  }
}

    .contact-detail {
        color: black; /* Sets text color to black */
        font-size: 16px; /* Adjust size if needed */
    }

    .contact-detail i {
        color: black; /* Sets icon color to black */
    }

    .contact-detail a {
        color: black; /* Sets link color to black */
        text-decoration: none; /* Removes underline */
    }

    .contact-detail a:hover {
        color: darkgray; /* Optional: Change color on hover */
    }

/* Add border around the form container */
.php-email-form {
  border: 2px solid hsl(184, 20%, 49%); /* Border color (blue) */
  padding: 20px;
  border-radius: 10px; /* Rounded corners for the form */
}

/* Add border to all form input fields */
.php-email-form .form-control {
  border: 2px solid #b30000; /* Border color for inputs */
  border-radius: 5px; /* Rounded corners for inputs */
  padding: 10px; /* Space inside the input fields */
  margin-bottom: 15px; /* Space between inputs */
}

/* Add border to the textarea */
.php-email-form textarea.form-control {
  border: 2px solid #b30000; /* Border color for textarea */
  border-radius: 5px;
  padding: 10px;
}

/* Add focus effect for inputs and textarea */
.php-email-form .form-control:focus {
  border-color: #b30000; /* Darker blue on focus */
  outline: none; /* Remove default outline */
}

/* Optional: Add hover effect */
.php-email-form .form-control:hover {
  border-color: #b30000; /* Darker blue on hover */
}
.text-success {
  color: black !important; /* Force the color to black */
}
.contact-info h3, .contact-info h4 {
  font-size: 24px; /* Adjust as needed */
  font-weight: bold;
}

.contact-detail {
  font-size: 18px; /* Adjust as needed */
}

.social-icons a {
  font-size: 24px; /* Adjust icon size */
  margin-right: 10px;
}
/* Change border color of input fields and textarea */
.form-control {
  border: 1px solid #185C86 !important; /* Custom blue border */
}

/* Change border color of select dropdown */
select.form-control {
  border: 1px solid #185C86 !important;
}

/* Change border color of the button */
.btn-custom-border {
  border: 2px solid #185C86 !important; /* Adds blue border */
  background-color: white; /* Keeps button background white */
  color: #185C86; /* Text color */
}

/* Change button border color on hover */
.btn-custom-border:hover {
  background-color: #185C86;
  color: white;
}
/*--------------------------------------------------------------
# Inner Page
--------------------------------------------------------------*/
.inner-page{
  background-color: #e6e6e6/* #dcffda */;
  padding: 40px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
  background-color:#333;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .logo img{
  width: 200px;
  margin-bottom: 15px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #545454;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #15171a;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  color: #18864f;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #659ccd;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #c00a0a;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #272a2c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #22a13d;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}


.our-usp-wrapper {
  column-count: 3;
  column-gap: 40px;
  margin-left: 0.9rem;
}
.our-usp-wrapper li {
  margin: 0 0 3rem;
}

/*------------------
About Section
----------------------------------------*/

.bg-layer-equal-height .abt-col-bgimage-yes, .bg-layer-equal-height .abt-col-bgcolor-yes, .bg-layer-equal-height .layer-content {
  height: 100%;
}
.spacing-13 {
  margin-top: -55px;
  margin-left:0px;
}
.abt-col-bgimage-yes {
  z-index: 1;
}
.abt-bg {
  position: relative;
}
.col-bg-img-fifteen.abt-col-bgimage-yes .abt-col-wrapper-bg-layer {
  background-image: url('../../assets/img/doctor1.jpg');
  background-repeat: no-repeat;
}
/*here added about synryn pharma image highlighting */

.col-bg-img-fifteen.abt-col-bgimage-yes .abt-col-wrapper-bg-layer:hover,
.col-bg-img-fifteen.abt-col-bgimage-yes .abt-col-wrapper-bg-layer:active {
    filter: brightness(1.2); /* Increase brightness for highlight */
}
.highlight-bg .abt-col-wrapper-bg-layer {
  filter: brightness(1.3); /* Highlight effect */
  box-shadow: 0px 0px 10px rgb(122, 129, 133); /* Soft yellow glow */
  transition: all 0.3s ease-in-out;
}
@keyframes blink-move {
  0% { transform: translateY(0); opacity: 1; }
  25% { transform: translateY(-5px); opacity: 0.7; }
  50% { transform: translateY(0); opacity: 1; }
  75% { transform: translateY(5px); opacity: 0.7; }
  100% { transform: translateY(0); opacity: 1; }
}

.col-bg-img-fifteen.abt-col-bgimage-yes .abt-col-wrapper-bg-layer.clicked {
  animation: blink-move 0.6s ease-in-out 3; /* Runs 3 times */
}
/*up to here*/
.abt-left-span .abt-col-wrapper-bg-layer {
  width: auto;
  margin-left: -150px;
  right: 0;
}
.abt-bg-layer, .abt-titlebar-wrapper .abt-titlebar-wrapper-bg-layer, .abt-col-wrapper-bg-layer-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.bg-layer-equal-height .abt-col-bgimage-yes, .bg-layer-equal-height .abt-col-bgcolor-yes, .bg-layer-equal-height .layer-content {
  height: 100%;
}
.layer-content {
  position: relative;
  z-index: 1;
}
.spacing-14 {
  padding: 70px 0 40px 20px;
}
.abt-bg {
  position: relative;
}
.abt-right-span .abt-col-wrapper-bg-layer {
  width: auto;
  margin-right: -100px;
  right: 0;
}
.abt-bg-layer, .abt-titlebar-wrapper .abt-titlebar-wrapper-bg-layer, .abt-col-wrapper-bg-layer-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.layer-content {
  position: relative;
  z-index: 1;
}
.abt-bg .section-title h3 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
}
.abt-bg .section-title h2.title {
  font-weight: 800;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 0;
  color: #333;
}
.abt-bg.section-title h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #185C86;
}
.featured-icon-box.style8 {
  position: relative;
}
.featured-icon-box.style8 .featured-icon {
  position: absolute;
  right: -80px;
  bottom: 0;
}
.featured-icon-box.icon-align-before-content .featured-icon, .featured-icon-box.icon-align-before-content .featured-content {
  display: table-cell;
  vertical-align: middle;
}
.featured-icon-box.icon-align-before-content .featured-icon, .featured-icon-box.icon-align-before-content .featured-content, .featured-icon-box.icon-align-before-title .featured-icon, .featured-icon-box.icon-align-before-title .featured-title {
  display: table-cell;
  vertical-align: middle;
}
.featured-icon-box .abt-icon {
  margin-bottom: 0;
}
.abt-icon {
  margin-bottom: 35px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
  position: relative;
  transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  box-sizing: content-box;
  position: relative;
}
.featured-icon-box.style8 .featured-icon i {
  color: #fff;
  opacity: 0.02;
  transition: all 700ms ease;
  font-size: 300px;
  margin-bottom: -40px;
}
.featured-icon-box.icon-align-before-content .featured-icon i {
  display: inline-block;
  vertical-align: middle;
  position: unset;
  -webkit-transform: translate(0,0);
  -ms-transform: translate(0,0);
  -o-transform: translate(0,0);
  transform: translate(0,0);
}
.featured-icon-box.icon-align-before-content .featured-content {
  padding-left: 15px;
}
.featured-icon-box.style8 .featured-title h3 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}
.abt-textcolor-skincolor, .featured-icon-box.style8 .featured-content .abt-list.abt-list-style-icon li i{
  /* color: #185C86; */
  color: #185c86;
}
.abt-list.abt-list-style-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.abt-list.abt-list-style-icon li {
  position: relative;
  padding-bottom: 11px;
}
.abt-list.abt-list-style-icon .abt-list-li-content {
  display: inline-block;
  padding-left: 20px;
  font-weight: 400;
}
.abt-btn.btn-inline {
  text-transform: capitalize;
  padding: 0;
  font-weight: 500;
  border: 1px solid transparent;
  background-color: transparent;
}
.abt-list.abt-list-style-icon {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.abt-list.abt-list-style-icon li {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.abt-list.abt-list-style-icon .abt-icon {
    font-size: 18px;
    color: #185c86;
    margin-right: 10px;
}

.abt-list.abt-list-style-icon .abt-list-li-content {
    font-weight: 500;
    color: #333;
}

/*------------------
Why Choose Us
----------------------------------------*/
.services-section{
  color: #fff;
  padding: 70px 0px;
}
.section-title h2.title {
  font-weight: 800;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 0;
  font-family: 'Martel', serif;
}
.section-title h3 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
}
.bg-img8 {
  background-image: url(../img/why-us.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}


.ttm-bg.ttm-bgimage-yes >.ttm-bg-layer, .ttm-bgcolor-skincolor > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner, .ttm-bgcolor-darkgrey > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner, .ttm-bgcolor-grey > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner, .ttm-bgcolor-white > .ttm-bg-layer > .ttm-col-wrapper-bg-layer-inner {
  opacity: .95;
}

.ttm-bg-layer, .ttm-titlebar-wrapper .ttm-titlebar-wrapper-bg-layer, .ttm-col-wrapper-bg-layer-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
}
.section-title.title-style-center_text {
  text-align: center;
  margin-bottom: 40px;
}
.featured-icon-box.icon-align-top-content .featured-content {
  margin-top: 18px;
  position: relative;
}
.featured-title h3 {
  font-size: 20px;
  line-height: 30px;
  margin: 20px 0px 5px;
  font-weight: 700;
}
[class*='col-'] .featured-icon-box.icon-align-top-content.style5:after {
  position: absolute;
  content: "";
  top: 0;
  left: -15px;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.13);
}
.services-section .icon {text-align: center;margin-bottom: 10px;}
.services-section .icon img{ width: 72px;}
.services-section h4 {
  color: #fff;
    text-align: center;
    font-weight: 300;
    font-size: 18px;
}

.featured-imagebox-services:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
}

/*--- Products Page ---*/
.prod .search{
  display:flex;
}
.prod .search input{
  border-radius: 30px 0px 0px 30px;
    width: 80%;
    display: inline-block;
    border: none;
    background: #ddd;
    padding-left: 20px;
}
.prod .search button{
  border-radius:0px 30px 30px 0px;
    width: 200px;
    background: #185C86;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}
.prod .search button:hover{
  background-color: #222;
}
.prod .styled-pagination {
  position: relative;
  display: block;
  width: 100%;
}
.prod .styled-pagination ul {
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 9px 0;
  background: rgb(255,255,255);
}
.prod .styled-pagination li {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: "Rubik", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #aaa;
  border-radius: 4px;
  background: #e7e7e7;
}
.prod .styled-pagination li :hover{
  background-color: #185C86;
  color: #fff;
  border-radius: 4px;
  border: 1px solid #4f9000;
}
.prod .styled-pagination li a{
  padding: 12px 12px;
  font-size: 20px;
  line-height: 46px;
  color: #444;
}
.prod .detail .options {
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  width: 100%;
  height: 49px;
}

.prod .detail .options .icon {
  position: relative;
  float: left;
  height: 48px;
  width: 50px;
  background-color: #ddd;
  text-align: center;
  font-size: 18px;
  color: #222222;
  line-height: 48px;
}
.prod .detail .options .tags {
  position: relative;
  float: left;
  padding: 8px 25px;
  margin:0px;
}
.prod .detail .options .tags li {
  position: relative;
  display: inline-block;
  line-height: 32px;
  font-size: 18px;
}
.prod .detail .options .tags li a{
  color:#444;
}
.prod .detail .options .tags li a:hover{
  color:#185C86;
}


 /* Styling for letter links */
#letter-links-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

#letter-links-container li{
    position: relative;
    display: inline-block;
    margin: 0;
    font-family: "Rubik", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    margin:10px 0px;
}

.letter-link {
    margin: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: #444;
    cursor: pointer;
    border: 1px solid #999;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    transition: font-weight 0.3s, transform 0.3s;
    background-color: #dedede;
}

.letter-link:hover {
    font-weight: bold;
    transform: scale(1.05);
    background-color: #185C86;
    color: #fff;
}


/* Styling for result container */
#result-container {
    margin: 0 auto;
}

/* Styling for result item */
.result-item {
    padding: 10px;
    cursor: pointer;
}

/* Styling for title and icon */
.result-title {
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  border: #bbb 1px solid;
  width: 100%;
  border-radius: 2px;
  transition: transform 0.3s;
}
.result-title:hover{
  background-color: #185C86;
  color: #fff;
}

.result-item .icon {
    font-size: 18px;
    padding-right: 5px;
}


/* ------------------------------------------
details.php css code starts
------------------------------------------ */

 /* Styling for details container */
 #details-container {
  margin-top: 20px;
}

/* Styling for details item */
.details-item {
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
  /* width: calc(33.33% - 20px); */
  /* margin: 10px; */
  padding: 18px 15px 15px 16px;
  background-color: #f9f9f9;
  border-radius: 10px;
  min-height: 310px;
  font-size: 14px;
}
.details-item span{
  font-weight: 600;
}
/* Styling for parent ID row */
.parent-id-row {
  color:#185C86;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Styling for parent API name */
.parent-api-name {
  margin: 0;
}

/* Styling for button */
.details-button{
  display: block;
  height: 32px;
  margin-top: 15px;
}
.details-button a {  
  padding: 5px 15px;
  background-color: #185C86;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: normal;
  float: right;
  font-size: 14px;
}
.details-button a:hover{
  color:#fff;
  background-color: #222;
}


/*-------------------------------------
Full Details page css code starts
---------------------------------------*/
/* Styling for full details container */
#full-details-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Styling for image column */
.image-column {
  padding: 10px;
  align-items:center;
  transition: background-color 0.3s ease-in-out;
}

/* Styling for image */
.api-image {
  width: 100%;
  padding-right: 20px;
  height: auto;
  border: 1px solid #ccc;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 10px;
}

.api-image:hover {
  box-shadow: 0 0 10px #185C86; /* Highlighting effect */
  border-color: #185C86; /* Optional: Change border color */
}


/* Styling for details column */
.details-column {
  padding: 10px;
}

/* Styling for parent ID */
.parent-id {
  font-size: 24px;
  font-weight: bold;
  background-color: #185C86;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Styling for details title */
.details-title {
  font-size: 20px;
  font-weight: bold;
  padding: 30px 0;
}

/* Styling for details text */
.details-text span{
  font-weight: bold;
  padding-bottom: 10px;
}
/*srilaskhmi*/
.card {
  height: 100%; /* Ensure all cards are of equal height */
  display: flex;
  flex-direction: column;
}

.card-img-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  text-align: center;
  padding: 20px;
  flex-grow: 1; /* Makes sure the text section expands evenly */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures equal spacing */
}

.card-title {
  color:#185C86;
  font-weight: bold;
}
.footer-links ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: #007bff; /* Change to blue on hover */
  text-decoration: none;
}

.footer-links ul li a:active {
  color: #ff5733; /* Change to orange when clicked */
}
a[href^="tel:"], 
a[href^="mailto:"], 
.credits a {
    color: lightblue;
    text-decoration: none; /* Optional: Removes underline */
    transition: color 0.3s ease; /* Smooth transition */
}

a[href^="tel:"]:hover, 
a[href^="mailto:"]:hover, 
.credits a:hover {
    color: white;
}

.fade-up {
  opacity: 0;
  transform: translateY(50px); /* Moves a bit more for a dramatic effect */
  animation: fadeUp 1.5s ease-out forwards;
  animation-delay: 0.9s; /* Slightly longer delay for smoothness */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensures logo remains responsive */
.footer-info .logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.card {
  border: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

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

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.5s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Card styling */
.card {
  border: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Card hover effect */
.card:hover {
  transform: translateY(-5px);
}

/* Card active (when clicked) effect */
.card:active {
  background-color: #e0f7fa; /* Light blue background */
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow for emphasis */
}
/* Srilakshmi Contact Page Styles */
.form-container {
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.form-title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: green;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #b30000;
  border-radius: 5px;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: #b30000;
  outline: none;
}

textarea.form-control {
  resize: vertical;
}

.btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}

.form-feedback {
  display: none;
}

.error-message, .sent-message {
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.error-message {
  color: white;
  background: #ed3c0d;
}

.sent-message {
  color: white;
  background: #d21818;
}

.loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  color: #ffcc00;
}

.loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid #d21846;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.custom-bg-card {
  background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #a18cd1, #fbc2eb);
  background-size: 300% 300%;
  animation: gradientAnimation 6s ease infinite;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(18, 7, 175, 0.2);
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.light-blue-bg {
  background-color: #e6f7ff;
  width: 100%;
  padding: 50px 0;
}

.custom-heading {
  color: #185C86;
  font-weight: bold;
}

.contact .info-box {
  color: #444;
  padding: 20px;
  background: #fff;
}

.contact .info-box i {
  font-size: 22px;
  color: white;
  border-radius: 50%;
  padding: 8px;
  border: 2px solid #185C86;
  background: #185C86;
  margin-top: 15px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #444;
  font-weight: 700;
  padding: 0 10px;
  display: inline;
}

.contact .info-box p {
  padding-left: 56px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  border: 2px solid hsl(184, 20%, 49%);
  padding: 23px;
  border-radius: 10px;
}

.contact .php-email-form input, 
.contact .php-email-form textarea {
  border-radius: 1px;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #185C86;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #659ccd;
}

.text-success {
  color: black !important;
}

