

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Roboto", sans-serif;
  color: #444444;
  background-color: #F7FCFC;
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: #279EDA;
  text-decoration: none;
}

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

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

p{
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #F7FCFC;
}

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

#preloader:after {
  content: "";
  position: fixed;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background-image: url('path-to-your-brain-icon.svg'); /* Replace with your actual SVG URL */
  background-size: cover;
  border-radius: 50%;
  z-index: 10000;
}

@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: #279EDA;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #F89C1F;
  color: #F7FCFC;
}

.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: #279EDA;
  color: #F7FCFC;
  height: 40px;
  font-size: 18px;
  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: #F7FCFC;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  top: 40px;
  box-shadow: 0px 2px 0 #F89C1F;
  opacity:1px;
}

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

#header.header-scrolled {
  top: 0;
}

#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: 40px; */
  width:80px;
}

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

.appointment-btn:hover {
  background: #F89C1F;
  color: #F7FCFC;
}

@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 10px;
  margin: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  color: #F89C1F;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #279EDA;
  border-radius: 4px;
  border-bottom: #279FDA solid 4px;
}

.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: #F7FCFC;
  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: 18px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #279EDA;
  border: #279EDA solid 1px;
  border-radius: 4px;
}

.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%;
  }
}

/**
* 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: #F7FCFC;
}

@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: 4px;
  background-color: #F7FCFC;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #F7FCFC;
  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: 18px;
}

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

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

  /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background-color: #000;
  background: url("assets/images/about/hero3.jpg") top center;
  background-size: cover;
  margin-bottom: -20px;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c4964;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1977cc;
}

#hero .btn-get-started:hover {
  background: #3291e6;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
}

@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: 18px;
}

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

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

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.objectives .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #F7FCFC;
  box-shadow: 0 0 2px 0 #F89C1F;
  transition: all 0.3s ease-in-out;
  border-radius: 8px ;
  z-index: 1;
  color: #444444;
  font-weight: 900;
}

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

.objectives .icon-box:hover::before {
  background: #279EDA;
  top: 0;
  border-radius: 0px;
}

.objectives .icon {
  margin-bottom: 15px;
  margin-right: 10px;
}

.objectives .icon i {
  font-size: 48px;
  line-height: 1;
  color: #279EDA;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;

}

.objectives .objective-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #279EDA;
}

.objectives .title a {
  color: #444444;
}

.objectives .objective-description  {
  color: #444444;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}

.objectives .icon-box:hover .objective-title{
  color: #F7FCFC;
}

.objectives .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #F7FCFC;
  box-shadow: 0 0 2px 0 #F89C1F;
  transition: all 0.3s ease-in-out;
  border-radius: 8px ;
  z-index: 1;
  color: #444444;
  font-weight: 900;
}

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

.objectives .icon-box:hover::before {
  background: #279EDA;
  top: 0;
  border-radius: 0px;
}

.objectives .icon {
  margin-bottom: 15px;
}

.objectives .icon i {
  font-size: 48px;
  line-height: 1;
  color: #279EDA;
  transition: all 0.3s ease-in-out;
}

.objectives .objective-title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #279EDA;
}

.objectives .title a {
  color: #444444;
}

/* .objectives .objective-description  {
  color: #444444;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
} */

.objectives .icon-box:hover .objective-title{
  color: #F7FCFC;
}

.objectives .icon-box:hover .icon i {
  color: #F7FCFC;
}
.objectives .icon-box:hover .icon i {
  color: #F7FCFC;
}

/* Mobile Styles for Objectives Section */
@media (max-width: 767px) {
  .objectives .icon-box {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 2px 0 #F89C1F;
  }

  .objectives .icon-box::before {
    bottom: 100%;
    top: 0;
    border-radius: 0;
  }

  .objectives .icon i {
    font-size: 36px;
  }

  .objectives .objective-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  /* .objectives .objective-description {
    font-size: 17px;
    line-height: 20px;
    font-style: normal;
  } */

  .objectives .icon-box:hover{
    background: #279EDA;
  }

  .objectives .icon-box:hover .objective-title,
  .objectives .icon-box:hover .icon i {
    color: #F7FCFC;
    /* font-size: 18px; */


  }
}
/*  */

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #279EDA;
  color: #F7FCFC;
  align-items: center;
  justify-content: center;
  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: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #F7FCFC;
  color: #F7FCFC;
}

.cta .cta-btn:hover {
  background: #F7FCFC;
  color: #279EDA;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
  font-size: 22px;
  color: #279EDA;
  margin-bottom: 15px;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #279EDA;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #279EDA;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #279EDA;
  border-color: #279EDA;
}

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

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #279EDA;
}

.about .iconbox .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 18px;
}

