

 *{
  padding: 0;
  margin: 0;
 }
/* Global Colors */
/* #d4d4d4
#2c4459
#5a5a5a */
  /* Global Colors */
  :root {
    --background-color: #ffffff;
    --default-color: #5a5a5a;
    --heading-color: #5a5a5a;
    --accent-color: #2c4459;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  a {
    color: var(--default-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
   
    text-decoration: none;
  }
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  #header {
    height: 80px;
    transition: all 0.5s;
    z-index: 9999;
    background: transparent;
  }
  
  #header.scrolled-header {
    background: #ffffff;
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  #header.scrolled-header .navmenu a {
    color: #000;
  }
  
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
    background-color: #ffffff;
    border-radius: .5rem;
    box-shadow: 5px 5px 10px #e0e0e072;
  }
  
  #header .logo h1 a,
  #header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header.scrolled-header .logo h1 a,
  #header.scrolled-header .logo h1 a:hover {
    color: #000;
  }
  

  #header-other {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(255, 255, 255, 0.478);
  }
  
  #header-other.scrolled-header-other {
    background: #ffffff;
    height: 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  #header-other.scrolled-header-other .navmenu a {
    color: #000;
  }
  
  #header-other .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
  }
  
  #header-other .logo h1 a,
  #header-other .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  #header-other.scrolled-header-other .logo h1 a,
  #header-other.scrolled-header-other .logo h1 a:hover {
    color: #000;
  }


  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
    #header .navmenu {
      padding: 0;
    }
  
    #header .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    #header .navmenu li {
      position: relative;
    }
  
    #header .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
    }
  
    #header .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    #header .navmenu a,
    #header .navmenu a:focus {
      color: #ffffff;
      font-size: 14px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
      text-transform: uppercase;
      
    }
  
    #header .navmenu a i,
    #header .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    #header .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--accent-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;

    }
  
    #header .navmenu a:hover:before,
    #header .navmenu li:hover>a:before,
    #header .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    /* #header .navmenu li:hover>a, */
    #header .navmenu .active,
    #header .navmenu .active:focus {
      color: #77AAFF;
    }
  
    #header .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: #fff;
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
    }
  
    #header .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    #header .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 500;
      color: #000;
    }
  
    #header .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    #header .navmenu .dropdown ul a:hover,
    #header .navmenu .dropdown ul .active:hover,
    #header .navmenu .dropdown ul li:hover>a {
      color: #68A4C4;
    }
  
    #header .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    #header .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    #header .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }

  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
    #header-other .navmenu {
      padding: 0;
    }
  
    #header-other .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    #header-other .navmenu li {
      position: relative;
    }
  
    #header-other .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
    }
  
    #header-other .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    #header-other .navmenu a,
    #header-other .navmenu a:focus {
      color: #000000;
      font-size: 14px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
      text-transform: uppercase;
      
    }
  
    #header-other .navmenu a i,
    #header-other .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    #header-other .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--accent-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;

    }
  
    #header-other .navmenu a:hover:before,
    #header-other .navmenu li:hover>a:before,
    #header-other .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    /* #header-other .navmenu li:hover>a, */
    #header-other .navmenu .active,
    #header-other .navmenu .active:focus {
      color: #77AAFF;
    }
  
    #header-other .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: #fff;
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
    }
  
    #header-other .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    #header-other .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      font-weight: 500;
      color: #000;
    }
  
    #header-other .navmenu .dropdown ul a i {
      font-size: 12px;
    }
  
    #header-other .navmenu .dropdown ul a:hover,
    #header-other .navmenu .dropdown ul .active:hover,
    #header-other .navmenu .dropdown ul li:hover>a {
      color: #5a5a5a;
    }
  
    #header-other .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    #header-other .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    #header-other .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--heading-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: rgba(21, 21, 21, 0.378); /* Semi-transparent background */
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      backdrop-filter: blur(10px); /* Add blur effect */
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: #fff;
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: #ffffff;
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: #77AAFF;
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgb(33, 37, 41);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #060606;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
  }
  
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 10px;
    position: relative;
  }
  
  .section-title h2 {
    font-size: 26px;
    font-weight: 700;
    position: relative;
  }
  .section-title p {
    font-size: 16px;

  }
@media (max-width : 576px) {
  .section-title h2 {
    font-size: 16px;
    font-weight: 700;
    position: relative;
  }
  .section-title p {
    font-size: 12px;

  }
 
}
  .section-title h2:before,
  .section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  }
  
  .section-title h2:before {
    margin: 0 15px 10px 0;
  }
  
  .section-title h2:after {
    margin: 0 0 10px 15px;
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  overflow: hidden;
  position: relative;
}
#hero .carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#hero #typed-content {
  width: auto;
  display: inline-block;
  text-align: left;
  background-color: #fff;
  color: #2C4459;
  font-family: 'Montserrat', sans-serif;
  padding: 0 .5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

#hero h1 {
  font-size: 4.1rem;
  font-weight: bold;
  margin-bottom: 20px; /* Adjust spacing as needed */
  color: #fff;
  font-family: 'Oswald', sans-serif;
}

#hero h3 {
  font-size: 38px;
  margin-bottom: 10px; /* Adjust spacing as needed */
  color: #fff;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}
#hero .carousel-item .typer{
  width: 60rem;
  display: inline-block;
  text-align: center;
  /* margin-left: 5%; */
  padding: 2rem 0;
}
#hero .carousel-item .typer .Welcome{
font-size: 3rem;
color: #fff;
font-weight: 500;
}

  @media (max-width : 576px) {


      #hero1 .downicon{
        margin-left: 5%;
        margin-top: 6rem;
     }
     #hero .carousel-item .typer .Welcome{
      font-size: 2rem;
      color: #fff;
      font-weight: 600;
      }
      #hero .carousel-item .typer{
        width: 20rem;
  
        display: block;
        text-align: center;
        margin-left: 1px;
        
      }
      #hero #typed-content {
        padding: 0 .5rem;
        font-size: 1.4rem;
        font-weight: 600;
        width: 18rem;
        height: 2rem;
        text-align: center;
      }

  }
  @media (max-width :350px) {
    #hero .carousel-item .typer{
      width: 20rem;
    }
  }

