/* ===================================
    Table of Content
====================================== */

/*  - Fonts
    - Scrollbar
    - General   
    - Loader
    - Navbar
    - Side Menu
    - Services-Section
    - Learn-More-Section
    - Counter-Section
    - Team-Section
    - Portfolio-Section
    - Quote-Section
    - Pricing-Section
    - Blog-Section
    - Contact-Section
    - Footer
   */

/* ===================================
     Google font
====================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* ===================================
    Scrollbar
====================================== */

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #18191d;
}

::-webkit-scrollbar-track {
  width: 12px;
  background: #fff;
}


/* ===================================
    General
====================================== */

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

h2 {
  font-size: 36px /*44px*/;
  color: #18191d;
  font-weight: 400;
  text-align: center;
}

p {
  font-size: 18px;
  color: #4f4f4f;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
}

.btn {
  z-index: 2;
  font-size: 17px;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 500;
  overflow: hidden;
  position: sticky;
  line-height: inherit;
  display: inline-block;
  border: 2px solid transparent;
  text-transform: capitalize;
  appearance: initial;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 14px !important;
  padding: 9px 34px !important;
  line-height: 1.8em !important;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.btn-white {
  background: transparent;
  border-color: #18191d;
  color: #18191d;
}

.btn.btn-light-blue {
  color: #032a58;
  background: transparent;
  border-color: #032a58;
}

.btn.trans-btn {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

/*Button Hover bg*/
.btn.btn-hvr-blue:hover,
.btn.btn-hvr-blue:focus {
  color: #fff;
  border-color: #032a58;
  background: transparent !important;
}

.btn.btn-hvr-white:hover,
.btn.btn-hvr-white:focus {
  color: #18191d;
  border-color: #fff;
  background: transparent !important;
}

.btn.btn-hvr-light-blue:hover,
.btn.btn-hvr-light-blue:focus {
  color: #fff;
  border-color: #032a58;
  background: transparent !important;
}

.btn.btn-hvr-blue .btn-hvr-blue {
  background: #18191d;
  border-color: #18191d;
}

.btn.btn-hvr-white .btn-hvr-white {
  background: #fff;
  border-color: #fff;
}

.btn.btn-hvr-light-blue .btn-hvr-light-blue {
  background: #032a58;
  border-color: #032a58;
}

.btn.btn-hvr-white .btn-hvr-effect {
  background: #fff;
  border-color: #fff;
}

.btn.btn-hvr-light-blue .btn-hvr-effect {
  background: #032a58;
  border-color: #032a58;
}

.btn-hvr-setting {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.btn-hvr-setting-inner {
  position: relative;
  display: block;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0
}

.btn-hvr-effect {
  position: absolute;
  top: -5px;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s !important;
  background: #18191d;
  border-color: #18191d;
}

.btn-hvr-effect:nth-child(1) {
  left: 0;
  transition-delay: 0s !important;
}

.btn-hvr-effect:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s !important;
}

.btn-hvr-effect:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s !important;
}

.btn-hvr-effect:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s !important;
}

.btn-hvr-setting:hover .btn-hvr-effect,
.btn:hover .btn-hvr-effect,
.btn:active .btn-hvr-effect,
.btn:focus .btn-hvr-effect {
  transform: translateZ(0) scale(1.7) !important;
}


/*Slider overly*/
.bg-white {
  background-color: #fff;
}

/* overlay-setting */
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* opacity */
.opacity-1 {
  opacity: 0;
}

.opacity-2 {
  opacity: 0;
}

/* ===================================
    Loader
====================================== */

@keyframes ldio-8v0e2g029us-o {
  0% {
    opacity: 1;
    transform: translate(0, 0)
  }
  49.99% {
    opacity: 1;
    transform: translate(60px, 0)
  }
  50% {
    opacity: 0;
    transform: translate(60px, 0)
  }
  100% {
    opacity: 0;
    transform: translate(0, 0)
  }
}

@keyframes ldio-8v0e2g029us {
  0% {
    transform: translate(0, 0)
  }
  50% {
    transform: translate(60px, 0)
  }
  100% {
    transform: translate(0, 0)
  }
}

.pre-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  left: 45%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 1.3s linear infinite;
}

.loader div {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 70px;
  left: 40px;
}

.loader div:nth-child(1) {
  background: #032a58;
  animation: ldio-8v0e2g029us 1.4492753623188404s linear infinite;
  animation-delay: -0.7246376811594202s;
}

