
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Ubuntu", sans-serif;
  color: #272829;
  background-color: #20262f;
}

/* .container {
  margin-left: 350px;
} */

a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

.btn-outline-info {
  color: var(--secondary-color);
  text-shadow: 0 0 10px var(--secondary-color);
  border-radius: 10px;
  border-top: 1px solid #ffffff67;
  border-left: 1px solid #ffffff6a;
  border-bottom: 1px solid #ffffff54;
  border-right: 1px solid #ffffff6a;
  transition: 0.3s;
}

.btn-outline-info:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--secondary-color);
  background-color: #051b3938;
  border-color: var(--primary-color);
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
}

:root {
  --primary-color: #149ddd;
  --secondary-color:#b5c7e1;
  --background-color: #20262f; 
  --font-H1: "Crimson Text", serif;
  --font-family:"Ubuntu", sans-serif;
}

hr.section-divider {
  /* Reset default styles */
  border: none; 
  /* Set height and background-color for a solid line */
  height: 2px; 
  background-color: #021620; /* Dark gray color */
  box-shadow: 0 0 15px var(--primary-color);
  width: 70%; 
  margin: 20px auto; /* Centers the line horizontally and adds vertical spacing */
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal-header {
  background-color: var(--background-color);
  color: var(--secondary-color);
  text-shadow: 0 0 10px var(--secondary-color);
  box-shadow: 2px 0 30px #050d1885;
}

.modal-footer {
  background-color: var(--background-color);
  color: var(--secondary-color);
  text-shadow: 0 0 10px var(--secondary-color);
  box-shadow: -2px 0 30px #050d1885;
}

.modal-content {
  border: 1.5px solid #ffffff7e;
  box-shadow: 0 0 12px #149dddad;
}

.modal-body {
  background-color: #20262f51;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 20px;
  left: 20px;
  bottom: 20px;
  width: 300px;
  border-radius: 30px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 10px 15px;
  background: #04122695;
  backdrop-filter: blur(8px);
  overflow-y: auto;
  box-shadow: 0 0 35px -3px #93d7f74b inset, 5px 5px 15px #00000069;
  border-top: 1px solid #149dddbb;
  border-bottom: 1px solid #149dddbb;
}

#header .profile img {
  margin: 20px auto;
  display: block;
  width: 120px;
  border: 6px solid #0289cd7d;
  box-shadow: 0px 0px 15px -1px #000000a5;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  -moz-text-align-last: center;
  text-align-last: center;
  color: var(--primary-color);
  text-shadow: 0 0 15px #149dddab;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #212431;
  /* color: #fff; */
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.6s;
}

#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 25px #149ddd;
  transition: 0.6s;
}

#main {
  margin-left: 350px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/* .nav-menu {
  padding: 30px 0 0 0;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
} */

.nav-menu {
  padding: 30px 0 0 0;
  display: flex;
  justify-content: center;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8a9b4;
  padding: 12px 15px;
  margin-bottom: 0x;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  text-shadow: 0 0 10px #ffffff;
  color: #fff;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: var(--primary-color);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/yusri.jpg") top center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 80px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -3px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-top: 30px;
  font-size: 45px;
  font-weight: 500;
}

#hero p span {
  color: #fff;
  padding: 4px;
  letter-spacing: 1px;
  background-color: #149dddbe;
  border-radius: 5px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 50px;
    line-height: 15px;
  }

  #hero p {
    margin-top: 15px;
    font-size: 30px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background: #515d73;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #949494;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #20262f;
}

.about .section-title h1 {
  font-size: clamp(30px, 3vw, 75px);
  font-weight: 600;
  letter-spacing: clamp(-1px, -3px, -4px);
  position: relative;
  color:var(--secondary-color);
  text-shadow: 0 0 20px #149ddd;
}

.about .section-title p{
  padding-top: 10px;
  color:var(--secondary-color);
  font-size: clamp(14px, 1vw, 16px);
}

/* @media (max-width:768px) {

  .about .section-title h1 {
    font-size: 30px;
    letter-spacing: -1px;
  }
  
} */

.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/* .about .count-box {
  padding: 50px;
  width: 100%;
  text-align: center;
  box-shadow: 0px 0 10px 2px #9dcbe884;
  border-radius: 20px;
}

.about .count-box span {
  font-size: 70px;
  line-height: 0px;
  display: block;
  font-weight: 700;
  color: #dce3ec;
}

.about .count-box p {
  margin: 30px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  color: #fafcff;
} */

