/*-------------------------------------------------
  Fonts Family & Style CSS
---------------------------------------------------*/
/*--  Poppins font  --*/
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Poppins, sans-serif";
  src: url("../fonts/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/*-------------------------------------------------
  Common Style CSS
---------------------------------------------------*/
body {
  font-size: 14px;
  color: #777;
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-family: "Poppins, sans-serif";
  font-weight: 400;
  top: 0 !important;
  background-image: url(../img/designs/main-bg.png);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-color: rgba(247, 247, 247, 0.9);
  overflow-x: hidden;
  background-blend-mode: overlay;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0.02rem;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins, sans-serif";
  position: relative;
  color: #222;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

ul li a {
  text-decoration: none;
}

p {
  font-size: 16px;
  color: #555;
  line-height: 26px;
}

.section-title {
  position: relative;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 40px;
  padding: 50px 0;
  font-size: 36px;
  line-height: 29px;
  font-weight: 700;
}

.section-title h2 span {
  color: #716fff;
}

.section-title .ligh-title {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font-size: 130px;
  font-weight: 700;
  color: #f5f5f5;
  line-height: 60px;
  text-shadow: 5px -5px 10px #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000,
    1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
  opacity: 0.05;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

#ms-overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#ms-overlay .ms-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

#ms-overlay .ms-roller div {
  -webkit-animation: ms-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: ms-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
}

#ms-overlay .ms-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #555;
  margin: -4px 0 0 -4px;
}

#ms-overlay .ms-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
  animation-delay: -0.036s;
}

#ms-overlay .ms-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

#ms-overlay .ms-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
  animation-delay: -0.072s;
}

#ms-overlay .ms-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

#ms-overlay .ms-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
  animation-delay: -0.108s;
}

#ms-overlay .ms-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

#ms-overlay .ms-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
  animation-delay: -0.144s;
}

#ms-overlay .ms-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

#ms-overlay .ms-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
}

#ms-overlay .ms-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

#ms-overlay .ms-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
  animation-delay: -0.216s;
}

#ms-overlay .ms-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

#ms-overlay .ms-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
  animation-delay: -0.252s;
}

#ms-overlay .ms-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

#ms-overlay .ms-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
  animation-delay: -0.288s;
}

#ms-overlay .ms-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@-webkit-keyframes ms-roller {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes ms-roller {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/**  Section spacing  **/
.margin-t-80 {
  margin-top: 80px;
}

.margin-b-50 {
  margin-bottom: 50px;
}

.padding-tb-80 {
  padding: 80px 0;
}

.m-b-minus-30px {
  margin-bottom: -30px;
}

.m-tb-minus-15px {
  margin-top: -15px;
  margin-bottom: -15px;
}

.ms-learn-more-left {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 40px;
  margin-right: 130px;
  color: #555;
  position: relative;
  padding-left: 50px;
}

.ms-learn-more-left .text {
  font-family: "Poppins, sans-serif";
  font-style: italic;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.ms-learn-more-left .ring-left {
  margin-left: -20px;
}

.ms-learn-more-left .arrow-left {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 3px;
  left: 0;
}

.ms-learn-more-left:hover {
  color: #555;
}

.ms-learn-more-left:hover .arrow-left {
  margin-left: -5px;
}

.ms-learn-more-right {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 40px;
  margin-left: 130px;
  color: #333;
  position: relative;
}

.ms-learn-more-right .text {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px 30px 10px 15px;
  font-family: "Poppins, sans-serif";
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  border-right: 1px solid transparent;
  border-radius: 30px;
}

.ms-learn-more-right .text span {
  z-index: 5;
}

.ms-learn-more-right .text::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: -9px;
  left: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #f5f5f5;
  border-radius: 30px;
  z-index: -1;
}

.ms-learn-more-right .text:after {
  content: "";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 20px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0;
}

.ms-learn-more-right .ring-left {
  margin-right: -20px;
  margin-top: -2px;
}

.ms-learn-more-right:hover {
  color: #333;
}

.ms-learn-more-right:hover .text {
  font-size: 15px;
}

.ms-learn-more-right:hover .text:after {
  right: -10px;
  opacity: 0;
}

/* Back to top */
.progress-wrap {
  position: fixed;
  right: 15px;
  bottom: 65px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #f8f8f9;
}

.progress-wrap i {
  position: absolute;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: #ff6f91;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:before {
  position: absolute;
  font-family: "unicons";
  content: "\e84b";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, var(--red), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover:after {
  opacity: 0;
}

.progress-wrap:hover:before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #ff6f91;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*===== Header css =====*/
header {
  position: relative;
  z-index: 5;
}

header nav {
  position: relative;
}

header nav a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px;
  position: fixed;
  top: 50px;
  right: 50px;
  background: #07091c;
  border-radius: 15px;
  cursor: pointer;
  opacity: 0.7;
}

header nav a .svg_img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 30px;
  height: 30px;
}

header nav a:hover {
  opacity: 1;
}

header nav a:hover .svg_img {
  width: 35px;
  height: 35px;
}