@media (max-width :576px) {
  #hero h1 {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  #hero h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 400;
  }
}
#hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url("img/hero-carousel/header3.webp") center top no-repeat;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

#hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: #5a5a5a;
  /* opacity: 0.3; */
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

#hero .btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero::after {
    width: 180%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero::before {
    top: 0;
    width: 180%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

@media (max-width: 575px) {
  #hero h2 {
    font-size: 30px;
  }

  #hero::after {
    left: 40%;
    top: 0;
    width: 200%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero::before {
    left: 50%;
    top: 0;
    width: 200%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

/*--------------------------------------------------------------
about-demo-Section
--------------------------------------------------------------*/
#about-demo .about-col{
   border-right: 2px solid #a5a5a5;
   box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); 
   padding: 1rem 1rem;
}
@media (max-width :576px) {
  #about-demo .about-col{
    border-right:none;
 }
 #about-demo .container .about-col p{
  /* color: #333333; */
   font-weight: 500;
   font-size: 1rem;
}
 #about-demo .container .about-col4 p{
  /* color: #333333; */
   font-weight: 500;
   font-size: 1rem;
}
}

#about-demo .about-col h3{
  color: #2C4459;
  font-weight: 700;
  font-family: 'oswald', sans-serif;
}
#about-demo .about-col p{

   font-weight: 500;
   font-size: 1.1rem;
}
#about-demo .about-col i{
font-size: 1.6rem;
font-weight: bold;
}
#about-demo .about-col4 h3{
  font-weight: 700;
  font-family: 'oswald', sans-serif;
}
#about-demo .about-col4 p{
   font-weight: 500;
   font-size: 1.1rem;
}
#about-demo .about-col4 i{
font-size: 1.6rem;
font-weight: bold;
}
#about-demo .about-col .about-con{
   margin-top: 2rem;
   
}
#about-demo .about-col4{
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); 
  padding: 1rem 1rem;
}
/*--------------------------------------------------------------
about-us-section Section
--------------------------------------------------------------*/
#about-us{
   background-color: #ffffff1e;
}
#about-us .row>* {
  /* flex-shrink: 0;
  width: 100%; */
  padding-right: calc(var(--bs-gutter-x)* .0);
  padding-left: calc(var(--bs-gutter-x)* .0);
}
#about-us h3{
  font-family: 'oswald',sans-serif;
  padding: 2rem 0;
  color: #2C4459;
  font-size: 2.4rem;
}

@media screen and (max-width: 576px) {
  #about-us h3{
    padding: .5rem 0;
    font-size: 1.5rem;
  }
  #about-us .about-us-con .about-us-Who{
    padding-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #2C4459;
 }
 #about-us .about-us-con .about-us-graph{
  background-color: #77AAFF;
  font-family: 'Poppins',sans-serif;
  padding: 1.7rem .5rem;
  font-size: .8rem;
  text-align: justify;
}
}
#about-us .about-us-con .about-us-Who{
  padding-bottom: 1.6rem;
  font-size: 2.9rem;
  font-weight: 700;
  color: #2C4459;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  text-decoration: underline;
}
#about-us .about-us-con{
   /* align-content: center; */
   margin-right: -.4rem;
   color: #fff;
   text-align: center;
}
#about-us .about-us-con .Who{
   padding-bottom: 3rem;
   font-size: 2.9rem;
   font-weight: 700;
   color: #2C4459;
   font-family: 'Poppins', sans-serif;
}

#about-us .about-us-con p{
   background-color: #2c4459;
   font-family: 'Poppins',sans-serif;
   padding: 1.7rem .5rem;
   font-size: 1.3rem;
   text-align: center;
}
#about-us .about-us-con-two{
  align-content: center;
}
#about-us .about-us-con-three h4{
   color: #77AAFF;
}
#about-us .about-us-con-three p{
   color: #2C4459;
}
#about-us .about-us-con-three .con-three-icon{
  display: flex;
}
#about-us .about-us-con-three .con-three-icon i{
  padding-right: .6rem;
  padding-top: .2rem;
  color: #2C4459;
}
#about-us .about-us-con-two img{
   width: 100%;
}


/*--------------------------------------------------------------
servies-Section
--------------------------------------------------------------*/
#services-section{
  background-color: #d4d4d467;
  padding-bottom: 1rem;
}
#services-section .content h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 10px; /* Adjust this value as needed */
  font-family: 'oswald', sans-serif;
}

#services-section .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 150px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

 @media screen and (max-width :576px) {
  #services-section .content h3:after {
    width: 150px;
   }
 }
 #services-section .content h3:hover:after {
  background: #2C4459; 
  transition: all 0.9s ease;
} 
#services-section .services-col{
   padding: 2rem;
   box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Bottom and right shadow */
   width: 32%;
   margin: .5rem;
   background-color: #fff;
}
#services-section .services-col .services-heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}
#services-section .services-col-three .services-heading{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#services-section .services-col:hover{
   padding: 2rem;
   box-shadow: 5px 5px 15px #5a5a5a; /* Bottom and right shadow */
}
#services-section .services-col-three{
   padding: 2rem;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Bottom and right shadow */
   width: 32%;
   margin: .5rem;
   background-color: #fff;
}
#services-section .services-col-three:hover{
   padding: 2rem;
    box-shadow: 5px 5px 15px #5a5a5a; /* Bottom and right shadow */
}
@media (max-width : 576px) {
  #services-section .services-col{
     box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Bottom and right shadow */
    width: 100%;
    margin: 0rem;
    margin-top: .5rem;
 }
 #services-section .services-col-three{
   box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Bottom and right shadow */
  width: 100%;
  margin: 0rem;
    margin-top: .5rem;
}

}
@media (min-width : 576px) and (max-width : 900px){
  #services-section .services-col{
    width: 48%;
    margin: 0rem;
    margin-top: .5rem;
 }

}
#services-section .services-col img{
    width: 4rem;
    padding-bottom: 1rem;
}
#services-section .services-col-three img{
    width: 2.5rem;
    padding-bottom: 1rem;
}