.about .count-box {
  margin-top: 20px;
  padding: 30px;
  width: 100%;
  box-shadow: 1px 0px 15px 2px #9dcbe83c inset, 7px 7px 15px -2px #00000084, -2px -2px 4px #149ddd61;
  border-radius: 20px;
  border-top: 1px solid var(--primary-color);
  border-left: 1px solid var(--primary-color);

  /* Flexbox properties for centering */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: center; /* Center content vertically */
  align-items: center;     /* Center content horizontally */
}

.about .count-box span {
  font-size: 50px;
  line-height: 1; /* Reset line-height if it's causing issues, 0px is unusual */
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
  text-shadow: 0 0 20px #149ddd8a;
}

.about .count-box p {
  margin-top: 10px;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 18px;
  text-align: center;
  color: var(--primary-color);
}

/*-------------------------------------------------------------
# Core Strength
-------------------------------------------------------------*/
.circlebar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circleskill {
  width: 160px;
  height: 160px;
  position: relative;
  margin-bottom: 45px;
}

.circleskill .title {
  font-size: 15px;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 10px;
}

.outer {
  height: 160px;
  width: 160px;
  padding: 20px;
  box-shadow: 6px 6px 10px -1px #11151a, -6px -6px 10px -1px #2e3744;
  border-radius: 50%;
}

.inner {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 4px 4px 6px -1px #11151a, inset -4px -4px 6px -1px #2e3744, 0.5px 0.5px 0px #1f5699, 0 12px 10px -10px #0b57b4;
  border-radius: 50%;
}

.number {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 30px;
  line-height: 20px;
}

.percentage {
  font-weight: 400;
  font-size: 20px;
  align-self: center;
  color: var(--primary-color);
}

circle {
  fill: none;
  stroke: url(#GradientColor);
  stroke-width: 8px;
  stroke-dasharray: 450;
  stroke-dashoffset: var(--dashoffset, 450);
  animation: anim 2s linear forwards;
}

@keyframes anim {
  from {
    stroke-dashoffset: 450; /* Start from a full circle (not drawn) */
  }
  to {
    stroke-dashoffset: var(--dashoffset, 450); /* Animate to the value from the CSS variable */
  }
}

svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.coreheading {
  margin-bottom: 30px;
  font-size: clamp(30px, 2vw, 45px);
  font-weight: 600;
  letter-spacing: clamp(-1px, -3px, -4px);
  position: relative;
  color:var(--secondary-color);
  text-shadow: 0 0 20px #149ddd;
}

@media (max-width: 1024px) {
  .coreheading {
    display: flex;
    align-items:center;
    justify-content:center;
  }
}

/*--------------------------------------------------------------
# Career
--------------------------------------------------------------*/
.career {
  margin-top: 10px;
}

.career h1 {
  font-size: clamp(30px, 2vw, 45px);
  font-weight: 600;
  letter-spacing: clamp(-1px, -3px, -4px);
  position: relative;
  color:var(--secondary-color);
  text-shadow: 0 0 20px #149ddd;
}

/* @media (max-width: 1024px) {
  .career h1 {
    display: flex;
    align-items:center;
    justify-content:center;
  }
} */

.sub-content {
    padding-top: 1rem;
}

.main-content {
    align-items: center;
    justify-content: center;
}

.main-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.main-content h4 {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    text-shadow: 0 0 8px var(--primary-color);
    text-transform: uppercase;
}

.sub-content h5 {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
}

.sub-content p {
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

.cd-horizontal-timeline ol, .cd-horizontal-timeline ul {
    list-style: none;
}
.cd-timeline-navigation a:hover {
    border-color:#ffffff;
    box-shadow: 0 0 10px var(--secondary-color);
    transition: 1s;
}
.cd-horizontal-timeline a, .cd-horizontal-timeline a:hover, .cd-horizontal-timeline a:focus{ color:#ffffff;}

.cd-horizontal-timeline blockquote, .cd-horizontal-timeline q {
    quotes: none;
}
.cd-horizontal-timeline blockquote:before, .cd-horizontal-timeline blockquote:after,
.cd-horizontal-timeline q:before, .cd-horizontal-timeline q:after {
    content: '';
    content: none;
}
.cd-horizontal-timeline table {
    border-collapse: collapse;
    border-spacing: 0;
}
.cd-horizontal-timeline {
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
    margin-top: 20px;
}
.cd-horizontal-timeline::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}
.cd-horizontal-timeline.loaded {
    /* show the timeline after events position has been set (using JavaScript) */
    opacity: 1;
}
.cd-horizontal-timeline .timeline {
    position: relative;
    height: 100px;
    width: 100%;
    margin: 0 auto;
}
.cd-horizontal-timeline .events-wrapper {
    position: relative;
    height: 100%;
    margin: 0 40px;
    overflow: hidden;
}
.cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
    /* these are used to create a shadow effect at the sides of the timeline */
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}
.cd-horizontal-timeline .events-wrapper::before {
    left: 0;

}
.cd-horizontal-timeline .events-wrapper::after {
    right: 0;

}
.cd-horizontal-timeline .events {
    /* this is the white line/timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50px;
    height: 2px;
    /* width will be set using JavaScript */
    background: #03556791;
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    transition: transform 0.4s;
}
.cd-horizontal-timeline .filling-line {
    /* this is used to create the yellow line filling the timeline */
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}
.cd-horizontal-timeline .events a {
    position: absolute;
    bottom: 0;
    z-index: 2;
    text-align: center;
    font-size: 1rem;
    padding-bottom: 15px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}
.cd-horizontal-timeline .events a::after {
    /* this is used to create the event spot */
    content: '';
    position: absolute;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #dfdfdf;
    background-color: #f8f8f8;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    -moz-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s;
}
.no-touch .cd-horizontal-timeline .events a:hover::after {
    background-color: #313740;
    border-color: #313740;
}
.cd-horizontal-timeline .events a.selected {
    pointer-events: none;
}
.cd-horizontal-timeline .events a.selected::after {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px 2px #38c0ff;
}
.cd-horizontal-timeline .events a.older-event::after {
    border-color: var(--secondary-color);
    background-color: var(--primary-color);
}
@media only screen and (min-width: 1100px) {
    .cd-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}

.cd-timeline-navigation a {
    /* these are the left/right arrows to navigate the timeline */
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 2px 2px 5px 1px #050d18, -2px -2px 5px 1px #173761;
    /* replace text with an icon */
    overflow: hidden;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    transition: border-color 0.3s;
}
.cd-timeline-navigation a::after {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(../img/cd-arrow.svg) no-repeat 0 0;
}
.cd-timeline-navigation a.prev {
    left: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}
.cd-timeline-navigation a.next {
    right: 0;
}
.no-touch .cd-timeline-navigation a:hover {
    border-color: #da1d1d;
}
.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}
.cd-timeline-navigation a.inactive::after {
    background-position: 0 -16px;
}
.no-touch .cd-timeline-navigation a.inactive:hover {
    border-color: #dfdfdf;
}