/* End Header */
/*-------------------------------------------------
 Hero Style CSS
---------------------------------------------------*/
.ms-hero {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.ms-hero .ms-diamond-1 {
  width: 80px;
  height: 100px;
  position: absolute;
  left: 22%;
  top: 15%;
  background-image: url("../img/designs/1.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.ms-hero .ms-diamond-2 {
  width: 81px;
  height: 86px;
  position: absolute;
  left: 15%;
  bottom: 20%;
  background-image: url("../img/designs/2.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: rotateshape 15s linear infinite;
  animation: rotateshape 15s linear infinite;
}

.ms-hero .ms-diamond-3 {
  width: 36px;
  height: 37px;
  position: absolute;
  left: 31%;
  bottom: 5%;
  background-image: url("../img/designs/3.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.ms-hero .ms-diamond-4 {
  width: 82px;
  height: 78px;
  position: absolute;
  right: 20%;
  top: 75%;
  background-image: url("../img/designs/4.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.ms-hero .ms-diamond-5 {
  width: 61px;
  height: 64px;
  position: absolute;
  right: 24%;
  top: 13%;
  background-image: url("../img/designs/5.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@-webkit-keyframes rotateshape {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateshape {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ms-hero .hero-content {
  margin: 90px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.ms-hero .hero-content .hero-item {
  padding: 60px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.ms-hero .hero-content .ms-hero-detail {
  max-width: 300px;
  text-align: right;
}

.ms-hero .hero-content .ms-hero-detail .ms-hero-title {
  margin: -70px -110px 30px 0;
  letter-spacing: 0.02rem;
  font-size: 56px;
  font-weight: 800;
  z-index: 5;
}

.ms-hero .hero-content .ms-hero-detail .ms-hero-title span {
  max-width: 400px;
  display: -ms-inline-grid;
  display: inline-grid;
}

.ms-hero .hero-content .ms-hero-detail .ms-hero-title .name {
  color: #6866e9;
}

.ms-hero .hero-content .ms-hero-detail .ms-hero-detail {
  margin-bottom: 30px;
  text-align: right;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.ms-hero .hero-content .ms-hero-img {
  max-width: 350px;
  margin: 0 30px;
}

.ms-hero .hero-content .ms-hero-img .ms-card {
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.ms-hero .hero-content .ms-hero-img .ms-card img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.ms-hero .hero-content .ms-hero-img .ms-card:hover {
  -webkit-box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.ms-hero .hero-content .ms-hero-img .ms-card:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.ms-hero .hero-content .ms-hero-name {
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}

.ms-hero .hero-content .ms-hero-name h3 {
  margin-bottom: 0;
  padding-bottom: 15px;
  font-size: 46px;
  font-weight: 200;
  line-height: 52px;
  position: relative;
}

.ms-hero .hero-content .ms-hero-name h3:after {
  content: "";
  width: 105px;
  height: 7px;
  background-color: #ff6f91;
  position: absolute;
  bottom: 0;
  left: 0;
}

.ms-hero .hero-content .ms-hero-name h3 span {
  max-width: 300px;
  display: -ms-inline-grid;
  display: inline-grid;
}

.ms-hero .hero-content .art {
  width: 18px;
  height: 190px;
  background-image: url(../img/designs/6.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 30px;
  right: 370px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: MovesUpDown 5s linear infinite;
  animation: MovesUpDown 5s linear infinite;
}

@-webkit-keyframes MovesUpDown {
  0%,
  100% {
    bottom: -180px;
  }

  50% {
    bottom: -150px;
  }
}

@keyframes MovesUpDown {
  0%,
  100% {
    bottom: -180px;
  }

  50% {
    bottom: -150px;
  }
}

/**  On click scroll  **/
.scroll-next {
  width: 170px;
  height: 65px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  display: block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  cursor: pointer;
}

@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.ms-container .menu {
  display: inline-block;
  width: 200px;
  height: 200px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  color: #000;
}

.ms-container .circle {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: transparent;
  border: 1px solid #d8cfc3;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 4;
}

.ms-container .text {
  position: absolute;
  top: 43%;
  left: -14px;
  display: inline-block;
  z-index: 10;
  width: 100%;
  text-align: center;
  margin-top: -9px;
  font-size: 14px;
  font-family: "Poppins, sans-serif";
  text-transform: uppercase;
  background: #f6f6f6;
  line-height: 16px;
  font-weight: 400;
}

.ms-container .text:after {
  content: "";
  width: 50px;
  height: 50px;
  margin: auto;
  background-image: url("../img/designs/scroll-arrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
}

/*===== About css =====*/
.ms-about-detail h4 {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Poppins, sans-serif";
  color: #333;
}

.ms-about-detail .ms-text {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
  font-family: "Poppins, sans-serif";
  font-weight: 400;
  line-height: 28px;
}

.ms-about-info {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.ms-about-info ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

.ms-about-info ul li {
  padding: 20px 0;
  font-size: 16px;
  line-height: 20px;
  color: #555;
  font-family: "Poppins, sans-serif";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #dfdfdf;
}

.ms-about-info ul li:first-child {
  border-top: 1px dashed #dfdfdf;
}

.ms-about-info ul li span {
  display: block;
}

.ms-about-info ul li .title {
  min-width: 110px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #333;
  font-weight: 550;
  position: relative;
}

.ms-about-info ul li b {
  margin-right: 10px;
  color: #333;
  font-weight: 600;
  position: absolute;
  right: 0;
}

.ms-skill-progress {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ms-about .ms-box {
  margin-bottom: 30px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.ms-about .ms-box:before {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -38%;
  right: -15%;
  border-radius: 50%;
}

.ms-about .ms-box:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -15%;
  right: -32%;
  border-radius: 50%;
}

.ms-about .ms-box:hover:before {
  top: -43%;
  right: -10%;
}

.ms-about .ms-box:hover:after {
  top: -10%;
  right: -37%;
}

.ms-about .ms-box p {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: #777;
  line-height: 24px;
}

.ms-about .ms-box h3 {
  font-size: 20px;
  color: #333;
}

.ms-about .ms-box .progress {
  width: 80px;
  height: 80px;
  background: transparent;
  display: inline-block;
  margin-bottom: 20px;
  z-index: 3;
}

.ms-about .ms-box .progress .track,
.ms-about .ms-box .progress .fill {
  -webkit-transform: rotate(90deg) translate(0px, -80px);
  transform: rotate(90deg) translate(0px, -80px);
  stroke-width: 6;
  fill: rgba(0, 0, 0, 0);
}

.ms-about .ms-box .progress .track {
  stroke-width: 6;
  stroke: #ddd !important;
}

.ms-about .ms-box .progress .fill {
  stroke: #716fff;
}

.ms-about .ms-box .progress .fill {
  stroke-dasharray: 219.9907836914;
  stroke-dashoffset: -219.9907836914;
  -webkit-transition: stroke-dashoffset 1s;
  transition: stroke-dashoffset 1s;
  stroke-width: 10;
}

.ms-about .ms-box .progress .value {
  fill: #716fff;
  font-size: 20px;
  text-anchor: middle;
  font-weight: 600;
}

.ms-about .ms-box .progress.active .fill {
  stroke: #ff6f91;
}

.ms-about .ms-box .progress.active .value {
  fill: #ff6f91;
}

/*===== Service css =====*/
.service-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.service-box .main-box {
  position: relative;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
}

.service-box .main-box:hover .box-front {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.service-box .main-box:hover .box-back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.service-box .main-box .box-front {
  text-align: center;
  z-index: 1;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: inherit;
  perspective: inherit;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.38);
  transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3),
    -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  border-radius: 15px;
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  background-color: transparent;
  background: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  position: relative;
}

.service-box .main-box .box-front:before {
  content: "";
  width: 23px;
  height: 42px;
  position: absolute;
  left: 15%;
  bottom: 5%;
  -webkit-transform: rotate(248deg);
  transform: rotate(248deg);
  background-image: url(../img/designs/7.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.service-box .main-box .box-front:after {
  content: "";
  width: 38px;
  height: 40px;
  position: absolute;
  right: 1%;
  top: 5%;
  -webkit-transform: rotate(248deg);
  transform: rotate(248deg);
  background-image: url(../img/designs/3.png);
  background-repeat: no-repeat;
}

.service-box .main-box .box-back {
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 1;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: inherit;
  perspective: inherit;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.38);
  transition: -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3),
    -webkit-transform 0.8s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  border-radius: 15px;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background-color: #716fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service-box .flipper {
  position: relative;
  padding: 15px 0;
}

.service-box .flipper:hover .box-front {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
  -webkit-transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
}

.service-box .flipper:hover .box-back {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 1s cubic-bezier(0.5, 1, 0.5, 1);
  -webkit-transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
  transition: all 1s cubic-bezier(0.5, 1.3, 0.5, 1.3);
}

.flipper .content-wrap .icon {
  position: relative;
}

.flipper .content-wrap .icon:before {
  content: "";
  width: 100px;
  height: 100px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-animation: morphing-image 15s linear infinite forwards;
  animation: morphing-image 15s linear infinite forwards;
}

.flipper .content-wrap .svg_img {
  width: 50px;
  height: 50px;
  margin: 0 0 15px 0;
  position: relative;
}

.flipper .content-wrap .svg_img path {
  fill: #716fff;
}

@-webkit-keyframes morphing-image {
  0% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }

  10% {
    border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
  }

  20% {
    border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
  }

  30% {
    border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
  }

  40% {
    border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
  }

  50% {
    border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
  }

  60% {
    border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
  }

  70% {
    border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
  }

  80% {
    border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
  }

  90% {
    border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
  }

  100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}

@keyframes morphing-image {
  0% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }

  10% {
    border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
  }

  20% {
    border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
  }

  30% {
    border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
  }

  40% {
    border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
  }

  50% {
    border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
  }

  60% {
    border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
  }

  70% {
    border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
  }

  80% {
    border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
  }

  90% {
    border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
  }

  100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}

.main-box .content-wrap {
  width: 100%;
  display: block;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: inherit;
  perspective: inherit;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 30px;
  -webkit-transform: translate3d(0, 0, 50px) scale(0.9);
  transform: translate3d(0, 0, 50px) scale(0.9);
}

.box-front .content-wrap h3 {
  margin-bottom: 15px;
  color: #333;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.box-front .content-wrap p {
  margin: 0;
  color: #555;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

.box-front .bg-img {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  border-radius: 0 30px 0 0;
}

.box-front .bg-img path {
  fill: #333;
}

.box-back .content-wrap h3 {
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
  margin-top: 0;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.box-back .content-wrap p {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
}

.box-back .btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 6px 15px;
  font-size: 14px;
  letter-spacing: 0.05rem;
  margin-top: 15px;
  font-weight: 500;
  border-radius: 0 20px 0 0;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
}

.box-back .btn:hover {
  background-color: #fff;
  color: #333;
}

.content-wrap p {
  margin-bottom: 10px;
  text-align: left;
}

/* End Service Section */
/*===== Resume css (EXPERIENCE & EDUCATION)=====*/
.education h4,
.experiense h4 {
  margin-bottom: 50px;
  font-size: 23px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Poppins, sans-serif";
  color: #333;
  text-align: center;
}

.ms-experience .timeline {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
  list-style: none;
  position: relative;
}

.ms-experience .timeline .timeline-item {
  position: relative;
}

.ms-experience .timeline li {
  margin: 0 0 48px 0;
  padding: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
}

.ms-experience .timeline li:last-child {
  margin: 0;
}

.ms-experience .timeline li .timeline-info {
  margin-top: -40px;
  margin-bottom: 30px;
}

.ms-experience .timeline li .timeline-info span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 10px 15px;
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
}

.ms-experience .timeline li:hover .timeline-info span {
  background: #ff6f91;
  color: #fff;
}

.timeline-info span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.timeline-item:last-child,
.timeline-item:after {
  content: none;
}

.timeline-content .timeline-title {
  margin-top: 15px;
  color: #ff6f91;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}

.timeline-content .timeline-title .sub {
  margin-left: 15px;
  color: #777;
  font-size: 14px;
}

.timeline-content p {
  margin-bottom: 0;
  font-size: 14px;
  color: #555;
}

/** Start Portfolio Section **/
.ms-portfolio .section-title .ligh-title {
  -webkit-transform: translateY(-63%);
  transform: translateY(-63%);
}

.portfolio-tabs {
  margin-bottom: 50px;
  text-align: center;
}

.portfolio-tabs ul {
  padding-left: 0;
}

.portfolio-tabs ul li {
  display: inline-block;
  cursor: pointer;
  padding: 0 10px;
  font-weight: 600;
  margin: 0px 10px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-transform: uppercase;
  color: #333;
  font-size: 16px;
  line-height: 11px;
}

.portfolio-tabs ul li:hover {
  color: #716fff;
}

li.mixitup-control-active {
  color: #ff6f91 !important;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
}

.fancybox-image {
  padding: 0 15px;
}

.ms-project-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  cursor: default;
  border-radius: 15px;
  background: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

.ms-project-box h3 {
  color: #333;
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
}

.ms-project-box .links {
  margin-bottom: 10px;
  color: #999;
}

.ms-project-box a {
  font-size: 14px;
  color: #999;
  font-weight: 300;
}

.ms-project-box a:hover {
  color: #716fff;
}

.ms-project-box p {
  font-size: 14px;
}

.ms-project-box p a {
  color: #ff6f91;
}

.ms-project-box .ms-info {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ms-project-box img {
  display: block;
  position: relative;
}

.ms-project-box .portfolio-img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 200px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
}

.ms-project-box .portfolio-img a {
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  background-size: 200px;
  background-position: center;
  background-attachment: inherit;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}

.ms-project-box .portfolio-img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ms-project-box .portfolio-img .overlay {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  opacity: 0;
}

.ms-project-box:hover .portfolio-img {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ms-project-box:hover .portfolio-img img {
  -webkit-transform: rotate(-5deg) scale(1.2);
  transform: rotate(-5deg) scale(1.2);
}

.ms-project-box:hover .portfolio-img .overlay {
  opacity: 1;
}

.ms-project-box:hover a.info {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.ms-project-box a.info {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 15px;
}

.ms-project-box a.info:hover {
  background-color: #fff;
  color: #716fff;
}

.ms-project-box a.info {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  opacity: 0;
  color: #fff;
}

.ms-project-box .ms-detail {
  padding-left: 30px;
}

.ms-project-box .ms-detail ul {
  margin: 0;
  padding: 0;
}

.ms-project-box .ms-detail ul li {
  padding: 5px 0;
}

.fancybox-progress {
  background: #716fff;
}

/** End Portfolio Section **/
/*===== Counter =====*/
.achive .count-block {
  width: 100%;
  margin: 12px 0;
  padding: 30px 15px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

.achive .count-block:hover .counter-icon {
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}

.achive .count-block:before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  right: -15%;
  top: -13%;
  -webkit-transform: rotate(248deg);
  transform: rotate(248deg);
  background-image: url(../img/designs/4.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.achive .count-block .counter-icon {
  width: 64px;
  height: 64px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: -15px;
  opacity: 0.05;
}

.achive .count-block .counter-icon path {
  fill: #333;
}

.achive .count-block h3 {
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  font-family: "Poppins, sans-serif";
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  color: #555;
}

.achive .count-block .active-num {
  color: #716fff;
}

.achive .count-block p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  color: #555;
  font-family: "Poppins, sans-serif";
  font-weight: 400;
}

/** News | Blogs Section **/

/* Carousel Container */
/* Gallery Container */
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Carousel Track - Duplicate items for seamless loop */
.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: seamlessScroll 40s linear infinite;
}

/* Pause only on hover over individual items */
.gallery-item:hover ~ .carousel-track,
.gallery-item:hover {
  animation-play-state: paused;
}

.carousel-track:hover {
  animation-play-state: paused;
}

/* Gallery Item */
.gallery-item {
  flex: 0 0 350px;
  width: 350px;
}

.news-info {
  background: #fff;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
}

.news-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Image */
.news-img {
  width: 100%;
  height: 220px;
  margin: 0 0 20px 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.news-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(113, 111, 255, 0);
  transition: all 0.4s ease;
  pointer-events: none;
}

.news-info:hover .news-img::after {
  background: rgba(113, 111, 255, 0.1);
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-info:hover .news-img img {
  transform: scale(1.15) rotate(-3deg);
}

/* Details */
.detail {
  position: relative;
}

.detail label {
  font-size: 13px;
  color: #999;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.news-info:hover .detail label {
  color: #716fff;
}

.detail label a {
  color: #716fff;
  text-decoration: none;
  font-weight: 600;
}

.detail h3 {
  margin: 0 0 15px 0;
  font-size: 18px;
  line-height: 1.5;
}

.detail h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-info:hover .detail h3 a {
  color: #716fff;
}

.more-info a {
  color: #ff6f91;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.more-info a::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.more-info a:hover {
  color: #716fff;
  gap: 10px;
}

.more-info a:hover::after {
  transform: translateX(5px);
}

/* Seamless Scroll Animation - moves exactly one set of items */
@keyframes seamlessScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-350px * 9 - 270px));
  }
}

/* Hover indicator */
.hover-hint {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #999;
  font-style: italic;
}

.hover-hint svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 280px;
    width: 280px;
  }

  .news-img {
    height: 180px;
  }

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

  .section-title .ligh-title {
    font-size: 60px;
  }

  .detail h3 {
    font-size: 16px;
  }

  @keyframes seamlessScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-280px * 9 - 270px));
    }
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 0 0 250px;
    width: 250px;
  }

  .news-info {
    padding: 18px;
  }

  .news-img {
    height: 160px;
  }

  @keyframes seamlessScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-250px * 9 - 270px));
    }
  }
}

/** End News | Blogs Section **/
/** Start Contact Section **/
.ms-contact .section-title .ligh-title {
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
}

.ms-contact iframe {
  width: 100%;
  height: 308px;
  margin-bottom: -7px;
  border-radius: 30px;
}

.ms-contact form .form-group {
  margin-bottom: 30px;
}

.ms-contact form .form-group input,
.ms-contact form .form-group textarea {
  padding: 15px;
  border-color: #dfdfdf;
  border-radius: 15px;
  font-size: 15px;
  color: #555;
}

.ms-contact form .form-group input:focus,
.ms-contact form .form-group textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ms-contact form .form-group input::-webkit-input-placeholder,
.ms-contact form .form-group textarea::-webkit-input-placeholder {
  color: #999;
}

.ms-contact form .form-group input::-moz-placeholder,
.ms-contact form .form-group textarea::-moz-placeholder {
  color: #999;
}

.ms-contact form .form-group input:-ms-input-placeholder,
.ms-contact form .form-group textarea:-ms-input-placeholder {
  color: #999;
}

.ms-contact form .form-group input::-ms-input-placeholder,
.ms-contact form .form-group textarea::-ms-input-placeholder {
  color: #999;
}

.ms-contact form .form-group input::placeholder,
.ms-contact form .form-group textarea::placeholder {
  color: #999;
}

.ms-contact form button {
  height: auto;
  margin: 10px 0 0 0;
  border: 0;
  background: transparent;
}

.ms-contact .ms-box {
  margin-bottom: 30px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.ms-contact .ms-box:before {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -65%;
  right: -2%;
  border-radius: 50%;
}

.ms-contact .ms-box:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.06);
  position: absolute;
  top: -15%;
  right: -23%;
  border-radius: 50%;
}

.ms-contact .ms-box:hover:before {
  top: -70%;
  right: -10%;
}

.ms-contact .ms-box:hover:after {
  top: -38%;
  right: -20%;
}

.ms-contact .ms-box .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ms-contact .ms-box .info h3 {
  font-size: 16px;
}

.ms-contact .ms-box p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.ms-contact .ms-box .icon {
  min-width: 70px;
  width: 70px;
  height: 70px;
  margin: 0 15px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #dfdfdf;
  -webkit-animation: morphing-image 15s linear infinite forwards;
  animation: morphing-image 15s linear infinite forwards;
}

.ms-contact .ms-box .icon i {
  font-size: 25px;
  color: #333;
}

/** End Contact Section **/
/*===== Clients css =====*/
.ms-client {
  display: block;
}

.ms-client .ms-client-outer ul {
  padding: 0;
  margin: -15px;
}

.ms-client-item {
  display: block !important;
}

.ms-client-item .ms-client-img {
  padding: 15px;
}

.ms-client-item img {
  width: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 15px;
  cursor: pointer;
  outline: 0;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
}

/*===== Footer css =====*/
footer {
  background: #07091c;
}

footer .ms-footer-detail {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #8285ad;
}

footer .ms-footer-detail a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #ff6f91;
}