@media screen and (max-width: 576px){
  #services-section .services-col .services-heading h4{
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'oswald', sans-serif;
    color: #2C4459;
  }
  #services-section .services-col .services-heading img{
    width: 3rem;
    padding-bottom: 1rem;
}
}
#services-section .services-col-three h4{
      font-size: 1.8rem;
      font-weight: 600;
      font-family: 'oswald', sans-serif;
      color: #2C4459;
}
#services-section .services-col-three h4:hover{
  color: #5a5a5a;
  transition: all .5s ease;
}
#services-section .services-col h4{
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'oswald', sans-serif;
  color: #2C4459;
}
#services-section .services-col h4:hover{
  color: #5a5a5a;
  transition: all .5s ease;
}
@media (max-width :576px) {
 
}
#services-section .services-col p{
  padding-bottom: 1rem;
  color: #2C4459;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
#services-section .services-col-three p{
    padding-bottom: 1rem;
    color: #2C4459;
    font-weight: 500;
}
#services-section .services-col a{
  padding-bottom: 1rem;
  color: #2C4459;
  font-weight: 700;
  font-family: 'Montserrat';
}
#services-section .services-col a:hover{
  color: #5a5a5a;
  font-weight: 700;
}
#services-section .services-col-three a{
    padding-bottom: 1rem;
    color: #2C4459;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}
#services-section .services-col-three a:hover{
    color: #5a5a5a;
    font-weight: 700;
}


/*--------------------------------------------------------------
blogs-Section
--------------------------------------------------------------*/
#blogs-section .content h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-top: 2rem;
  font-family: 'oswald', sans-serif;
  padding-bottom: 10px; /* Adjust this value as needed */
 }
 
 #blogs-section .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
 }
 @media screen and (max-width :576px) {
  #blogs-section .content h3:after {
    width: 65px;
   }
 }
 #blogs-section .content h3:hover:after {
  background: #2C4459; 
  transition: all 0.9s ease;
} 
/*--------------------------------------------------------------
contact-us-home-Section
--------------------------------------------------------------*/
#contact-home-page .contact-con-one{
  background-color: #d4d4d467;
  padding: 3rem 2rem;
  padding-bottom: 4rem;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.121); /* Bottom and right shadow */
}
#contact-home-page .contact-con-two{
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.121); /* Bottom and right shadow */
}

#contact-home-page .contact-con-two{
  padding-right: calc(var(--bs-gutter-x)* 0);
  padding-left: calc(var(--bs-gutter-x)* 0);
}
#contact-home-page .contact-con-one h2{
 font-size: 2.1rem;
 font-family: 'poppins',sans-serif;
 font-weight: 700;
 color: #2C4459;
}
#contact-home-page .contact-con-one p{
 font-size: 1rem;
 font-family: 'poppins',sans-serif;
 font-weight: 500;
 color: #2C4459;
 padding-top: 2rem;
 padding-bottom: 2rem;
}
#contact-home-page .contact-con-one a{
 background-color: #2C4459;
 color: #fff;
 padding: .5rem 1rem;
 font-size: 1.4rem;
 width: 100%;
 /* margin-left: 2.4rem; */

}
@media screen and (max-width :576px) {
  #contact-home-page .contact-con-one a{
    font-size: 1rem;
   }
   #contact-home-page .contact-con-one h2{
    font-size: 1.5rem;
    font-weight: 700;

   }
}
#contact-home-page .contact-con-one a:hover{
 background-color: #5a5a5a;
 color: #fff;
}

/* contact-form */
.form-container {
  position: relative;
  height: 300px; /* Adjust height as needed */
  display: flex;
  align-items: flex-end;

}

#contact-home-page .php-email-form {
  background: #d4d4d41c;
  padding: 30px;
  width: 100%;
}
#contact-home-page .php-email-form .Request{
   color: #2C4459;
   font-weight: 700;
   padding-bottom: 1rem;
   font-family: 'poppins', sans-serif;
}

#contact-home-page .php-email-form .form-group {
  padding-bottom: 8px;
}

#contact-home-page .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #77AAFF;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact-home-page .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #2C4459;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact-home-page .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact-home-page .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #635551;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

#contact-home-page .php-email-form input,
#contact-home-page .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact-home-page .php-email-form input[type=text],
#contact-home-page .php-email-form input[type=email],
#contact-home-page .php-email-form input[type=number],
#contact-home-page .php-email-form textarea {
  padding: 12px 15px;
}

#contact-home-page .php-email-form input[type=text]:focus,
#contact-home-page .php-email-form input[type=email]:focus,
#contact-home-page .php-email-form input[type=number],
#contact-home-page .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

#contact-home-page .php-email-form textarea {
  padding: 10px 12px;
}

#contact-home-page .php-email-form button[type=submit] {
  background: #2C4459;
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
}

#contact-home-page .php-email-form button[type=submit]:hover {
  background: #5a5a5a;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


#contact-home-page .form-control-ser {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px;
  padding-left: 1rem;
  font-size: 15px;
  border-radius: 0px;
  border: 1px solid #00000044;
  cursor: pointer;
}
 
#contact-home-page .form-control-ser .all-options{
  padding: 3rem 0;
}

#contact-home-page .form-group-ser {
  position: relative;
}

#contact-home-page .form-group-ser::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#hero-no-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  text-align: center;
}

#hero-no-slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url("../img/hero-bg.jpg") center top no-repeat;
}

#hero-no-slider h2 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 700;
}

#hero-no-slider p {
  color: #fff;
}

#hero-no-slider .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