.loader div:nth-child(2) {
  background: #18191d;
  animation: ldio-8v0e2g029us 1.4492753623188404s linear infinite;
  animation-delay: 0s;
}

.loader div:nth-child(3) {
  background: #032a58;
  animation: ldio-8v0e2g029us-o 1.4492753623188404s linear infinite;
  animation-delay: -0.7246376811594202s;
}

.loader div {
  box-sizing: content-box;
}

/* ===================================
    Navbar
====================================== */

.navbar {
  padding-top:0;
  padding-bottom: 0;
  margin-bottom: 0;
  z-index: 111;
  align-items: flex-end;
  background-color: #032a58 !important;
}

.navbar-brand img {
  width: 100%;
}

.navbar-brand  {
  padding: 0;
}

.nav-link {
  padding: 24px 16px;
  display: block;
}

.navbar .nav-item a {
  text-decoration: none;
}

.navbar-light .navbar-nav .active>.nav-link {
  color: #fff;
}

.navbar-light .navbar-nav .nav-item {
  font-size: 14px;
  color: #fff;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  margin-right: 25px;
  transition: .8s ease;
  border-bottom: solid 5px transparent;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
  border-bottom: solid 5px #fff;
  transition: .8s ease;
}

.navbar .social-icons ul {
  margin-bottom: 0;
}

.navbar .social-icons li {
  display: inline-block;
}

.navbar .social-icons ul li a:hover {
  background-color: #fff;
  transition: .8s ease;
}

.navbar .social-icons ul li a {
  border-radius: 50%;
  color: #fff;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}

.social-icons .facebook-hovr:hover {
  color: #4267B2;
}

.social-icons .twitter-hovr:hover {
  color: #2daae1;
}

.social-icons .instagram-hovr:hover {
  color: #C32AA3;
}

/*side menu button*/
.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 40px;
  top: 20px;
  z-index: 999;
  margin-top: 12px;
  margin-right: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
  transition: all .3s linear;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 70%;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 9999;
  background: #ffffff;
  transform: translate3d(100%, 0, 0);
  transition: transform .5s ease;
  position: fixed;
  overflow: hidden;
}

.side-menu.left {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1031;
  opacity: 0.4;
  background-color: #202020;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*side menu image*/
.image {
  position: absolute;
  top: 30px;
}

/*side menu close btn*/
.side-menu .btn-close {
  height: 33px;
  width: 33px;
  top: 30px;
  right: 25px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  display: inline-block;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  top: 5px;
  left: 16px;
  height: 24px;
  width: 2px;
  content: ' ';
  background: #032a58;
  position: absolute;
}

.side-menu .btn-close:before {
  transform: rotate(45deg);
}

.side-menu .btn-close:after {
  transform: rotate(-45deg);
}

.side-menu .btn-close:hover {
  transform: scale(0.9);
  overflow: hidden;
  transition: all .5s ease;
}

/*side menu inner-wrapper*/
.side-menu .inner-wrapper {
  height: 100%;
  padding: 4.5rem 5rem;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
  margin-bottom: 30px;
  margin-top: 30px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: #032a58;
  padding: 2px 0 3px 0 !important;
  font-size: 24px;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: #032a58;
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}

/*side menu footer */
.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #18191d;
  font-size: 15px;
}

.side-menu-footer .banner-icons ul {
  margin-bottom: 0;
}

.side-menu-footer .banner-icons ul li {
  display: inline-block;
}

.side-menu-footer .banner-icons ul li i {
  color: #18191d;
}

.side-menu-footer .banner-icons ul li a:hover {
  background-color: #18191d;
  transition: all .8s ease;
}

.side-menu-footer .banner-icons ul li a {
  border-radius: 50%;
  color: #fff;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  display: block;
  overflow: hidden;
  text-align: center;
}

.side-menu-footer .banner-icons ul li a:hover i {
  color: #fff;
}

/* ===================================
    Services-Section
====================================== */

.services-section {
  padding: 90px 0;
  background-color: #f6f6f6;
}

.services-section .flip-boxes {
  margin-top: 65px;
}

.flip-box {
  background-color: transparent;
  width: 350px;
  height: 270px;
  border-radius: 20px;
  border: 1px solid #f1f1f1;
  perspective: 1000px;

}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box .flip-box-front {
  background-color: #fff;
  border-radius: 20px;
}

.flip-box .blue-box .flip-box-back {
  background-color: #032a58;
  transform: rotateX(180deg);
}

.flip-box:hover .flip-box-inner {
  transform: rotateX(180deg);
}

.flip-box-front,
.flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
}