footer .ms-footer-detail a:hover {
  color: #716fff;
}

footer .ms-footer-detail .ms-social ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .ms-footer-detail .ms-social ul li {
  margin-left: 5px;
}

footer .ms-footer-detail .ms-social ul li a {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ff6f91;
  color: #fff;
  border-radius: 30px;
}

footer .ms-footer-detail .ms-social ul li a:hover {
  background: #716fff;
}

/*===== Sidebar css =====*/
.ms-sidebar-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 16;
}

.ms-open {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

.ms-sidebar {
  width: 250px;
  height: 100%;
  padding: 30px;
  font-size: 14px;
  font-weight: 400;
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  background-color: #07091c;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: auto;
  opacity: 1;
  z-index: 16;
}

.ms-sidebar:before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  left: 15%;
  bottom: 5%;
  -webkit-transform: rotate(248deg);
  transform: rotate(248deg);
  background-image: url(../img/designs/2.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.ms-sidebar .menu-list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ms-sidebar .menu-list .close-sidebar {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 35px;
  color: #ff6f91;
}

.ms-sidebar ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ms-sidebar ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 60px;
  padding-left: 30px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.ms-sidebar ul li a:hover {
  color: #ff6f91;
}

.ms-sidebar ul li a:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #fff;
}

.ms-sidebar ul li a:focus {
  color: #716fff;
}

.ms-sidebar ul li.active a {
  padding-left: 40px !important;
  color: #716fff;
  font-size: 25px;
}

.ms-sidebar ul li.active a:hover {
  color: #ff6f91;
}

.ms-sidebar ul li.active a:after {
  width: 25px;
}

/* End Sidebar */
/*===== Whatsapp direct chat css =====*/
.ms-style {
  display: inline-block;
  position: fixed;
  letter-spacing: 0.1px;
  z-index: 13;
}

.ms-style .ms-button {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 30px;
}

.ms-style .ms-button .whatsapp {
  width: 23px;
  height: 23px;
  background-image: url(../images/common/whatsapp.html);
  background-repeat: no-repeat;
  background-size: 100%;
  display: table;
  margin-right: 0;
  font-size: 25px;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
  color: #2ab674;
}

.ms-style .ms-panel {
  display: none;
  margin-bottom: 5px;
  width: 275px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.479);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.479);
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.ms-style .ms-panel .ms-header {
  padding: 12px 15px 15px;
  text-align: center;
  color: #fff;
  background: #2ab674;
}