.about .video-box {
  background: url("../images/about/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#279EDA 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(25, 119, 204, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #279EDA;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .about .icon-boxes h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about .icon-boxes h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .about .icon-box {
    margin-top: 20px;
  }

  .about .icon-box .icon {
    width: 50px;
    height: 50px;
    border: 2px solid #8dc2f1;
  }

  .about .icon-box .icon i {
    font-size: 24px;
  }

  .about .icon-box .title {
    margin-left: 60px;
    font-size: 20px;
  }

  .about .icon-box .description {
    margin-left: 60px;
    font-size: 18px;
  }

  .about .video-box {
    min-height: 300px;
  }

  .about .play-btn {
    width: 60px;
    height: 60px;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
  }

  .about .play-btn::before {
    width: 80px;
    height: 80px;
    top: -10%;
    left: -10%;
  }

  .about .play-btn::after {
    border-left: 10px solid #fff;
  }
}

/*--------------------------------------------------------------
#================= target-people================================
--------------------------------------------------------------*/
.target-people {
  padding-bottom: 30px;
}

.target-people .target-box {
  box-shadow: 0 0 2px 0px #F89C1F;
  padding: 30px;
  width: 100%;
  border-radius: 10px;
  border-style: ridge;
  margin-bottom: 5px;
  transition: box-shadow 0.3s ease-in-out; /* Added transition for box-shadow */
}

.target-people .target-box img {
  border-radius: 100px;
  height: 200px;
  border-style: dotted;
  padding-left: 2px;
  transition: transform 0.3s ease-in-out; /* Added transition for image scaling */
}

.target-people .target-box i {
  display: block;
  font-size: 30px;
  color: #279EDA;
  float: left;
}

.target-people .target-box h2 {
  font-family: "Roboto", sans-serif;
  text-align: center;
}

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

.target-people .target-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.target-people .target-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease-in-out; /* Added transition for text color */
}

.target-people .target-box .box-img:hover {
  color: #279EDA;
  background-color: #18d26e;
  transition: color 0.3s ease-in-out; /* Added transition for text color */
}

/* Mobile Styles */
@media only screen and (max-width: 600px) {
  .target-people .target-box {
    padding: 15px;
    text-align: center;
  }

  .target-people .target-box img {
    height: 190px;
    border-radius: 100px;
    margin: 0 auto; /* Center the image horizontally */
    display: block; /* Remove any default inline spacing */
  }

  .target-people .target-box h2 {
    font-size: 24px;
  }

  .target-people .target-box span {
    font-size: 32px;
    margin-left: 30px;
  }

  .target-people .target-box p {
    font-size: 16px;
  }

  .target-people .target-box a {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# ================services=============
--------------------------------------------------------------*/
.services .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.services .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.services .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.services .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.services .card-title a {
  color: #37423b;
  transition: 0.3s;
}

.services .card-text {
  color: #5e5e5e;
}

.services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.services .read-more a:hover {
  color:  #279eda;
}

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

.services .card:hover .card-body {
  border-color:  #279eda;
}

.services .card:hover .card-body .card-title a {
  color:  #279eda;
}

/* Mobile Styles for Services Section */
@media (max-width: 767px) {
  .services .card {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .services .card-img {
    width: calc(100% + 30px);
    margin-left: -15px;
  }

  .services .card-body {
    padding: 15px;
    margin-top: -30px;
  }

  .services .card-title {
    margin-bottom: 10px;
  }

  .services .read-more a {
    font-size: 12px;
  }

  .services .card:hover img {
    transform: scale(1.05);
  }

  .services .card:hover .card-body {
    border-color: #279eda;
  }

  .services .card:hover .card-body .card-title a {
    color: #279eda;
  }
}

/* ===========services end============== */

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

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

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

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

/* Mobile Styles for Features Section */
@media (max-width: 767px) {
  .features .icon-box h4 {
    font-size: 16px;
    margin: 10px 0;
  }

  .features .icon-box i {
    font-size: 36px;
    margin-right: 20px;
  }

  .features .icon-box p {
    font-size: 16px;
    margin-left: 0;
  }

  .features .image {
    min-height: 250px;
  }
}

/* ================features end================== */



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

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

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

.appointment .php-email-form .error-message {
  display: none;
  color: #F7FCFC;
  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: #F7FCFC;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #F7FCFC;
  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: 4px;
  box-shadow: none;
  font-size: 18px;
  padding: 10px !important;
}

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

.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: #279EDA;
  border: 0;
  padding: 10px 35px;
  color: #F7FCFC;
  transition: 0.4s;
  border-radius: 4px;
}

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

/*--------------------------------------------------------------
# major-areas
--------------------------------------------------------------*/
/* 




/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  max-height: 500=0px;
  width: 200px;
  box-shadow: 0px 2px 12px rgba(44, 73, 100, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 70px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
  
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #badaf7;
  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: 15px auto 15px auto;
}

.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 #1977cc;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1977cc;
}

/* Mobile Styles for Testimonials Section */
@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    max-height: none; /* Resetting max-height for mobile */
    width: 250px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
    margin-bottom: 15px; /* Adjusting spacing for mobile */
  }

  .testimonials .swiper-pagination {
    margin-top: 15px; /* Adjusting spacing for mobile */
  }
}