#hero-no-slider .btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 575px) {
  #hero-no-slider h2 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
   
    background-color: #ffffff;
    color: #2C4459;
    font-size: 14px;
    padding-bottom: 30px;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.205); /* Bottom and right shadow */
    font-family: 'poppins', sans-serif;
  }
  
  .footer .footer-top {
    padding-top: 50px;
  }
  
  #footer .footerlogo {
    margin-bottom: 25px;
    width: 10rem;
    background: linear-gradient(-145deg, #ffffffe6, #d4d4d4d4);
    box-shadow: 5px 5px 10px #d1d9e6, -5px -10px 10px #ffffff;
    padding: 1rem;
    border-radius: 1rem;
  }

 .footer .bi{
  color: #000;
  }
 .footer .bi:hover{
  color: #5a5a5a;
  transition: all 0.8s ease;
  }
 .footer .footer-right{
     text-align: right;
  }
  
 #footer .social-icons{
     float: right;
  }

  @media screen and (max-width :576px) {
    #footer .social-icons{
      float: left;
   }
   .footer .footer-right{
    text-align: left;
 }
  }
 #footer .footer-about .footer-contact h3{
     font-size: 1.5rem;
     color: #000;
     font-family: 'poppins', sans-serif;
     font-weight: 600;
  }
  
 
  .footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
  }
  
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    border: 1px solid color-mix(in srgb, #000, transparent 50%);
    font-size: 16px;
    color: #000;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .footer .social-links a:hover {
    color: #5a5a5a;
    border-color: #5a5a5a;
  }
  
  .footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    color: #000;
  }
  
  .footer .footer-links {
    margin-bottom: 10px;
  }
  
  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
    color: #000;
  }
 
  
  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    color: #2C4459;
    display: inline-block;
    line-height: 1;
    font-weight: 500;
  }
  
  .footer .footer-links ul a:hover {
    color: #5a5a5a;
    font-weight: 800;
  }
  
  .footer .footer-contact p {
    margin-bottom: 5px;
    /* font-weight: 900; */
  }
  
  .footer .copyright {
    padding-top: 25px;
 
    border-top: 2px solid color-mix(in srgb, #000000, transparent 90%);
  }
  
  .footer .copyright p {
    margin-bottom: 0;
  }
  
  .footer .credits {
    font-size: 13px;
  }
  .footer .credits span{
    color: #72818e;
  }
  .footer .credits a{
    font-size: 13px;
    color: #77AAFF;
  }
 
 
  .footer .email-footer a{
    font-size: 13px;
    color: #2C4459;
   line-height: 2px;
  }
  .footer .email-footer{
   line-height: 12px;
  }
 @media screen and (max-width :576px) {
  .footer .email-footer a{
    font-size: 13px;
    color: #2C4459;
   line-height: 2px;
  }
  .footer .email-footer{
   line-height: 12px;
  }
 }
  
/*--------------------------------------------------------------
# Get Started Section about us
--------------------------------------------------------------*/
.get-started .bulbele img{
  width: 100%;
  float: right;
}
 @media (max-width :575px) {
    #get-started .bulbele img{
        /* width: 30rem; */
        float: none;
        
     }
     .get-started .content h3 {
        margin-top: 1rem;
       
      }
     #get-started .content h3 {
        font-size: 30px;

      }

     #get-started .content p {
        font-size: 15px;
      }
 }
 @media (min-width :576px) {
     .get-started .content h3 {
        margin-top: 1rem;
     
      }
 }
 .get-started .content h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 130px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

/* Change the color of the bottom line on hover */
.get-started .content h3:hover:after {
  background: #2C4459;
}
 
 .get-started .content p {
   font-size: 24px;
   text-align: justify;
 }
 
 @media (max-width: 575px) {
   .get-started .bulbele img{
     width: 100%;
     
  }
  
 }

  
/*--------------------------------------------------------------
# Section our mission
--------------------------------------------------------------*/

.ourmission .bulbele img{
    width: 40rem;
    top: 0;
    height: 30rem;
 }
 @media (max-width :575px) {
    .ourmission .bulbele img{
        height: 20rem;
     }
     .ourmission .content h3 {
        margin-top: 1rem;
      }
      #ourmission .content h3 {
        font-size: 30px;
        margin-bottom: 1rem;
      }

      
 }
 @media (min-width :576px) {
    .ourmission .bulbele img{
        height: 30rem;
        margin-left: 2rem;
     }

 }
 .ourmission .content h3 {
   font-size: 30px;
   font-weight: 600;
   position: relative;
 }
 
 .ourmission .content h3:after {
   content: "";
   position: absolute;
   display: block;
   width: 170px;
   height: 4px;
   background: var(--accent-color);
   left: 0;
   bottom: 0;
  
 }
 .ourmission .content h3:hover:after {
  background: #2C4459; 
}
 #ourmission p {
   font-size: 24px;
   text-align: justify;
 }
 
 #ourmission .ourmission {
  align-content: space-evenly;
 }
 
 
 
 @media (max-width: 575px) {
   .ourmission .bulbele img{
     width: 100%;
     
  }
  #ourmission .carousel-item p {
    font-size: 18px;
  }
  #ourmission p {
    font-size: 15px;
    text-align: justify;
  }
  
 }
 
  
/*--------------------------------------------------------------
# Section our vision
--------------------------------------------------------------*/

.ourvision .bulbele2 img{
    width: 40rem;
    top: 0;
    height: 30rem;
 }
 @media (max-width :575px) {
    .ourvision .bulbele2 img{
        height: 20rem;
     }
     .ourvision .content h3 {
        margin-top: 1rem;
      }
      #ourvision .content h3 {
        font-size: 30px;
        margin-bottom: 1rem;
      }
      #ourvision .content p {
        font-size: 15px;
      }
 }
 @media (min-width :576px) {
    .ourvision .bulbele2 img{
        height: 30rem;
        margin-left: 2rem;
     }

 }
 .ourvision .content h3 {
   font-size: 30px;
   font-weight: 600;
   position: relative;
 }
 
 .ourvision .content h3:after {
   content: "";
   position: absolute;
   display: block;
   width: 150px;
   height: 4px;
   background: var(--accent-color);
   left: 0;
   bottom: 0;
  
 }
 .ourvision .content h3:hover:after {
  background: #2C4459; 
}
 #ourvision p {
   font-size: 24px;
   text-align: justify;
 }
 

 
 
 @media (max-width: 575px) {
   .ourvision .bulbele2 img{
     width: 100%;
     
  }
  #ourvision .carousel-item p {
    font-size: 18px;
  }
  
 }
 
   

 
 /*carousel-indicators------------ */