.flip-box-back {
  background-color: #032a58;
  transform: rotateX(180deg);
}

.flip-box .flip-box-back i {
  color: #fff;
}

.flip-box i {
  color: #18191d;
  padding-top: 0px /* 50px*/;
  font-size: 40px;
  text-align: center;
}

.flip-box p {
  color: #18191d;
  font-size: 14px;
  font-weight: 300;
  padding-left: 10px;
  padding-right: 10px;
}

.flip-box h5 {
  font-size: 24px;
  font-weight: 500;
  color: #18191d;
 /* margin-top: 20px; */
  text-align: center;
}

.flip-box .flip-box-back h5 {
  color: #fff;
}

.flip-box .blue-box .flip-box-back h5 {
  color: #fff;
}

.flip-box .blue-box h5 {
  color: #032a58;
}

.flip-box .flip-box-back p {
  color: #fff;
}

.flip-box .blue-box .flip-box-front p {
  color: #032a58;
}

.flip-box .blue-box .flip-box-front i {
  color: #032a58;
}

/* ===================================
    Learn-More-Section
====================================== */

.learn-more-section {
  padding: 90px 0;
  background-size: cover;
  background-image: url('../img/section-2.jpg');
}

.learn-more-section .text-area {
  text-align: center;
}

.learn-more-section p {
  color: #fff;
  margin-bottom: 30px;
}

.learn-more-section h2 {
  color: #fff;
  margin-bottom: 50px;
}

/* ===================================
    Counter-Section
====================================== */

.counter-section {
  padding: 90px 0;
  background-color: #fff;
}

.counter-section p {
  margin-bottom: 70px;
}

.counter-section .media i {
  color: #18191d;
  font-size: 40px;
}

.counter-section .media .media-body {
  padding-left: 20px;
}

.counter-section .media .media-body span {
  font-size: 38px;
  color: #032a58;
}

.counter-section .media .media-body p {
  color: #333333;
  font-size: 16px;
  padding-top: 10px;
  text-align: left;
}

/* ===================================
    Team-Section
====================================== */

.team-section {
  padding: 90px 0;
  background-color: #f6f6f6;
}

.team-section .item {
  
  cursor: pointer;
}
.team-section img {
  padding: 10px;
  background:#ffffff;
}