/*--------------------------------------------------------------
#=============== team========================
--------------------------------------------------------------*/


.team .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);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
  background: linear-gradient(to left, #2980b9, #F89C1F);
}

.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: #F7FCFC;
  display: flex;
  align-items: center;
  justify-content: center;
}


.team .member .member-info {
  padding-top: 15px;
  padding-bottom: 18px;
}
/* Responsive styles for smaller screens */

@media (max-width: 767px) {
  .team .member {
    margin-bottom: 15px;
  }

  .team .member .member-img {
    height: 300px;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .team .member .social {
    height: 30px;
  }

  .team .member .social a i {
    font-size: 18px;
  }

  .team .member .member-info {
    padding-top: 15px;
    padding-bottom: 18px;
  }

  .team .member .member-info h4 {
    font-size: 18px;
  }

  .team .member .member-info span {
    font-size: 16px;
  }

  .team .member .member-info p {
    font-size: 16px;
    line-height: 24px;
  }
}

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

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #F7FCFC;
  opacity: 1;
  border: 1px solid #279EDA;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #279EDA;
}

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

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

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


/* # Gallery2 */
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/* ==========Major areas============= */
.major-areas .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.major-areas .section-title h2 {
  font-size: 32px;
  color: #333;
}

.major-areas .section-title p {
  font-size: 18px;
  color: #666;
}

/* Cards */
.major-areas .card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.major-areas .card:hover {
  transform: scale(1.05);
}

.major-areas .card img {
  width: 100%;
  height: 260px;
  border-bottom: 1px solid #ddd;
}

.major-areas .card-body {
  padding: 20px;
}

.major-areas .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.major-areas .card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #666;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .major-areas .section-title {
    margin-bottom: 20px;
  }

  .major-areas .section-title h2 {
    font-size: 28px;
  }

  .major-areas .section-title p {
    font-size: 18px;
  }

  .major-areas .card {
    margin-bottom: 20px;
  }

  .major-areas .card img {
    border-bottom: none;
  }

  .major-areas .card-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .major-areas .card-text {
    font-size: 18px;
  }
}
/* ======end major areas=========== */

/*--------------------------------------------------------------
# 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: #279EDA;
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #32969a;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 18px;
  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: #279EDA;
}

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

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--color-primary);
  height: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color: #279EDA;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 18px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item h2 {
 color: white;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.contact .info-item:hover i {
  background: #fff;
  color: var(--color-primary);
  color: #279EDA;
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

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

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  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: #279EDA;
  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 #279EDA;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

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

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

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

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: solid #279EDA 2px;
  padding: 14px 45px;
  color: #279EDA;
  transition: 0.4s;
  border-radius: 10px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #279EDA;
  color: #F7FCFC;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #279EDA;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 18px;
}

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

#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: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 22px;
  display: inline-block;
  background: #279EDA;
  color: #F7FCFC;
  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: #F89C1F;
  text-decoration: none;
}

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

#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: #279EDA;
  font-size: 22px;
  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: #444444;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #279EDA;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #F7FCFC;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  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: 18px;
  padding: 0 20px;
  background: #279EDA;
  color: #F7FCFC;
  transition: 0.3s;
  border-radius: 4px;
}

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

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

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

/* Mobile Styles */
@media only screen and (max-width: 600px) {
  #footer .footer-top {
    text-align: left;
  }

  #footer .footer-top .footer-info,
  #footer .footer-top h4,
  #footer .footer-top .footer-links,
  #footer .footer-top .footer-newsletter {
    text-align: left; /* Align the text content to the left within the centered container */
    margin: 0 auto;
    font-size: 17px; /* Center the container horizontally */
    max-width: 80%; /* Adjust the max-width as needed */
  }
  #footer .footer-top h4{
    font-size: 20px;
    padding: 5px;
  }


  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: block; /* Display list items as blocks for vertical alignment */
    text-align: left; /* Center the text content within list items */
  }

  #footer .footer-top .footer-links ul i {
    display: inline; /* Display icons as blocks for vertical alignment */
    margin: 0 auto; /* Center the icons horizontally */
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
  }
}