.carousel-indicators{
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    margin-top: 14rem;
}
@media (max-width: 575px) {
  .carousel-indicators{

    margin-top: 15rem;
}
 
}

  
/* services -----------------------------------------------*/
#services{
  box-shadow: 1px 4px 28px rgba(0, 0, 0, 0.123);
  height: 21rem;
}
#services .scale{
  width: 3rem;
  margin-right: 2rem;
  
}
#services .scale3{
  width: 2rem;
  margin-right: 2.5rem;
}
.servicecol .servicebox{
  background-color: #2c445916;
  padding: 1rem 1rem ;
  border-radius: .8rem;
  width: 100%;
  transition: transform 0.3s ease; /* Smooth transition */
}
 
 
.servicecol .servicebox:hover{
  transform: translateY(-.5rem); /* Move up by 1rem */
  cursor: pointer;
  border-bottom: 5px solid #2C4459;
}
.servicecol6 .servicebox{
  background-color: #2c44591f;
  padding: 1rem 1rem;
  border-radius: .8rem;
  width: 100%;
  transition: transform 0.3s ease;  
}
.servicecol6 .servicebox:hover{
  transform: translateY(-.5rem);  
  cursor: pointer;
  border-bottom: 5px solid #2C4459;
}
#services a{
  font-size: 24px;
  font-weight: 500;
  /* margin-left: 1rem; */
}
 
@media (max-width :1024px) {
  #services{
    height: 54rem;
  }
}
@media (max-width :575px) {
  #services{
    height: 48rem;
  }
  .servicecol .servicebox{
    padding: 1rem 1rem;
  }
  .servicecol6 .servicebox{
    padding: 1rem 1rem;
  }
  #services .row .content h3 {
      margin-top: 1rem;
      font-size: 30px;
    }
    #services .servicecol a{
     font-size: 1rem;
     font-weight: 500;
    }
    #services a:hover{
      /* font-size: .9rem; */
      transition: all 0.4s; 
    }
 
    #services .servicecol6 a{
     font-size: 1rem;
     font-weight: 500;
   
    }
    #services .scale{
      width: 2.8rem;
      /* margin-right: 0.5rem; */
      margin-right: 1.7rem;
    }
    #services .scale3{
      width: 2rem;
      /* margin-right: 0.5rem; */
      margin-right: 2.5rem;
    }
    #services .servicecol{
      margin-top: 1.5rem;
    }
 .servicecol6{
  margin-top: 1.5rem;
 }
 .servicecol6 img{
  width: 2.5rem;
 
 }
 
}


#services .content h3 {
 font-size: 30px;
 font-weight: 600;
 position: relative;
}

#services .content h3:after {
 content: "";
 position: absolute;
 display: block;
 width:180px;
 height: 4px;
 background: var(--accent-color);
 left: 0;
 bottom: 0;

}
#services .content h3:hover:after {
  background: #2C4459; 
} 
.serviceimg{
 width: 100%;
 height: 30rem;
 border-radius: 10px;
 object-fit: cover;
}


        .link-div {
            display: block;
        }



/* our team --------------------------------*/
#ourteam{
  height: 26rem;
}
#ourteam .content h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
 }
 
 #ourteam .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
 }
 #ourteam .content h3:hover:after {
  background: #2C4459; 
} 
.card {
  width: 100%;
  height: 120px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.238);
 
  overflow: hidden;
}

.card:hover {
 
  transition: all 0.5s ease;
  height: 220px;
  cursor: pointer;
}


.teamquali {
    font-size: 1rem;
}
.name{
    line-height: 13px;
    text-align: center;
    color: #2C4459;

}
.name h3{
    color: #2C4459;
    font-weight: 900;
}

 
.specialization {
  display: none;
  font-size: 16px;
}
.specialization .Speci{
  font-size: 15px;
  font-weight: 600;
}
.specialization .Speci2{
  font-size: 14px;
  font-weight: 600;
}
.specialization .Speci3{
  font-size: 25px;
  font-weight: 800;
}

.card:hover .specialization {
  display: block;

}
@media (max-width :575px) {
  #ourteam{
    height: auto;
  }
  .card {
    margin-bottom: 1rem;
  }
  .card2 {
    margin-bottom: 1rem;
  }
  #ourteam .content h3 {
    font-size: 30px;
   }
   
}



.card2 {
  width: 100%;
  height: 110px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.259);
  overflow: hidden;
  transition: all 0.5s ease; /* Transition applies to both hover and un-hover */
}
.card2:hover {
  height: 200px;
  cursor: pointer;
}
.card3 {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.259);
  overflow: hidden;
  transition: all 0.5s ease; /* Transition applies to both hover and un-hover */
}
.card3:hover {
  height: 130px;
  cursor: pointer;
}


.teamquali2 {
  font-size: .8rem;
}
.name2{
  line-height: 13px;
  text-align: center;
  color: #2C4459;
  font-size: .8rem;
  font-weight: 600;
}
.name3{
  /* line-height: 13px; */
  text-align: center;
  color: #2C4459;
  font-size: .8rem;
  font-weight: 600;
}

#Our-Team-content .name2 h4{
  color: #2C4459;
  font-weight: 700;
  font-size: 1.5rem;
}
#Our-Team-content .name3 h4{
  color: #2C4459;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  padding-top: 2rem;
}
#Our-Team-content{
  height: auto;
}