.team-section .team-detail {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  top: -52px;
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.team-section .item .team-detail {
  transition: .6s ease;
}

.team-section .item:hover .team-detail {
  background: #032a58;
  transition: .6s ease;
}

.team-section .item:hover .team-detail h5 {
  color: #fff;
}

.team-section .item:hover .team-detail p {
  color: #fff;
}

.team-section .team-detail h5 {
  color: #032a58;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.team-section .team-detail p {
  color: #18191d;
  font-size: 16px;
}

.owl-carousel button.owl-dot {
  opacity: 0.7;
  color: red;
  width: 10px;
  margin-left: 20px;
  height: 12px;
  border-radius: 50%;
  margin-top: 50px;
  background: #18191d;
  border: none;
  font: inherit;
}

.team-section .owl-carousel button.owl-dot.active {
  opacity: 1;
  width: 38px;
  height: 12px;
  border-radius: 50px;
  background-color: #032a58;
  transition: .8s ease;
}

.team-section button:focus {
  outline: 1px solid transparent;
}

.owl-carousel button.owl-dot {
  color: transparent;
  transition: .8s ease;
}

/* ===================================
    Story-Section
====================================== */

.story-section {
  padding: 90px 0;
  background-size: cover;
  background-image: url('../img/video.jpg');
}

.story-section .text-area {
  text-align: center;
}

.story-section p {
  color: #fff;
  margin-bottom: 30px;
}

.story-section h2 {
  color: #fff;
  margin-bottom: 50px;
}

.story-section i {
  color: #fff;
  padding-right: 10px;
}

.story-section .trans-btn:hover i {
  color: #18191d;
}

/* ===================================
    Cube-Portfolio-Section
====================================== */

.cubeportfolio {
  padding: 90px 0;
  background-color: #fff;
}

.cubeportfolio p {
  font-size:16px 
}

.main-timeline-2 {
  position: relative;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #032a58;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline-2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: #032a58;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left-2 {
  padding: 0px 40px 20px 0px;
  left: 0;
}

/* Place the container to the right */
.right-2 {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid rgb(103, 104, 105);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgb(103, 104, 105);
}

/* Add arrows to the right container (pointing left) */
.right-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid rgb(103, 104, 105);
  border-width: 10px 10px 10px 0;
  border-color: transparent rgb(103, 104, 105) transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-2::after {
  left: -14px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .main-timeline-2::after {
    left: 31px;
  }

  /* Full-width containers */
  .timeline-2 {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline-2::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left-2::after,
  .right-2::after {
    left: 18px;
  }

  .left-2::before {
    right: auto;
  }

  /* Make all right containers behave like the left ones */
  .right-2 {
    left: 0%;
  }
}

/* Project Section Flip Box Styles */
.project-flip-box {
  background-color: transparent;
  width: 100%;
  height: 200px;
  perspective: 1000px;
  margin-bottom: 10px;
}

.project-flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.project-flip-box:hover .project-flip-box-inner {
  transform: rotateY(180deg);
}

.project-flip-box-front, .project-flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.project-flip-box-front {
  background-color: #f8f9fa;
  color: #032a58;
}

.project-flip-box-back {
  background-color: #032a58;
  color: white;
  transform: rotateY(180deg);
}

.project-flip-box i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #032a58;
}

.project-flip-box-back i {
  color: #fff;
}

.project-flip-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.project-flip-box p {
  font-size: 1rem;
  line-height: 1.5;
}
.project-flip-box-back P {
  color: white;
}
  
.cubeportfolio .cube-button {
  text-align: center;
  margin-top: 50px;
}

/* ===================================
    Quote-Section
====================================== */

.quote-section {
  padding: 90px 0;
  background-size: cover;
  background-image: url('../img/quote.jpg');
}

.quote-section .left-quote {
  margin-bottom: 25px;
  margin-left: 120px;
  font-size: 20px;
}

.quote-section h3 {
  font-size: 30px;
  color: #18191d;
  text-align: center;
}

.quote-section .right-quote {
  font-size: 20px;
  margin-top: 25px;
  margin-right: 120px;
  text-align: right;
}

/* ===================================
    Pricing-Section
====================================== */

.pricing-section {
  padding: 90px 0;
  background-color: #fff;
}

.pricing-section .pricing-plans {
  margin-top: 90px;
}

.single-price {
  padding-bottom: 30px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.single-price.active {
  padding-bottom: 50px;
  background-color: #fff;
  transform: translateY(-20px);
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
}

.center.price-tag {
  color: #fff;
}

.price-tag h3 {
  color: #18191d;
  font-size: 36px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.price-tag span {
  font-size: 30px;
}

.active .price-tag h4 {
  color: #032a58;
}

.price-tag p {
  color: #18191d;
  font-size: 14px;
}

.active .price-tag p {
  color: #032a58;
  font-size: 14px;
}

.price-tag h4 {
  font-size: 18px;
  padding: 30px;
  color: #fff;
  background-color: #18191d;
}

.active .price-tag h4 {
  font-size: 18px;
  padding: 50px;
  color: #fff;
  background-color: #032a58;
}

.price-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-item ul li {
  font-size: 15px;
  padding: 7px 0;
  margin: 5px 0;
  color: #4f4f4f;
}

.single-price a {
  margin-top: 15px;
}

/* ===================================
    Blog-Section
====================================== */

.blog-section {
  padding: 90px 0;
  background-color: #fff;
}

.blog-section .left-text {
  margin-bottom: 40px;
}

.blog-section img {
  display: flex;
  justify-content: center;
  width: 80%;
  margin-left: 107px;
}

.blog-section h2 {
  text-align: center;
  margin-bottom: 20px;
}


.blog-section p {
  font-size: 14px;
  text-align: center;
}


.blog-section .button {
  margin-top: 30px;
}

.blog-section .right-text {
  margin-top: 40px;
}

.right-text h3 {
  margin-top: 50px;
  text-align: right;
}

.blog-section .right-text img {
  margin-left: 0;
}

.right-text p {
  text-align: right;
}

.blog-section .right-text .button {
  float: right;
}

/* ===================================
    Contact-Section
====================================== */

.contact-section {
  padding: 90px 0;
  background-color: #fff;
}

.contact-section h2 {
  margin-bottom: 25px;
  text-align: left;
}

.contact-section .contact-form {
  margin-right: 40px;
}

.form-control:focus {
  border-color: #ced4da;
  box-shadow: 0 0 0 0.0rem transparent;
}

.contact-section .button {
  margin-left: 15px;
  margin-top: 15px;
  padding-left: 53px !important;
  padding-right: 53px !important;
}

.contact-section label {
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 16px;
  margin-top: 70px;
  text-align: justify;
}

.contact-section .media {
  margin-top: 30px;
}

.contact-section .media i {
  font-size: 25px;
  color: #333333;
}

.contact-section .media-body {
  margin-left: 20px;
}

.contact-section .media-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: #032a58;
  margin-bottom: 10px;
}

.contact-section .media-body p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  margin-top: 0;
  margin-bottom: 0;
}

/* ===================================
    Footer
====================================== */

footer {
  padding: 20px 0;
  background-color: #f3f3f3;
}

footer .footer-social-icons ul {
  margin-bottom: 0;
  text-align: center;
}

.footer-social-icons ul li {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 15px;
  display: inline-block;
}

.footer-social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #333333;
  height: 40px;
  line-height: 42px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

.footer-social-icons ul li a:hover {
  color: #fff;
  background-color: #032a58;
  transition: 0.5s ease;
}

footer p {
  font-size: 13px;
  color: #888888;
}

/* ===================================
    Media Queries
====================================== */

@media (max-width: 1200px) {
  /*Loader*/
  .loader {
    top: 40%;
    left: 40%;
  }

  /*Navbar*/
  .sidemenu_btn {
    right: 0;
    margin-right: 9px;
  }
  .navbar-light .navbar-nav .nav-item {
    font-size: 15px;
  }

  /*Side Menu*/
  .side-menu {
    width: 45%;
  }
  .side-menu-footer p {
    font-size: 18px;
  }

  /*Services-Section*/
  .flip-box {
    width: 100%;
  }

  /*Quote Section*/
  .quote-section .left-quote {
    margin-left: 50px;
  }
  .quote-section .right-quote {
    margin-right: 50px;
  }
}

@media (max-width: 991px) {
  /*General*/
  h2 {
    font-size: 40px;
  }
  p {
    font-size: 16px;
  }

  /*Loader*/
  .loader {
    top: 40%;
    left: 40%;
  }

  /*Navbar*/
  .navbar .social-icons ul li {
    display: none;
  }
  .navbar-light .navbar-nav .nav-item {
    font-size: 13px;
  }
  .sidemenu_btn {
    right: 0;
  }

  /*Side Menu*/
  .side-menu {
    width: 50%;
  }

  /*Services Section*/
  .services-section .flip-boxes {
    margin-top: 20px;
  }

  /*Services Section*/
  .flip-box {
    width: 100%;
  }

  /*Counter Section*/
  .counter-section {
    text-align: center;
  }
  .counter-section .media {
    display: block;
  }
  .counter-section .media i {
    margin-bottom: 20px;
  }
  .counter-section .media .media-body {
    padding-left: 0;
  }
  .counter-section .media .media-body p {
    text-align: center;
  }

  /*Quote section*/
  .quote-section h3 {
    font-size: 29px;
  }
  .quote-section .left-quote {
    margin-left: 18px;
  }
  .quote-section .right-quote {
    margin-right: 28px;
  }

  /*Pricing Section*/
  .price-tag h3 {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .single-price {
    margin-bottom: 40px;
  }
  .single-price.active {
    transform: translateY(0px);
  }

  /*Blog Section*/
  .blog-section {
    text-align: center;
  }
  .blog-section img {
    width: 100%;
    margin-left: 0;
  }
  .blog-section .right-text .button {
    float: none;
  }
  .blog-section h2 {
    text-align: center;
  }
  .blog-section p {
    font-size: 15px;
    text-align: center;
  }
  .right-text h2 {
    margin-top: 0;
    text-align: center;
  }
  .right-text p {
    text-align: center;
  }

  /*Contact Section*/
  .contact-section .contact-form{
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  /*General*/
  p {
    font-size: 15px;
  }
  h2 {
    font-size: 35px;
  }
  .wow {
    visibility: visible !important;
    animation: none !important;
  }

  /*Loader*/
  .loader {
    top: 40%;
    left: 30%;
  }

  /*Navbar*/
  .navbar {
    padding-top:0;
    padding-bottom: 8px;
  }

  /*Side Menu*/
  .side-menu {
    width: 100%;
  }
  .sidemenu_btn {
    top: 10px;
    right: 0;
  }
  .side-menu-footer p {
    font-size: 16px;
  }

  /*Services Section*/
  .services-section .flip-boxes {
    margin-top: 20px;
  }

  /* Learn-more-section*/
  .learn-more-section p {
    font-size: 17px;
  }

  /*Quote Section*/
  .quote-section h3 {
    font-size: 20px;
  }

  /*Counter Section*/
  .counter-section .media .media-body p {
    text-align: center;
  }
}

@media (max-width: 575px) {
  /*General*/
  h2 {
    font-size: 33px;
  }
  .opacity-2 {
    opacity: .7;
  }

  /*Loader*/
  .loader {
    top: 35%;
    left: 25%;
  }

  /*Side Menu*/
  .side-menu-footer p {
    font-size: 14px;
  }

  /*Quote Section*/
  .quote-section h3 {
    font-size: 27px;
  }
  .quote-section .right-quote {
    margin-top: 6px;
  }
}

@media (max-width: 400px) {
  /*General*/
  h2 {
    font-size: 30px;
  }
  p {
    font-size: 14px;
  }

  /*Side Menu*/
  .side-menu-footer p {
    font-size: 12px;
  }
}

/* ===================================
    Slider Section
====================================== */
/* ===================================
    Slider Section
====================================== */

.slider {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
  padding: 40px;
}

.slide-content h6 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #fff;
}

.slide-content h2 {
  font-size: 60px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #fff;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #032a58;
}

/* Slider Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  right: 20px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 17px 24px !important;
}

.swiper-button-prev {
  left: 20px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 17px 24px !important;
}
/* Responsive Navigation Arrows */
@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* Other Services Section */
.other-services {
    margin-top: 40px;
    text-align: center;
}

.other-services h4 {
    color: #032a58;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.service-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 250px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #032a58;
}

.service-item:hover i,
.service-item:hover span {
    color: #fff;
}

.service-item i {
    font-size: 28px;
    color: #032a58;
    transition: all 0.3s ease;
}

.service-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .service-item {
        padding: 12px;
    }
    
    .service-item i {
        font-size: 24px;
    }
    
    .service-item span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        gap: 10px;
    }
    
    .service-item {
        padding: 10px;
        max-width: 200px;
    }
    
    .service-item i {
        font-size: 20px;
    }
    
    .service-item span {
        font-size: 12px;
    }
}