.ms-style .ms-panel .ms-body {
  min-width: 250px;
  white-space: nowrap;
  list-style: none;
  overflow-y: auto;
}

.ms-style .ms-header strong {
  font-size: 15px;
  line-height: 20px;
}

.ms-style .ms-header p {
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
}

.ms-style .ms-list .d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ms-style .ms-list .ms-img-cont {
  position: relative;
}

.ms-style .ms-list .ms-user-img {
  height: 40px;
  width: 40px;
  vertical-align: middle;
  border-radius: 50%;
}

.ms-style .ms-list .ms-status-icon {
  position: absolute;
  bottom: 5px;
  right: 1px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #a0a0a0;
}

.ms-style .ms-list .ms-online {
  background-color: #2ab674;
}

.ms-style .ms-list .ms-offline {
  background-color: #a0a0a0;
}

.ms-style .ms-list .ms-user-info {
  margin-top: 0;
  margin-bottom: auto;
  margin-left: 15px;
}

.ms-style .ms-list .ms-user-info span {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #555;
}

.ms-style .ms-list .ms-user-info p {
  margin-bottom: 0;
  color: #888;
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
}

.ms-style .ms-body:hover {
  text-decoration: none;
  cursor: pointer;
}

.ms-style .ms-body:hover .ms-user-img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ms-style .ms-body ul {
  margin: 0;
  padding: 0;
}