.specialization2 {
display: none;
font-size: 16px;
}
.specialization3 {
display: none;
font-size: 16px;
}
.specialization2 .Speci{
font-size: 15px;
font-weight: 600;
}
.specialization2 .Speci3{
font-size: 15px;
font-weight: 600;
}
.specialization2 .Speci2{
  font-size: 14px;
font-weight: 600;
}
.specialization2 .Speci3{
  font-size: 14px;
font-weight: 600;
}
.specialization2 .Speci3{
font-size: 25px;
font-weight: 800;
}

.card2:hover .specialization2 {
display: block;

}
.card3:hover .specialization3 {
display: block;

}

/* our clients---------------------------------------- */
#ourclint{
  height: auto;
}
#ourclint .content h3 {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  margin: 0 5%;
  font-family: 'oswald', sans-serif;
  padding-bottom: 10px;
 }
 @media (min-width : 1600px) and (max-width :2400px) {
  #ourclint .content h3 {
    margin: 0 15%;
   }
   
 }
 #ourclint .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 135px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
 }
 #ourclint .content h3:hover:after {
  background: #2C4459; 
} 
 #ourclint .item img{
  width: 13rem;
  aspect-ratio: 3/2;
  object-fit: contain;
  mix-blend-mode: darken;
  margin: 0;
 }
@media screen and (max-width :576px) {
  #ourclint .item img{
    width: 8rem;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: darken;
    margin: 0;
   }
}
 .bgshape{
  background-image: url(img/frame2.png);
  background-repeat: no-repeat;
  
 }
 @media only screen and (min-width: 820px) and (max-width: 1180px){
  #ourteam{
    position: fixed;
    margin-top: 5rem;
  }

}
 @media (max-width :576px) {
  #ourclint .row .content h3 {
    font-size: 30px;
   }

}


 /* testimonals  section-----------------------------*/

#testimonals .col{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.259);
  border-radius: 1rem;

}
#testimonals .col p{
   font-size: 1.2rem;
   font-weight: 500;
   color: #2C4459;
}
 @media (max-width :576px){
  #Testimonials .container .row h3{
    font-size: 30px;
 }
 }
 
 @media (min-width: 576px) and (max-width: 1200px){
  #Testimonials .container .row h3{
    margin-top: 4rem;
 }
 }
 
 .owl-carousel .owl-stage {
  display: flex;
  animation: scroll 40s linear infinite;
}

.owl-carousel .owl-stage .owl-item {
  flex: 1 0 auto;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-80%);
  }
}

 .swiper {
 overflow: visible;
 width: 100%;
 height: 100%;
    }

   #Testimonials .testim {
        display: inline-flex;
        border-radius: 10px; 
        padding: 20px;
  
        color: #2C4459;
        align-items: center;
    }
   #Testimonials .testim .testim-one{
      width: 30%;
      text-align: left;
      align-self: flex-start;
    }
   #Testimonials .testim .testim-one .testim-one-name{
       line-height: .5rem;
       padding-top: 1rem;
       text-align: left;
      
    }
   #Testimonials .testim .testim-one .testim-one-name .name-two{
       font-size: 1rem;
       font-weight: 600;
       line-height: 1.4rem;
       font-family: 'poppins', sans-serif;
    }
   #Testimonials .testim .testim-one .testim-one-name .location{
       font-size: .8rem;
       font-family: 'poppins', sans-serif;
       font-weight: 500;
       line-height: 1rem;
       margin-bottom: 0;
    }
    @media (max-width :576px) {
      #Testimonials .testim .testim-one .testim-one-name{
        line-height: .1rem;
        text-align: center;
        height: 5rem;
     }
      #Testimonials .testim .testim-one .testim-one-name .name-two{
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0;
        padding-bottom: 0;
     }
    #Testimonials .testim .testim-one .testim-one-name .location{
        font-size: .8rem;
     }

      #Testimonials .testim .testim-one .testim-img{
        width: 10rem;
   }

   #Testimonials .testim {
    display: initial;  
}
#Testimonials .testim .testim-one{
  text-align: center;
  width: 100%;
}
#Testimonials .swiper-slide .testim .testim-two{
  width: 100%;
  text-align: left;
  }