.cd-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    height: auto;
    margin: 2em 0;
    overflow: hidden;
    -webkit-transition: height 0.4s;
    -moz-transition: height 0.4s;
    transition: height 0.4s;
}
.cd-horizontal-timeline .events-content li {
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-animation-duration: 0.4s;
    -moz-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content li.selected {
    /* visible event content */
    position: relative;
    z-index: 2;
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
    -webkit-animation-name: cd-enter-right;
    -moz-animation-name: cd-enter-right;
    animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-name: cd-enter-left;
    -moz-animation-name: cd-enter-left;
    animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
    -webkit-animation-direction: reverse;
    -moz-animation-direction: reverse;
    animation-direction: reverse;
}
.cd-horizontal-timeline .events-content li > * {
    margin: 0 auto;
}

.cd-horizontal-timeline .events-content em::before {
    content: '- ';
}

@media only screen and (min-width: 768px) {

    .cd-horizontal-timeline .events-content em {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    .cd-horizontal-timeline.loaded{ margin: 0;}
    .cd-horizontal-timeline .timeline{ width: 100%;}
    .cd-horizontal-timeline ol, .cd-horizontal-timeline ul{padding: 0;margin: 0;}
    .cd-horizontal-timeline .events-content h4{ font-size: 16px;}
    .cd-horizontal-timeline .events-content{ margin: 0;}
}

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -moz-transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}
@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0%);
    }
}
@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
.timeline:before{
    content: " ";
    display:none;
    bottom: 0;
    left: 0;
    width: 0;
    margin-left: -1.5px;
    background-color: #eeeeee;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: #149ddd;
  float: left;
  line-height: 0;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# skills
--------------------------------------------------------------*/
.skills .section-title h1 {
  font-size: clamp(30px, 3vw, 75px);
  font-weight: 600;
  letter-spacing: clamp(-1px, -3px, -4px);
  position: relative;
  color:var(--secondary-color);
  text-shadow: 0 0 20px #149ddd;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

.skills .casebox {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 1px 0px 15px 2px #9dcbe83c inset, 7px 7px 15px -2px #00000084, -2px -2px 4px #149ddd61;
  border-radius: 20px;
  border-top: 1px solid var(--primary-color);
  border-left: 1px solid var(--primary-color);
  border-bottom: 1px solid #ffffff54;
  border-right: 1px solid #ffffff6a;
}

.casebox p {
  color: var(--primary-color);
  padding: 0px 20px 15px 20px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  text-shadow: 0px 0px 10px var(--primary-color);
  letter-spacing: 1px;
}

.casebox .contentbox {
  text-align: justify;
  color: var(--secondary-color);
  padding: 0 25px 0 25px;
  margin-bottom: 20px;
  font-size: clamp(14px, 1vw, 16px);
}

.casebox .btncase {
  padding: 0px 20px 15px 20px;
}

.skills .imgcasebox {
  padding: 20px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: auto;
  width: 100%;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .section-title h1 {
  font-size: clamp(30px, 3vw, 75px);
  font-weight: 600;
  letter-spacing: clamp(-1px, -3px, -4px);
  position: relative;
  color:var(--secondary-color);
  text-shadow: 0 0 20px #149ddd;
}

.portfolio .section-title p{
  padding-top: 10px;
  color:var(--secondary-color);
  font-size: clamp(14px, 1vw, 16px);
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 20px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 1px solid var(--secondary-color);
  box-shadow: 0px 0 12px inset #149ddd90;
}

.portfolio .imgcasebox {
  padding: 20px;
  border-radius: 35px;
  overflow: hidden;
  position: relative;
  /* z-index: 1; */
  height: auto;
  width: 100%;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.727));
  display: block;
}

.portfolio-wrap:hover .overlay {
  opacity: 1;
  transition: 0.3s;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: #008bbadf;
  padding: 20px;
}

.text {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px #000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.portfolio .portfolio-wrap::after {
  content: "";
  background: rgb(255, 0, 0);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #37b3ed;
}

.portfolio .portfolio-wrap:hover {
  background: rgba(20, 157, 221, 0.482);
  box-shadow: 0 0 12px #00ddff87;
  transition: 0.3s;
}

/*.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
} */

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .section-title h1 {
  font-size: clamp(30px, 3vw, 75px);
  font-weight: 600;
  letter-spacing: clamp(-1px, -3px, -4px);
  position: relative;
  color:var(--secondary-color);
  text-shadow: 0 0 20px #149ddd;
}

.services p{
  color: var(--secondary-color);
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #149ddd87;
  box-shadow: 0px 0 8px inset #149dddb7, 0 0 15px #010b16;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
  transition: 0.5s;
}

.services .icon-box:hover .icon {
  box-shadow: 0px 0 15px inset #149ddde6, 0 0 10px #ffffffd9, 0 0 25px #023e7e;
  border-color: #fff;
  transition: 0.5s;
}

.services .icon-box:hover .icon i {
  color: #149ddd;
  transition: 0.5s;
}

.services .title {
  color: var(--primary-color);
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: #149ddd;
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 600px;
}

@media (max-width: 768px) {
  .contact {
    padding-bottom: 0;
  }
}

.contact .section-title h1 {
  font-size: clamp(30px, 3vw, 75px);
  font-weight: 600;
  letter-spacing: clamp(-1px, -3px, -4px);
  position: relative;
  color:var(--secondary-color);
  text-shadow: 0 0 20px #149ddd;
}

.contact p{
  color: var(--secondary-color);
  margin-bottom: 0;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #eb8c0f;
  float: left;
  width: 44px;
  height: 44px;
  background: #18344e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #149ddd;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #18344e;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  border-top: 2px solid var(--primary-color);
  border-bottom: 1px solid var(--secondary-color);
  box-shadow: 0px 0 20px inset #149ddd5b, 0 0 15px #010b16;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

/* .contact .form-control {
  background-color: #0b57b4;
  border-color: #149ddd;
  border-radius: 50px;
} */


.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  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 #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 10px;
  border-top: 1px solid var(--primary-color);
  border-right: 1px solid #056eee59;
  border-bottom: 1px solid #b5c7e188;
  border-left: 1px solid #b5c7e154;
  box-shadow: 0px 0 10px #149ddd7e, 0 0 15px #010b16;
  font-size: 14px;
  color:var(--secondary-color);
  background-color: var(--background-color);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #000;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form .btn{
  background-color: var(--primary-color);
  color:var(--secondary-color);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px var(--background-color);
}

.contact .php-email-form button[type=submit]:hover {
  background: #ed3737;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 50px;
  margin-left: 20px;
  color: #f4f6fd;
  font-size: 12px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
}

#footer .copyright {
  text-align: center;
  letter-spacing: 0.5px;
}

.copyright .date {
  color: var(--primary-color);
  font-weight: 800;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 14px;
}

#footer .credits a{
  color: var(--secondary-color);
  transition: 0.3s;
}

#footer .credits a:hover{
  color: var(--primary-color);
  text-shadow: 0 0 5px var(--primary-color);
  transition: 0.3s;
}

@media (max-width: 1440px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}