.ms-style .ms-body li {
  margin: 0;
  padding: 10px;
  display: block;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  list-style-type: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ms-style .ms-body li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.ms-style .ms-body li:hover {
  background-color: rgba(42, 182, 116, 0.07);
}

.ms-right-bottom {
  bottom: 15px;
  right: 15px;
  float: right;
}

.ms-right-bottom .ms-box {
  background-color: #2ab674;
  border-radius: 30px;
  cursor: pointer;
}

.ms-right-bottom .ms-box i {
  font-size: 20px;
  color: #fff;
}

.ms-right-bottom .ms-box:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
}

@keyframes ms-fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes ms-fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.rotateForward {
  -webkit-animation-name: rotateF;
  animation-name: rotateF;
  -webkit-animation-duration: 0.65s;
  animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes rotateF {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateF {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotateBackward {
  -webkit-animation-name: rotateB;
  animation-name: rotateB;
  -webkit-animation-duration: 0.65s;
  animation-duration: 0.65s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@-webkit-keyframes rotateB {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotateB {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

/*# sourceMappingURL=style.css.map */

/* Experience Section */
.ms-experience {
  position: relative;
  overflow: hidden;
}

.resume {
  position: relative;
  padding-left: 50px;
  max-width: 900px;
  margin: 0 auto;
}

/* Vertical Timeline Line */
.resume::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #acabde 5%,
    #b5c1c2 95%,
    transparent 100%
  );
}

/* Experience Entry Wrapper */
.experience-entry-wrapper {
  position: relative;
  margin-bottom: 50px;
  padding-left: 40px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

/* Stagger animation delays */
.experience-entry-wrapper:nth-child(1) {
  animation-delay: 0.2s;
}

.experience-entry-wrapper:nth-child(2) {
  animation-delay: 0.4s;
}

.experience-entry-wrapper:nth-child(3) {
  animation-delay: 0.6s;
}

.experience-entry-wrapper:nth-child(4) {
  animation-delay: 0.8s;
}

.experience-entry-wrapper:nth-child(5) {
  animation-delay: 1s;
}

/* Timeline Dot */
.experience-entry-wrapper::before {
  content: "";
  position: absolute;
  left: -52px;
  top: 10px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid #6564b9;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.4s ease;
}

/* Animated ring on hover */
.experience-entry-wrapper::after {
  content: "";
  position: absolute;
  left: -58px;
  top: 4px;
  width: 28px;
  height: 28px;
  border: 2px solid #000000;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

/* Hover Effects */
.experience-entry-wrapper:hover {
  transform: translateX(10px);
}

.experience-entry-wrapper:hover::before {
  background: #716fff;
  transform: scale(1.4);
  box-shadow: 0 0 0 8px rgba(50, 184, 198, 0.2);
}

.experience-entry-wrapper:hover::after {
  opacity: 1;
  transform: scale(1.3);
}

/* Experience Card */
.item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on hover */
.item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(50, 184, 198, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.experience-entry-wrapper:hover .item::before {
  left: 100%;
}

.experience-entry-wrapper:hover .item {
  border-color: #716fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Company and Dates */
.company-and-dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.dates {
  font-size: 13px;
  font-weight: 600;
  color: #716fff;
  background: rgba(50, 184, 198, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.experience-entry-wrapper:hover .dates {
  background: #716fff;
  color: #fff;
  transform: scale(1.05);
}

/* Role Title */
.role-title {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.experience-entry-wrapper:hover .role-title {
  color: #32b8c6;
}

/* Description */
.description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   MOBILE RESPONSIVE FIXES
   ================================ */

/* Tablet View */
@media (max-width: 768px) {
  .resume {
    padding-left: 30px;
  }

  .experience-entry-wrapper {
    padding-left: 25px;
    margin-bottom: 40px;
  }

  /* Timeline dot - smaller but visible */
  .experience-entry-wrapper::before {
    left: -36px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  /* Ring on hover - adjusted */
  .experience-entry-wrapper::after {
    left: -41px;
    width: 24px;
    height: 24px;
  }

  .item {
    padding: 24px;
  }

  .company-and-dates {
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .dates {
    font-size: 12px;
    padding: 5px 14px;
  }

  .role-title {
    font-size: 15px;
  }

  .description {
    font-size: 14px;
  }
}

/* Mobile View - Extra Small Devices */
@media (max-width: 480px) {
  .resume {
    padding-left: 25px;
    /* Ensure timeline line is visible */
  }

  .experience-entry-wrapper {
    padding-left: 20px;
    margin-bottom: 35px;
  }

  /* Make timeline dot clearly visible on mobile */
  .experience-entry-wrapper::before {
    left: -31px;
    /* Position to align with timeline */
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  /* Adjusted ring */
  .experience-entry-wrapper::after {
    left: -35px;
    width: 20px;
    height: 20px;
  }

  /* Reduce card padding on mobile */
  .item {
    padding: 20px;
    border-radius: 10px;
  }

  /* Stack company and dates vertically */
  .company-and-dates {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .dates {
    font-size: 11px;
    padding: 4px 12px;
  }

  .role-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Reduce hover movement on mobile */
  .experience-entry-wrapper:hover {
    transform: translateX(5px);
  }

  .experience-entry-wrapper:hover .item {
    transform: translateY(-3px);
  }
}

/* Very Small Mobile (320px) */
@media (max-width: 360px) {
  .resume {
    padding-left: 20px;
  }

  .experience-entry-wrapper {
    padding-left: 18px;
    margin-bottom: 30px;
  }

  .experience-entry-wrapper::before {
    left: -27px;
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .experience-entry-wrapper::after {
    left: -30px;
    width: 16px;
    height: 16px;
  }

  .item {
    padding: 16px;
  }

  .company-and-dates {
    font-size: 14px;
  }

  .dates {
    font-size: 10px;
    padding: 3px 10px;
  }

  .role-title {
    font-size: 13px;
  }

  .description {
    font-size: 12px;
  }
}

/* achivements | award and publications sections */

/* Cards Container */
.achievement-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

/* Individual Card */
.achievement-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  cursor: pointer;
}

/* Animated background gradient */
.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #716fff, #ff6f91, #32b8c6);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.achievement-card:hover::before {
  opacity: 1;
}

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

/* Hover effect - lift card */
.achievement-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Icon Container */
.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #716fff, #9d8dff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.achievement-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(113, 111, 255, 0.4);
}

/* Icon shimmer effect */
.card-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.card-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

/* Publications Card - Different Color */
.achievement-card.publications .card-icon {
  background: linear-gradient(135deg, #ff6f91, #ff9eb5);
}

.achievement-card.publications:hover .card-icon {
  box-shadow: 0 10px 30px rgba(255, 111, 145, 0.4);
}

/* Card Title */
.card-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.achievement-card:hover .card-title {
  color: #716fff;
}

.achievement-card.publications:hover .card-title {
  color: #ff6f91;
}

/* Card Description */
.card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* View More Button */
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #716fff;
  border-radius: 30px;
  color: #716fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #716fff;
  transition: left 0.4s ease;
  z-index: -1;
}

.achievement-card:hover .view-more-btn::before {
  left: 0;
}

.achievement-card:hover .view-more-btn {
  color: #fff;
  border-color: #716fff;
  transform: translateX(5px);
}

/* Publications Button */
.achievement-card.publications .view-more-btn {
  border-color: #ff6f91;
  color: #ff6f91;
}

.achievement-card.publications .view-more-btn::before {
  background: #ff6f91;
}

.achievement-card.publications:hover .view-more-btn {
  color: #fff;
  border-color: #ff6f91;
}

/* Arrow Icon in Button */
.view-more-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.achievement-card:hover .view-more-btn svg {
  transform: translateX(5px);
}

/* Count Badge */
.count-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(113, 111, 255, 0.1);
  color: #716fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.achievement-card.publications .count-badge {
  background: rgba(255, 111, 145, 0.1);
  color: #ff6f91;
}

.achievement-card:hover .count-badge {
  transform: scale(1.1);
}

/* Floating particles effect */
.particles {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.achievement-card:hover .particles {
  opacity: 0.15;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #716fff;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.achievement-card.publications .particle {
  background: #ff6f91;
}

.particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 40%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 60%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  left: 80%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title .ligh-title {
    font-size: 60px;
    top: -40px;
  }

  .achievement-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .achievement-card {
    padding: 40px 30px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon svg {
    width: 35px;
    height: 35px;
  }

  .card-title {
    font-size: 22px;
  }

  .view-more-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 24px;
  }

  .achievement-card {
    padding: 35px 25px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
  }

  .count-badge {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/*  ****************************************************** */

/*  table for awards page */

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  padding: 60px;
  animation: fadeIn 0.6s ease;
}

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

/* Header Section */
.awards-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.awards-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.awards-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #716fff, #ff6f91);
  border-radius: 2px;
}

.awards-header p {
  font-size: 18px;
  color: #666;
  margin-top: 20px;
  font-weight: 400;
}

/* Table Wrapper for Scroll */
.table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Custom Scrollbar */
.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #716fff;
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #5a50e6;
}

/* Table Styles */
.awards-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

.awards-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.awards-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.awards-table th:first-child {
  border-top-left-radius: 12px;
}

.awards-table th:last-child {
  border-top-right-radius: 12px;
}

.awards-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.awards-table tbody tr:hover {
  background: linear-gradient(90deg, #f8f9ff 0%, #fff5f8 100%);
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(113, 111, 255, 0.1);
}

.awards-table tbody tr:last-child {
  border-bottom: none;
}

.awards-table td {
  padding: 20px 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Year Column - Highlighted */
.awards-table td:first-child {
  font-weight: 700;
  color: #716fff;
  font-size: 18px;
  background: linear-gradient(135deg, #f0efff 0%, #fff 100%);
}

/* Award Title Column - Bold */
.awards-table td:nth-child(2) {
  font-weight: 600;
  color: #333;
}

/* Location Column - Lighter */
.awards-table td:last-child {
  color: #777;
  font-size: 14px;
}

/* Zebra Striping */
.awards-table tbody tr:nth-child(even) {
  background: #fafbff;
}

/* Badge Style for Year */
.year-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
}

/* Stats Section */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 20px 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease;
}

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

.stat-card .number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-card .label {
  font-size: 14px;
  opacity: 0.9;
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #716fff;
  border-radius: 30px;
  color: #716fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: #716fff;
  color: #fff;
  transform: translateX(-5px);
}

.back-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.back-btn:hover svg {
  transform: translateX(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .awards-container {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .awards-header h1 {
    font-size: 28px;
  }

  .awards-header p {
    font-size: 15px;
  }

  .awards-table th,
  .awards-table td {
    padding: 14px 16px;
    font-size: 13px;
  }

  .awards-table td:first-child {
    font-size: 15px;
  }

  .awards-table th {
    font-size: 12px;
  }

  /* Mobile: Stack columns differently */
  .table-wrapper {
    border-radius: 10px;
  }

  .year-badge {
    font-size: 12px;
    padding: 4px 10px;
  }

  .stat-card {
    padding: 15px 30px;
  }

  .stat-card .number {
    font-size: 24px;
  }

  .stat-card .label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }

  .awards-container {
    padding: 25px 15px;
  }

  .awards-header h1 {
    font-size: 24px;
  }

  .awards-header p {
    font-size: 14px;
  }

  .awards-table th,
  .awards-table td {
    padding: 12px;
    font-size: 12px;
  }

  .stats-container {
    gap: 15px;
  }

  .stat-card {
    padding: 12px 20px;
    flex: 1 1 calc(50% - 10px);
  }
}
/* end of css for awards page */

/*  company logoo */

/* Companies Grid */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 0 auto;
}

/* Company Card */
.company-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

/* Animated gradient border */
.company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #716fff, #32b8c6, #ff6f91);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.company-card:hover::before {
  opacity: 1;
}

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

/* Hover effect */
.company-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Logo Container */
.company-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: 3px solid #f0f0f0;
}

.company-card:hover .company-logo {
  transform: scale(1.1) rotate(3deg);
  border-color: #716fff;
  box-shadow: 0 10px 30px rgba(113, 111, 255, 0.3);
}

/* Logo Image */
.company-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.company-card:hover .company-logo img {
  transform: scale(1.1);
}

/* Placeholder Icon if no logo */
.company-logo-placeholder {
  width: 80px;
  height: 80px;
}

.company-logo-placeholder svg {
  width: 100%;
  height: 100%;
  stroke: #716fff;
  fill: none;
  stroke-width: 1.5;
}

/* Company Name */
.company-name {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.company-card:hover .company-name {
  color: #716fff;
}

/* Company Description */
.company-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 50px;
}

/* Visit Button */
.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #716fff;
  border-radius: 30px;
  color: #716fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.visit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #716fff;
  transition: left 0.4s ease;
  z-index: -1;
}

.company-card:hover .visit-btn::before {
  left: 0;
}

.company-card:hover .visit-btn {
  color: #fff;
  transform: scale(1.05);
}

.visit-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.company-card:hover .visit-btn svg {
  transform: translateX(3px);
}

/* Company Tag */
.company-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(113, 111, 255, 0.1);
  color: #716fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6f91, #ff9eb5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 111, 145, 0.3);
}

/* Floating particles effect */
.particles {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.company-card:hover .particles {
  opacity: 0.15;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #716fff;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 40%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 60%;
  animation-delay: 2s;
}

.particle:nth-child(4) {
  left: 80%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translateY(-100px) scale(1.2);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 28px;
  }

  .section-title .ligh-title {
    font-size: 60px;
    top: -40px;
  }

  .companies-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .company-card {
    padding: 35px 25px;
  }

  .company-logo {
    width: 120px;
    height: 120px;
  }

  .company-name {
    font-size: 20px;
  }

  .company-description {
    font-size: 14px;
  }

  .visit-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 24px;
  }

  .company-card {
    padding: 30px 20px;
  }

  .company-logo {
    width: 100px;
    height: 100px;
  }

  .company-name {
    font-size: 18px;
  }

  .company-tag {
    font-size: 10px;
    padding: 5px 10px;
  }
}

/* socials */

/* Social Icons Container */
.ms-social {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ms-social ul {
  display: flex;
  list-style: none;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.ms-social li {
  list-style: none;
}

.ms-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.ms-social a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.ms-social a:hover::before {
  width: 100%;
  height: 100%;
}

.ms-social a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* Individual social media colors */
.ms-social a[href*="facebook"] {
  background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.ms-social a[href*="facebook"]:hover {
  box-shadow: 0 8px 25px rgba(59, 89, 152, 0.5);
}

.ms-social a[href*="instagram"] {
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.ms-social a[href*="instagram"]:hover {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

.ms-social a[href*="twitter"] {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.ms-social a[href*="twitter"]:hover {
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5);
}

.ms-social a[href*="linkedin"] {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.ms-social a[href*="linkedin"]:hover {
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

/* Icon positioning */
.ms-social a i {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 480px) {
  .ms-social ul {
    gap: 10px;
  }

  .ms-social a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