#Testimonials .testim .testim-two .testim-two-img{
  width: auto;
  margin-left: 35%;
  }
  #Testimonials .container .row .swiper .swiper-wrapper .swiper-slide .testim .testim-two  .fix-para {
    height: 20rem;

}
#Testimonials .testim .testim-two .fix-para p {
  font-size: .9rem;
  text-align: left;
  font-weight: 400;
}
  #Testimonials .container .row .testim .testim-one img{
    margin-top: 0%;
}
    }
    @media (max-width :350px) {
      #Testimonials .testim .testim-two .testim-two-img{
        width: auto;
        margin-left: 30%;
        }      
    }

   #Testimonials .testim .testim-one img{
          width: 10rem;
          margin-top: 50%;
          height: 5rem;
          border: 3px solid #5a5a5a;
          background-size: contain;
    }
    #Testimonials .testim .testim-two {
      width: 70%;
      text-align: left;
     
      flex-direction: column;

  }
  
  #Testimonials .testim .testim-two .fix-para {
      height: 18rem;
      margin-bottom: .2rem;
  }
  
  #Testimonials .testim .testim-two .fix-para p {
      font-size: .9rem;
      text-align: left;
      font-weight: 400;
  }
  
  #Testimonials .testim .testim-two h5 {
      font-size: 1.2rem;
      font-weight: 600;
      background-color: #d4d4d4;
      height: 4rem;
      padding-left: .5rem;
     align-content: center;
  }
  
    /* #Testimonials .testim .testim-two .con-footer-one{
       margin-top: 5rem;
       border-radius: .5rem;
       bottom: 0;
      }
    #Testimonials .testim .testim-two .con-footer-two{
       margin-top: 3.5rem;
       border-radius: .5rem;
       
      }
    #Testimonials .testim .testim-two .con-footer-three{
       margin-top: 8rem;
       border-radius: .5rem;
       
      }
    #Testimonials .testim .testim-two .con-footer-four{
       margin-top: 5rem;
       border-radius: .5rem;
       
      }
    #Testimonials .testim .testim-two .con-footer-five{
       margin-top: 3.1rem;
       border-radius: .5rem;
       
      }
    #Testimonials .testim .testim-two .con-footer-six{
       margin-top: 5rem;
       border-radius: .5rem;
       
      }
    #Testimonials .testim .testim-two .con-footer-seven{
       margin-top: 8rem;
       border-radius: .5rem;
       
      }
    #Testimonials .testim .testim-two .con-footer-eight{
       margin-top: 8rem;
       border-radius: .5rem;
       
      }
    #Testimonials .testim .testim-two .con-footer-nine{
       margin-top: 7rem;
       border-radius: .5rem;
       
      } */


    @media (min-width: 576px) and (max-width: 1200px){
      #Testimonials .testim {
        height: 28rem;
      }
    }
    #Testimonials .testim h3{
      font-weight: 700;
      color: #2C4459;
    }
    #Testimonials .testim p{
      font-weight: 500;
      color: #2C4459;
      font-family: 'roboto', sans-serif;
    }

    #Testimonials .content h3 {
      font-size: 30px;
      font-weight: 600;
      position: relative;
      font-family: 'oswald', sans-serif;
      padding-bottom: 10px;
     }
     
     #Testimonials .content h3:after {
      content: "";
      position: absolute;
      display: block;
      width:230px;
      height: 4px;
      background: var(--accent-color);
      left: 0;
      bottom: 0;
     }
     #Testimonials .content h3:hover:after {
      background: #2C4459; 
    } 
    #Testimonials .swiper-pagination {
      margin-top: 20px;
      position: relative;
    }
    /* pagination-bullets */
    #Testimonials .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #fff;
      opacity: 1;
      border: 1px solid #2C4459;
    }
    
    #Testimonials .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #5a5a5a;
    }
     
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width :769px) {
  .scroll-top {

    right: 15px;
    bottom: 45px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
  }
  
  .scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
}

/* footer section end */
.whats_main{
  position: fixed;
  bottom: 40px;
  left: 30px;
  text-align: left;
  z-index: 10;
  width: 10%;
}
.whats_main img{
  width: 40%;
}
@media (max-width :769px) {
  .whats_main{
    position: fixed;
    bottom: 45px;
    left: 30px;
    text-align: left;
    z-index: 10;
  }
  .whats_main img{
    width: 3rem;
  }
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
#card-container article {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.259);
  transition: 0.3s;
}
#card-container img{
  
  transition: 0.3s;
}
#blog-details .container{
  margin-top: 8rem;
}


.article img {
 
  width: 100%; 
  height: 80vh;
  background-size: cover;
  background-position: center;
 
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
  font-family: 'montserrat',sans-serif;
}
@media screen and (max-width :576px) {
  .blog-posts .post-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .blog-posts .post-content {
    padding: 10px;
  }
  .blog-posts p {
    margin-top: 20px;
    font-size: .7rem;
  }
}
.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-posts p {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'roboto', sans-serif;
}

.blog-posts hr {
  color: rgba(var(--default-color-rgb), 0.4);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: rgba(var(--heading-color-rgb), 0.8);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}
#blog-details i{
  color: #D10D1C;
}
/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
  color: rgba(var(--default-color-rgb), 0.6);
}

.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination-2 li a {
  color: #fff;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5a5a5a;
}

.pagination-2 li.active,
.pagination-2 li:hover {
 
   color: #fff;
}

.pagination-2 li.active a,
.pagination-2 li:hover a {
   color: #fff;
   background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.259);
}

#blog-details .article img {
 
     width: 80%;
     height: auto;
     margin-left: 10%;
     box-shadow: 1px 1px 10px #000;
     background-size: cover;
}
@media (max-width : 450px) {
  #blog-details .article img {
 
    width: 100%;
   margin-left: 0;
}
}
.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}
#blog-details .meta-top p{
  text-align: justify;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: rgba(var(--default-color-rgb), 0.6);
}

.blog-details .meta-top a {
  color: rgba(var(--default-color-rgb), 0.6);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.blog-details .meta-bottom i {
  color: rgba(var(--default-color-rgb), 0.6);
  display: inline;
}

.blog-details .meta-bottom a {
  color: rgba(var(--default-color-rgb), 0.6);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.259);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: rgba(var(--default-color-rgb), 0.4);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: rgba(var(--default-color-rgb), 0.7);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding-top: 10px;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: rgba(var(--default-color-rgb), 0.8);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.6);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.259);
}

.blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog-comments .reply-form p {
  font-size: 14px;
}

.blog-comments .reply-form input {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-comments .reply-form textarea {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.blog-comments .reply-form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: rgba(var(--accent-color-rgb), 0.8);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.3);
  padding: 3px 10px;
  position: relative;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: rgba(var(--default-color-rgb), 0.8);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.5);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(var(--default-color-rgb), 0.5);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(var(--default-color-rgb), 0.4);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: rgba(var(--default-color-rgb), 0.4);
  font-size: 14px;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 10px 10px 20px #0000002b;
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted #5a5a5a;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}





/* contact-form */
.form-container {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;

}