/* General Styles */
:root {
    --primary-color: #032a58;
    --secondary-color: #0d6efd;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Slider Styles */
.slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-content {
    position: absolute;
    top: 55%;
    /*left: 50%;*/
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    padding: 20px;
    max-width: 1000px;
    border-radius: 10px;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: var(--white);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-section p {
    text-align: center;
    margin-bottom: 0px;
}

/* Flip Box Styles */
.flip-box {
    perspective: 1000px;
    height: 300px;
    margin-bottom: 30px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-box-back {
    transform: rotateY(180deg);
    background: var(--primary-color);
    color: var(--white);
}

.flip-box i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.flip-box-back i {
    color: var(--white);
}

.flip-box h5 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Other Services Grid */
.other-services {
    margin-top: 50px;
    text-align: center;
}

.other-services h4 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    padding: 20px 0;
}

.service-item {
    min-width: 200px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-section p {
    text-align: center;
   /* margin-bottom: 50px;*/
}

.team-member {
    margin-bottom: 30px;
}

.member-card {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.member-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 42, 88, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #021f3f;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .services-grid {
        flex-wrap: wrap;
    }

    .service-item {
        min-width: 150px;
    }
}

@media (max-width: 767px) {
    .slider {
        height: 80vh;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .flip-box {
        height: 250px;
    }

    .flip-box i {
        font-size: 2.5rem;
    }

    .flip-box h5 {
        font-size: 1.2rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-item {
        width: 100%;
        max-width: 300px;
    }

    .member-card img {
        width: 120px;
        height: 120px;
    }
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.fadeInDown {
    animation: fadeInDown 1s ease;
}

.fadeInLeft {
    animation: fadeInLeft 1s ease;
}

.fadeInRight {
    animation: fadeInRight 1s ease;
}

.fadeInUp {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===================================
    About Section
====================================== */
.about-section {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.about-text{
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  color: #236e76;
  text-align: left;
}



.about-heading{
  font-size: 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  color: #1f1f1f;
}

.about-des{
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 24px;
}
.about-des p{
  text-align: left;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 24px;
  margin-bottom: 15px;
}
.about-box {
  border-radius: 5px;
  padding: 50px 15px 50px;
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0 0 18px rgba(127, 123, 123, 0.5);
  box-shadow: 0 0 18px rgba(127, 123, 123, 0.5);
  transition: ease-in-out 0.3s;
}

.about-box:hover {
  background-image: linear-gradient( 135deg, rgb(75, 51, 208) 0%, rgb(98, 58, 162) 100%);
  -webkit-box-shadow: 0 0 10px -2px rgba(127, 123, 123, 0.9);
  box-shadow: 0 0 10px -2px rgba(127, 123, 123, 0.9);
}

.about-box .about-main-icon i {
  color: #0a69de;
  font-size: 40px;
  transform: translateY(0);
  transition: ease-in-out 0.3s;
}

.about-box:hover .about-main-icon i {
  transform: translateY(-10px);
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.about-box h5 {
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #1f1f1f;
  transition: ease-in-out 0.3s;
}

.about-box:hover i, .about-box:hover h5 {
  color: #fff;
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.about-opacity-icon {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-opacity-icon i {
  position: absolute;
  color: #03b3cb;
  top: 30px;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  text-transform: capitalize;
  opacity: 0;
  animation: scale .6s alternate infinite linear both;
}

@keyframes scale {
  from {
      transform: translateY(0);
  }
  to {
      transform: translateY(-10px)
  }
}

.about-box:hover .about-opacity-icon i {
  opacity: .09;
}

.about-box.active {
  background-image: linear-gradient( 135deg, rgb(75, 51, 208) 0%, rgb(98, 58, 162) 100%);
  -webkit-box-shadow: 0 0 10px -2px rgba(127, 123, 123, 0.9);
  box-shadow: 0 0 10px -2px rgba(127, 123, 123, 0.9);
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.about-box.active i, .about-box.active h5 {
  color: #fff;
}

.about-box.active .about-opacity-icon i {
  opacity: .09;
}

.about-box.active:hover {
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(127, 123, 123, 0.1);
  box-shadow: 0 0 5px rgba(127, 123, 123, 0.1);
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.about-box.active:hover i{
  color: #0a69de;
}

.about-box.active:hover h5 {
  color: #1f1f1f;
}

.about-box.active:hover .about-opacity-icon i {
  opacity: .09;
}

.about-box.active.about-box-green {
  background: #fff;
  -webkit-box-shadow: 0 0 18px rgba(127, 123, 123, 0.5);
  box-shadow: 0 0 18px rgba(127, 123, 123, 0.5);
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.about-box.active.about-box-green i {
  color: #0a69de;
}

.about-box.active.about-box-green h5 {
  color: #1f1f1f;
}

.about-box.active.about-box-green .about-opacity-icon i {
  opacity: 0;
}

.about-box.active.about-box-green:hover {
  background-image: linear-gradient( 135deg, rgb(75, 51, 208) 0%, rgb(98, 58, 162) 100%);
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.about-box.active.about-box-green:hover i {
  color: #ffffff;
}

.about-box.active.about-box-green:hover h5 {
  color: #ffffff;
}

.about-box.active.about-box-green:hover .about-opacity-icon i {
  opacity: .09;
}

/* ===================================
       Timeline css
====================================== */
.timeline-sec{
  min-height: 300px;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
.timeline-sec .timeline-overlay{
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
}
.timeline-sec .timeline-heading{
  margin-bottom: 50px;
}
.timeline-sec .large-heading,.timeline-sec .sub-heading{
  color: #032a58;
}
.timeline-sec .fly-line{
  background-color: #032a58;
}

.timeline-sec .timeline-year{
  clear: both;
  padding-top: 50px;
  padding-bottom: 50px;
}
.timeline-sec .timeline-year:first-child{
  padding-top: 0;
  padding-bottom: 0;
}
.timeline-sec .timeline-year .t-year{
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #032a58;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.timeline-sec .timeline-year .t-year .heading{
  color: #FFFFFF;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}
.timeline-sec .timeline .timeline-block{
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  cursor: pointer;
  list-style: none;
  margin-bottom: 30px;
}
.timeline-sec .timeline .event-details{
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
  border-radius: 15px;
}
.timeline-sec .timeline .event-details .event-heading{
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.timeline-sec .timeline .event-details .text-des{
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  opacity: .8;
  margin-bottom: 15px;
  color: #ffffff;
}
.timeline-sec .timeline .event-details .event-time{
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}
.timeline-sec .timeline .event-details:hover{
  background-color: #032a58;
}
.timeline-sec .timeline .simple-timeline .event-details:hover:after{
  border-left: 14px solid #032a58;
}
.timeline-sec .timeline .inverse-timeline .event-details:hover:after{
  border-right: 14px solid #032a58;
}
.timeline-sec .timeline .simple-timeline .event-details:hover:before{
  background-color:  #032a58;
}
.timeline-sec .timeline .inverse-timeline .event-details:hover:before{
  background-color: #032a58;
}
.timeline-sec .timeline .simple-timeline .event-details:after{
  content: " ";
  height: 30px;
  width: 30px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 35px;
  border-top: 14px solid rgba(136, 136, 136, 0);
  border-left: 14px solid rgba(0, 0, 0, 0.35);
  border-bottom: 14px solid rgba(245, 245, 245, 0);
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
  display: none;
}
.timeline-sec .timeline .simple-timeline .event-details:before{
  content: " ";
  height: 20px;
  width: 20px;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  right: -12px;
  top: 41px;
  z-index: 1;
  border-radius: 50%;
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}
.timeline-sec .timeline .inverse-timeline .event-details:after{
  content: " ";
  height: 30px;
  width: 30px;
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 35px;
  border-top: 14px solid rgba(136, 136, 136, 0);
  border-right: 14px solid rgba(0, 0, 0, 0.35);
  border-bottom: 14px solid rgba(245, 245, 245, 0);
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
  display: none;
}
.timeline-sec .timeline .inverse-timeline .event-details:before{
  content: " ";
  height: 20px;
  width: 20px;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  left: -8px;
  top: 41px;
  z-index: 1;
  border-radius: 50%;
  -webkit-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}
.timeline-sec .timeline:after{
  content: " ";
  display: inline-block;
  width: 3px;
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
}
.timeline-sec .timeline .simple-timeline{
  padding-right: 50px;
  float: left;
  clear: left;
}
.timeline-sec .timeline .inverse-timeline{
  padding-left: 50px;
  margin-top: 60px;
  float: right;
  clear: right;

}
/* ===================================
       New Slider
====================================== */

        .hero-section {
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
        }
        .service-card {
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-member img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }
        .portfolio-item {
            margin-bottom: 30px;
            text-align: center;
        }
        .portfolio-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #032a58;
        }
        .slide-content {
            text-align: left;
            padding-left: 50px;
            max-width: 600px;
        }
        .slide-content h6 {
            text-align: left;
            margin-bottom: 15px;
        }
        .slide-content h2 {
            text-align: left;
            margin-bottom: 20px;
        }
        .slide-content p {
            text-align: left;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .slide-content {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
   
/* Accordion Styles for Experience Section */
.experience-section {
  padding: 80px 0;
  background-color: #eee;
}
.experience-text{
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
  color: #236e76;
  text-align: left;
  display: block;
}

.experience-heading {
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  color: #1f1f1f;
}
.experience-section h2 {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}
.experience-accordion {
  background: none;
  border: none;
  margin-top: 30px;
}
.experience-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: none;
}
.experience-accordion .accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 0px 10px;
  font-size: 16px;
  font-weight: 500;
  color: #16345c;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background .2s ease-in-out;
  border-bottom: 1px solid #f0f0f0;
}
.experience-accordion .accordion-item.active .accordion-header {
  background: #16345c;
  color: #fff;
}
.experience-accordion .accordion-icon {
  font-size: 1.6rem;
  font-weight: 400;
  margin-right: 18px;
  color: #08337a;
  transition: color 0.2s, transform 0.2s;
}
.experience-accordion .accordion-item.active .accordion-icon {
  color: #fff;
  transform: rotate(45deg);
}
.experience-accordion .accordion-title {
  font-weight: 700;
}
.experience-accordion .accordion-body {
  padding: 20px 30px;
  background: #f5f7f7;
  color: #7a7a7a;
  font-size: 1.2rem;
  display: none;
  border-top: none;
  transition: background 0.3s ease-in-out;
  /* border-bottom: 1px solid #f0f0f0; */
}

.experience-accordion .accordion-item.active .accordion-body {
  display: block;
}
@media (max-width: 600px) {
  .experience-accordion .accordion-header, .experience-accordion .accordion-body {
    padding: 16px 12px;
    font-size: 1rem;
  }
}

.experience-bg {
  min-height: 100%;
  background: url('../img/experience-bg.jpg') center center/cover no-repeat, #16345c;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .experience-bg {
    min-height: 300px;
  }
}

.experience-accordion .accordion-body ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.experience-accordion .accordion-body ul li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  color: #2d3a4b;
  text-align: left;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
  transition: background 0.2s, color 0.2s;
  border-radius: 4px;
}
.experience-accordion .accordion-body ul li:last-child {
  margin-bottom: 0;
}
.experience-accordion .accordion-body ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #0d6efd 60%, #00c6ff 100%);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(13,110,253,0.15);
}
.experience-accordion .accordion-body ul li:hover {
  background: #f5f7fa;
  color: #032a58;
}