.contact .php-email-form {
  background: #d4d4d493;
  padding: 30px;
  width: 100%;
}
.contact .php-email-form .Request{
   color: #2C4459;
   font-weight: 700;
   padding-bottom: 1rem;
   font-family: 'poppins', sans-serif;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #77AAFF;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #2C4459;
  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 #635551;
  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: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form .form-control-ser,
.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 .form-control-ser:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}
.contact .php-email-form .form-control-ser{
    width: 100%;
    border: 1px solid #ccccccd2;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #2C4459;
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5a5a5a;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.select-container {
  position: relative;
}

#contact-home-page .form-control-ser {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px;
  padding-left: 1rem;
  font-size: 15px;
  border-radius: 0px;
  border: 1px solid #00000044;
  cursor: pointer;
}
 .options-drop {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    pointer-events: none; 
} 
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
/* .portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  color: #000000;
  cursor: pointer;
  display: inline-block;
  padding: .5rem .6rem;
  font-size: 18px;
  font-weight: 400;
  border-radius: 12px;
  margin: 0 5px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.238);
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: #D10D1C;
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: .4rem .5rem;
    font-size: 8px;
    font-weight: 400;
    border-radius: 12px;
    margin: 0 ;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.238);
  }
  

}

.portfolio .portfolio-item {
  position: relative;
}
.portfolio .portfolio-item img{
  height: 18rem;
}
@media (max-width : 576px) {
  .portfolio .portfolio-item img{
    height: auto;
    margin-bottom: 0;
  }
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-default);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}
@media (max-width : 576px) {
  .portfolio .portfolio-item .portfolio-info h4 {
    font-size: 15px;
  
  }
  
  .portfolio .portfolio-item .portfolio-info p {
  
    font-size: 10px;
  
  }
 
}
.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(27, 47, 69, 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}
 */



.fancybox-gallery {
  display: flex;
  flex-wrap: wrap;
}

.fancybox-gallery a {
  margin: 10px;
  position: relative;
  width: calc(100% - 20px); /* Default for mobile */
}

.fancybox-gallery img {
  width: 100%;
  height: 13rem;
  display: block;
  border: 1px solid #ccc;
}

.portfolio-info {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
color: white;
text-align: center;
height: auto;
padding: 10px;
opacity: 0;
transition: opacity 0.3s;
}

.fancybox-gallery a:hover .portfolio-info {
opacity: 1;
}

.portfolio-info h4,
.portfolio-info p {
margin: 0;
color: #fff;
}


/* .portfolio-flters {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
} */

.portfolio-flters ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-flters li {
  margin: 0.3rem;
  font-size: 1rem;
  padding: 5px 8px;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  flex: 1 1 auto; /* Allow items to shrink and grow */
  cursor: pointer;
  background-color: #dbdbdb;
}

@media (max-width: 576px) { /* Adjust this width as per your requirement */
  .portfolio-flters li {
    flex: 1 1 45%; /* Two items per line on mobile */
    margin: 0.3rem;
  }
}



.portfolio-flters .filter-active {
  background: #5a5a5a;
  font-weight: bold;
  color: #ffffff;
}

.accordion-body {
  background-color: rgb(241, 241, 241);
  height: auto;
  position: static;
}

@media (min-width: 576px) {
  .fancybox-gallery a {
      width: calc(50% - 20px); /* For tablets */
  }

}

@media (min-width: 992px) {
  .fancybox-gallery a {
      width: calc(25% - 20px); /* For desktops */
  }

}
@media (min-width: 992px) {
  .fancybox-gallery .electric{
      width: calc(33.33% - 20px); /* For desktops */
  }

}
@media (max-width : 900px) {
  .accordion-body{
  height: auto;
  background-color: rgb(219, 219, 219);
}
}
@media (max-width : 576px) {

.portfolio-info {

height: 4rem;
padding: 10px;

}


.portfolio-info h4,
.portfolio-info p {
margin: 0;
font-size: .8rem;
}

.fancybox-gallery img {
  width: 100%;
  height: auto;

}


}
.accordion-button {
  background-color: #2C4459;
  color: #f7f7f7;
  border: none !important;
  box-shadow: none !important; 
  outline: none !important;
  border-radius: .5rem;
}

.accordion-button::after {
  color: #f7f7f7 !important;
  filter: invert(1); 
  
}

.accordion-header {
  background-color: #2C4459;
  color: #f7f7f7;
  border: none !important; 
  
}

.accordion-item {
  border: none !important; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.238);
  
}

.accordion-button.collapsed {
  background-color: #2C4459;
  color: #f7f7f7;
  
}

.accordion-button.collapsed::after {
  color: #f7f7f7 !important; 
  filter: invert(1); 
  
}

.accordion-item {
  color: #000000;
  border: none; 
  
  
}


/* leadership-accordian */
#leadership-team-content .accordion-item{
  outline: none;
  border: none;
  background-color: #2c445919;
}
#leadership-team-content .accordion-button{
  background-color: #2C4459;
  margin-top: .8rem;
  border-radius: 10px;
}
#leadership-team-content .accordion-button span{
  color: #fff;
  font-size: 1.3rem;
}
#leadership-team-content .collapsed{
  color: #fff;
}

@media (max-width :450px) {
 #leadership-team-content .accordion-button span{
   font-size: .8rem;
}
}



/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 350px; 
  animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal-content p {
  margin-bottom: 15px;
  font-size: 1.8rem; 
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}




.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 30px;
  border-radius: 12px; 
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 350px; 
  animation: popupFadeIn 0.3s ease forwards;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes popupFadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
}

.popup p {
  margin-bottom: 15px;
  font-size: 1.8rem; 
}



.close-two {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close-two:hover,
.close-two:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}





/* download-button */

.button-dd {
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #17795E;
  background-color: #209978;
  overflow: hidden;
  margin-left: 25%;
}

@media screen and (max-width: 576px){
  .button-dd {
    position: relative;
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #17795E;
    background-color: #209978;
    overflow: hidden;
    margin-left: 1%;
  }
}

.button-dd, .button__icon, .button__text {
  transition: all 0.3s;
}

.button-dd .button__text {
  transform: translateX(22px);
  color: #fff;
  font-weight: 600;
}

.button-dd .button__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #17795E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-dd .svg-svg {
  width: 20px;
  fill: #fff;
}

.button-dd:hover {
  background: #17795E;
}

.button-dd:hover .button__text {
  color: transparent;
}

.button-dd:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.button-dd:active .button__icon {
  background-color: #146c54;
}

.button-dd:active {
  border: 1px solid #146c54;
}
