/*_____________Font______________*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #28e98c;
  --header: #1c1d20;
  --text: #666666;
  --border: #273536;
  --bg: #f9f9f9;
  --bg-2: #1c1d20;
  --border: 1.5px solid rgba(102, 102, 102, 0.24);
  --border-2: 1.5px solid #28e98c;
  --border-3: 1.5px solid rgba(102, 102, 102, 0.16);
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/*_____________Typography______________*/

html {
  scroll-behavior: smooth;
}

body {
  transition: 0.5s all ease;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #1e1e1e;
}

ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.fix {
  overflow: hidden;
}

/*******************************************
                Header part css
********************************************/

/*_____________ Logo part ______________*/

.header-part {
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.16);
}

.header-logo img {
  width: 150px;
  height: auto;
}

/*_____________ Menu Part ______________*/

.header-menu ul {
  display: flex;
  gap: 30px;
}

.header-menu ul li {
  position: relative;
}

.header-menu ul li a {
  font-size: 16px;
  color: #273536;
  font-weight: 600;
  text-transform: uppercase;
}

.header-menu ul li:hover a {
  color: #28e98c;
  transition: 0.1s all;
}

.header-menu ul li::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #28e98c;
  left: 0;
  bottom: 2px;
  transition: 0.7s all ease;
}

.header-menu ul li:hover::before {
  width: 100%;
}

/*_____________ Cv Button ______________*/

.cv-btn {
  border-radius: 110px;
  font-size: 16px;
  padding: 8px 15px;
  color: #fff;
  background-color: #1c1d20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.cv-btn a {
  color: #fff;
}

.cv-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  background-color: #28e98c;
  height: 100%;
  left: 0;
  border-radius: 100px;
  color: red;
  z-index: -1;
}

.cv-btn:hover::before {
  width: 100%;
  transition: 0.5s all ease;
}

.cv-btn .rot-60 {
  transform: rotate(45deg);
  transition: 0.15s all ease;
}

.cv-btn:hover .rot-60 {
  transform: rotate(90deg);
  transition: 0.15s all ease;
}

/*_____________ Side Bar ______________*/

.side-icon {
  font-size: 24px;
  background-color: #71f0b3;
  padding: 5px 10px 6px 9px;
  color: #273536;
  border-radius: 100px;
  cursor: pointer;
}

.side-icon:hover {
  background-color: #28e98c;
}

.main-sidebar {
  margin-top: -5px;
}

.sidebar {
  position: fixed;
  height: 100%;
  width: 0;
  z-index: 99999;
  top: 0;
  right: 0;
  background: #fff none repeat scroll 0 0;
  transition: 0.5s all ease;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.side-bar-logo img {
  width: 100px;
}

.side-topbar {
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
}

.closebtn {
  background-color: #71f0b3;
  padding: 0px 11px 4px 11px;
  border-radius: 100px;
  transition: 0.7s all ease;
}

.closebtn:hover {
  background-color: #28e98c;
}

.closebtn span {
  font-size: 24px;
  font-weight: 600;
}

.top-menu-side {
  margin-top: 25px;
}

.top-menu-side ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

.top-menu-side ul li {
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.16);
}

.top-menu-side ul li:hover {
  background-color: #71f0b3;
  transition: 0.7s all ease;
}

.top-menu-side ul li:last-child {
  border-bottom: none;
}

.top-menu-side ul li a {
  padding-left: 15px;
  padding: 15px 0px 15px 15px;
  font-size: 14px;
  color: #1c1d20;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.top-menu-side ul li a:hover {
  color: #273536;
}

.side-contact {
  padding: 15px 15px;
}

.s-c-heading {
  font-size: 22px;
}

.s-c-list li {
  padding-top: 5px;
}

.s-c-list ul li a {
  color: #666666;
  font-weight: 500;
}

.s-c-list ul li a span {
  margin-right: 9px;
  color: #28e98c;
  font-weight: 400;
}

.s-c-btn a {
  margin-top: 25px;
  background-color: #28e98c;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0px;
  border-radius: 25px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.s-c-btn a:hover {
  color: #fff;
}

.s-c-btn a::before {
  content: "";
  position: absolute;
  width: 0%;
  background-color: #1c1d20;
  height: 100%;
  left: 0;
  border-radius: 100px;
  z-index: -1;
}

.s-c-btn a:hover::before {
  top: 0;
  width: 100%;
  transition: 0.7s all ease;
}

.rot-70 {
  transform: rotate(45deg);
  transition: 0.7s all ease;
}

.s-c-btn a:hover .rot-70 {
  transform: rotate(90deg);
  transition: 0.7s all ease;
}

.side-social {
  padding: 30px 0px;
  padding-bottom: 20px;
}

.side-social ul {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.side-social ul li {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  gap: 15px;
  transition: 0.7s all ease;
}

.side-social ul li:hover {
  background-color: #28e98c;
}

.side-social ul li a {
  font-size: 18px;
  transform: rotate(-45deg);
  color: #666666fe;
}

.side-social li:hover a {
  color: #fff;
}

/*_____________ Sticky Function ______________*/

#mainMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  box-shadow: none;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  text-align: center;
  transform: translateY(0);
  opacity: 1;
}

#mainMenu.sticky {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: slideFade 0.9s ease-in-out;
}

@keyframes slideFade {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*******************************************
                Hero Part css
********************************************/

/*_____________ Hero Main Css ______________*/

.hero-thumb {
  position: relative;
  padding-top: 120px;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.arrow-shape {
  position: absolute;
  right: 45.5%;
  transform: rotate(7deg);
  top: 27%;
}

.star-shape {
  position: absolute;
  top: 18%;
  right: 22%;
}

.float-baby-y {
  animation-name: float-baby-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes float-baby-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.hero-social-info {
  position: absolute;
  top: 419px;
  display: flex;
  left: -90px;
  gap: 14px;
  transform: rotate(-90deg);
}

.hero-social-info li {
  list-style-type: none;
  position: relative;
}

.hero-social-info li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(42, 123, 155, 1) 0%,
    rgba(40, 233, 140, 1) 0%,
    rgba(237, 221, 83, 1) 74%
  );
  transition: 0.7s all ease-in-out;
}

.hero-social-info li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1.5px;
  top: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(40, 233, 140, 1) 0%,
    rgba(237, 221, 83, 1) 74%
  );
  transition: 0.7s all ease-in-out;
}

.hero-social-info li:hover::after {
  width: 100%;
  transition: 0.7s all ease-in-out;
}

.hero-social-info li:hover::before {
  width: 100%;
  transition: 0.7s all ease-in-out;
}

.hero-social-info li a {
  font-size: 14px;
  color: #273536;
}

.hero-social-info li a:hover {
  color: #1c1d20;
}

/*_____________ Hero Banner css ______________*/
.hero-banner-thumb {
  width: 90%;
}

.hero-banner-img {
  position: relative;
  z-index: 9;
}

.hero-banner-img img {
  width: 100%;
}

.hero-shape-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.hero-shape-img {
  width: 100%;
  gap: 5px;
}

/*_____________ Hero Content css ______________*/

.hero-content-image img {
  margin-right: 5px;
}

.hero-content-image {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/*_____________ Hero text-animation ______________*/

.txt-wrapper {
  padding-bottom: 15px;
}

.static-txt {
  font-size: 30px;
  font-weight: bold;
  color: #273536;
}

.dynamic-txt {
  height: 55px;
  line-height: 55px;
  overflow: hidden;
}

.dynamic-txt li {
  list-style-type: none;
  font-size: 40px;
  position: relative;
  top: 0;
  animation: slide 12s steps(2) infinite;
  color: #28e98c;
}

@keyframes slide {
  100% {
    top: -110px; /* 2 items × 90px line-height = 180px */
  }
}

.dynamic-txt li span {
  position: relative;
  margin: 1px 0;
  line-height: 55px;
}

.dynamic-txt li span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  border-left: 2px solid #71f0b3;
  animation: typing 6s steps(15) infinite;
}

@keyframes typing {
  40%,
  60% {
    left: calc(100% + 5px);
  }
  100% {
    left: 0;
  }
}

/*_____________ Hero Pera ______________*/

.hero-pera {
  font-size: 16px;
  justify-content: center;
  color: #666666;
  margin-bottom: 45px;
}

.hero-wrapper-btn {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-btn {
  padding: 10px 25px;
  display: inline-flex;
  gap: 5px;
  font-size: 14px;
  color: #1c1d20;
  background-color: #28e98c;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.hero-btn:hover {
  color: #fff;
  transition: 0.7s all ease;
}

.hero-btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1c1d20;
  border-radius: 100px;
  z-index: -1;
}

.hero-btn:hover::before {
  width: 100%;
  transition: 0.7s all ease;
}

.rot-90 {
  transform: rotate(45deg);
  transition: 0.7s all ease;
}

.hero-btn:hover .rot-90 {
  transform: rotate(90deg);
}

.h-y-btn-b {
  border: 1px solid #a2a0a0;
  padding: 11px 10px 10px 13px;
  border-radius: 100px;
}

.h-y-btn-b i {
  color: #28e98c;
  font-size: 14px;
}

.h-y-btn {
  margin-left: 5px;
  font-size: 14px;
  color: #1c1d20;
}

/*******************************************
                Marquee Part css
********************************************/

.marquee-section {
  background-color: #1c1d20;
}

.marquee-section:hover .marquee-wrapper {
  animation-play-state: paused;
}

.marquee-container {
  overflow: hidden;
  background-color: #1e1e1e;
  padding: 20px 0;
}

.marquee-wrapper {
  display: flex;
  width: fit-content;
  animation: marque 40s linear infinite;
}

/*_____________ Marquee Animation ______________*/

@keyframes marque {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquiee-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 30px;
  white-space: nowrap;
  text-transform: uppercase;
}

.marquiee-text h3 {
  color: #fff;
  margin-top: 5px;
}

/*******************************************
                About Banner Css
********************************************/

.about-container {
  padding-top: 80px;
}

.about-wrapper {
  position: relative;
}

.random-shape {
  position: absolute;
  top: 8%;
  right: 2%;
}

.star-about {
  position: absolute;
  top: 20%;
  left: 44%;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*_____________ Float Animation ______________*/

@keyframes float-bob-x {
  0% {
    transform: translateX(30px);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(30px);
  }
}

.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*_____________ Float Animation ______________*/

@keyframes float-bob-y {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-30px);
  }
}

/*_____________ About Content Css ______________*/

.about-title {
  margin-bottom: 30px;
}

.about-top-title {
  font-size: 18px;
  display: inline-block;
  align-items: center;
  font-weight: 500;
  color: #1c1d20;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.about-top-title img {
  margin-right: 10px;
}

.txt-clr {
  color: #28e98c;
}

.about-title h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-title p {
  color: #525252;
  font-size: 16px;
}

.about-project-experience {
  display: flex;
  gap: 80px;
  margin-bottom: 25px;
}

.experience-year {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100px;
  border-left: 1px solid #666666;
}

.experience-year:first-child {
  border-left: none;
}

.experience-year h4 {
  font-size: 28px;
  font-weight: 600;
}

.experience-year h3 {
  font-size: 17px;
}

.e-m {
  margin-left: 15px;
}

.a-p {
  margin-top: -16px;
}

/*_____________ About Button Part Css ______________*/

.about-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.about-m-btn {
  border-radius: 110px;
  font-size: 16px;
  padding: 8px 15px;
  color: #fff;
  background-color: #28e98c;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.about-m-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  background-color: #1c1d20;
  height: 100%;
  left: 0;
  border-radius: 100px;
  color: red;
  z-index: -1;
  transition: 0.7s all;
}

.about-m-btn:hover::before {
  width: 100%;
}

.rot-95 {
  transform: rotate(45deg);
  transition: 0.7s all;
}

.about-m-btn:hover .rot-95 {
  transform: rotate(90deg);
}

.about-call-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: text;
}

.btn-call {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #a2a0a0;
  border-radius: 100px;
}

.btn-call img {
  width: 25px;
}

.btn-call-content h2 {
  font-size: 16px;
  color: #a2a0a0;
  margin-top: 9px;
  line-height: 0;
  margin-bottom: 20px;
}

.btn-call-content h4 {
  line-height: 0;
  font-size: 14px;
}

/*_____________ About Image Part Css ______________*/

.about-banner-image {
  position: relative;
  z-index: 9;
}

.about-banner-image img {
  width: 100%;
}

.man-bg-shape {
  position: absolute;
  top: 17%;
  left: 11%;
  z-index: -9;
}

.man-bg-shape img {
  width: 100%;
}

.shape-left {
  position: absolute;
  top: 75%;
  background-color: #fff;
  border: 1px solid #71f0b3;
  left: -60px;
  padding: 15px 25px 0px 25px;
  border-radius: 25px;
}

.research-b-img img {
  width: 90px;
}

.research-b-img h2 {
  font-size: 22px;
  margin-top: 5px;
  font-weight: 600;
}

.shape-left p {
  text-align: center;
  line-height: 0;
  padding-top: 15px;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
}

.shape-right {
  position: absolute;
  top: 28%;
  right: -9%;
  background-color: #fff;
  border: 1px solid #71f0b3;
  padding: 15px 25px 0px 25px;
  border-radius: 25px;
}

.shape-right p {
  text-align: center;
  line-height: 0;
  padding-top: 15px;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
}

/*******************************************
                Experience Part Css
********************************************/

.section-bg {
  background-color: #1c1d20;
}

.experience-section {
  position: relative;
}

.experience-section .random-shape {
  position: absolute;
  top: 17%;
  right: 9%;
}

/*_____________ Experience Title Css ______________*/

.ex-section-title {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
}

.ex-section-title h2 {
  font-size: 8.25rem;
  text-align: center;
  width: 100%;
  opacity: 0.4;
}

.ex-section-title p {
  position: absolute;
  width: 100%;
  align-self: center;
  font-weight: 600;
  color: #fff;
  font-size: 2rem;
  margin-top: 20px;
}

.ex-section-title p img {
  margin-right: 10px;
  margin-top: -5px;
}

.section-title-border {
  border-bottom: 3px solid #28e98c;
  display: block;
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.7s all ease-in-out;
}

.ex-section-title p:hover .section-title-border {
  width: 244px;
  transition: 0.7s all ease-in-out;
}

/*_____________ Experience Content Css ______________*/

.experience-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.24);
}

.experience-item:hover {
  background-color: #28e98c;
  padding: 15px 10px;
  transition: 0.7s all ease;
  box-shadow: 0px 0px 24px -4px rgba(40, 233, 140, 0.75);
}

.experience-item:last-child {
  border-bottom: none;
}

.experience-item span {
  color: #fff;
}

.experience-item:hover span {
  color: #1c1d20;
}

.experience-item h6 {
  color: #fff;
}

.experience-item:hover h6 {
  color: #1c1d20;
}

.ex-content h2 {
  color: #71f0b3;
  font-size: 24px;
  text-align: center;
}

.experience-item:hover .ex-content h2 {
  color: #fff;
}

.ex-content h3 {
  font-size: 16px;
  text-align: center;
  color: #f9f9f9;
}

.experience-item:hover .ex-content h3 {
  color: #1c1d20;
}

.ex-btn {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.ex-btn a {
  padding: 10px 20px;
  background-color: #28e98c;
  border-radius: 100px;
  font-size: 14px;
  color: #1c1d20;
  transition: 0.7s all ease;
}

.ex-btn:hover a {
  padding: 10px 25px;
  color: #fff;
}

.rot-96 i {
  margin-left: 5px;
  transform: rotate(45deg);
}

.ex-btn:hover .rot-96 i {
  transform: rotate(90deg);
  transition: 0.7s all ease;
}

/*******************************************
                Courses Part Css
********************************************/

.courses-section {
  background-color: #1c1d20;
  position: relative;
  padding-top: 80px;
}

.courses-container .ex-section-title p:hover .section-title-border {
  width: 190px;
}

.courses-item {
  justify-content: space-between;
  padding: 24px;
  border: 1.5px solid rgba(102, 102, 102, 0.24);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

.head span {
  font-size: 20px;
  color: #525252;
  font-weight: 700;
}

.text {
  font-size: 20px;
  color: #bbbcbc;
  font-weight: 600;
}

.courses-item:hover .text {
  color: #fff;
}

.courses-l-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  left: 100px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.courses-l-btn i {
  width: 28px;
  height: 28px;
  color: var(--theme);
  border: var(--border-2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  cursor: pointer;
}

.courses-l-btn a {
  color: var(--theme);
  opacity: 0;
  visibility: hidden;
}

.courses-item:hover .courses-l-btn {
  left: 0;
}

.courses-item:hover .courses-l-btn a {
  opacity: 1;
  visibility: visible;
}

.courses-item:hover {
  border: 1.5px solid #28e98c;
  box-shadow: 0px 0px 15px -4px rgba(40, 233, 140, 0.75);
  transition: 0.7s all ease;
}

.random-s-left {
  position: absolute;
  left: 5%;
  top: 23%;
}

/*******************************************
                Award Part Css
********************************************/

.award-section {
  padding: 80px 0px;
  position: relative;
  padding-bottom: 160px;
}

.trophy {
  position: absolute;
  bottom: 0;
  right: 24%;
}

.a-star-shape {
  position: absolute;
  bottom: 20%;
  right: 41%;
}

.title-section span img {
  margin-right: 10px;
}

.title-section span {
  font-weight: 500;
  margin-bottom: 10px;
}

.title-section h2 {
  font-size: 48px;
  font-weight: 600;
}

.title-section h2 span {
  color: #28e98c;
}

.award-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid rgba(102, 102, 102, 0.24);
  padding: 20px;
  border-radius: 16px;
  background-color: #f9f9f9;
  transition: 0.7s ease all;
}

.award-item:hover {
  border-color: #28e98c;
  background: #f6fffb;
  transition: 0.7s ease all;
}

.award-item .content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.award-text h3 {
  font-size: 24px;
  font-weight: 600;
}

.award-text span {
  color: #666666;
  font-size: 16px;
}

.award-item .icon img {
  width: 55px;
}

/*******************************************
                Protfolio Part Css
********************************************/

.protfolio-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-title-bar {
  text-align: center;
}

.p-title-bar h3 {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #1e1e1e;
}

.p-title-bar p {
  font-size: 32px;
  font-weight: 500;
}

/*_____________ Protfolio Slide Css ______________*/

.swiper {
  width: 100%;
  padding: 50px 20px;
  transition: 0.4s ease all;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.card-item {
  width: 100%;
  max-width: 350px;
  user-select: none;
}

.card-img {
  width: 100%;
  height: 280px;
  background-size: cover;
  border-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  cursor: grab;
}

.card-text {
  width: 85%;
  position: absolute;
  bottom: -15px;
  background-color: #fff;
  padding: 9px 35px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.233),
    0 6px 20px 0 rgba(0, 0, 0, 0.059);
  user-select: none;
  transition: 0.3s all ease;
}

.card-item:hover .card-text {
  box-shadow: 0 6px 10px rgba(113, 240, 179, 0.3);
  transition: 0.3s all ease;
}

.card-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-text-h {
  color: #1c1d20;
  font-size: 15px;
  font-weight: 400;
  transition: 0.5s all ease;
}

.card-item:hover .card-text-h {
  color: #07ed7e;
  transition: 0.5s all ease;
}

.card-round {
  width: 3px;
  height: 3px;
  border-radius: 25px;
  background-color: #525252;
  transition: 0.5s all ease;
}

.card-item:hover .card-round {
  background-color: #28e98c;
  transition: 0.5s all ease;
}

.card-text-details {
  color: #1c1d20;
  font-weight: 600;
  transition: 0.5s all ease;
}

.card-item:hover .card-text-details {
  color: #28e98c;
  transition: 0.5s all ease;
}

.card-item h2 {
  text-align: center;
  font-size: 22px;
  padding: 0px 15px;
  margin-top: 40px;
  color: #2f3032;
  font-weight: 600;
  margin-bottom: 25px;
  user-select: none;
  transition: 0.5s all ease;
}

.card-item:hover h2 {
  color: #1c1d20;
  transition: 0.5s all ease;
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px 15px;
  border-top: 0.5px solid rgba(102, 102, 102, 0.16);
  transition: 0.7s all ease;
  cursor: pointer;
}

.card-item:hover .card-btn {
  border-top: 0.5px solid #07ed7e;
  transition: 0.7s all ease;
}

.card-btn a {
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.card-item:hover .card-btn a {
  transition: 0.7s all ease;
  color: #07ed7e;
}

.swiper-pagination-bullet {
  background: #28e98c; /* তোমার পছন্দের light green */
  opacity: 0.5;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .card-item {
    max-width: 90%;
  }
}

/*_____________ Thesis Css ______________*/

.thesis-wrapper {
  margin-top: 30px;
}

.super-heading p {
  text-align: center;
  font-size: 32px;
  margin-bottom: 35px;
}

.super-heading h2 {
  gap: 5px;
}

.thesis-box {
  padding: 15px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 25px;
  color: #273536;
  font-weight: 400;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.thesis-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  background-color: #89f5c1;
  transition: 0.3s ease all;
}

.thesis-box h4 {
  text-align: center;
  border-bottom: 0.5px solid rgba(102, 102, 102, 0.16);
  padding: 15px 0px;
  margin-bottom: 15px;
}

.thesis-box:hover h4 {
  border-bottom: 0.5px solid #fff;
}

.thesis-box h6 {
  font-size: 18px;
  margin-bottom: 28px;
}

.t-heading {
  font-size: 26px;
  font-weight: 500;
}

.t-title {
  border-left: 4px solid #71f0b3;
  padding-left: 15px;
}

.thesis-box:hover .t-title {
  border-left: 4px solid #fff;
}

.t-title h5 {
  font-size: 15px;
  color: #666666;
}

.t-title a {
  font-size: 18px;
  text-align: left;
  text-align: justify;
  color: #525252;
  font-style: italic;
}

.t-btn {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.t-btn a {
  background-color: #71f0b3;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1e1e1e;
  font-weight: 500;
  z-index: 1;
  position: relative;
}

.t-btn a:hover {
  color: #fff;
  transition: 0.5s ease all;
}

.t-btn a::before {
  content: "";
  position: absolute;
  width: 0%;
  background-color: #1c1d20;
  height: 100%;
  left: 0;
  border-radius: 100px;
  z-index: -1;
  transition: 0.7s all;
}

.t-btn a:hover::before {
  width: 100%;
}

.t-btn span i {
  transform: rotate(45deg);
}

.t-btn a:hover span i {
  transform: rotate(90deg);
  transition: 0.5s ease-in-out;
}

.t-clr {
  background-color: #1c1d20;
  color: #fff;
}

/*******************************************
                Gallery Part Css
********************************************/

.gallery-section {
  background-color: #1e1e1e;
  padding-bottom: 100px;
  position: relative;
}

.g-Swiper {
  width: 100%;
  max-width: 400px;
}

.g-swiper-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  user-select: none;
}

.g-Swiper {
  padding: 0px 20px;
}

.g-content h2 {
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
}

.g-content img {
  width: 28px;
}

.g-content p {
  color: #fff;
  font-size: 22px;
}

.margin-bottom {
  margin-bottom: -35px;
}

/*******************************************
                Footer Part Css
********************************************/

/*_____________ Footer Bottom Part Css ______________*/

.bottom-footer {
  margin-top: 50px;
  background-color: #1e1e1e;
  padding: 15px 25px;
  margin-bottom: 20px;
  border-radius: 25px;
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.b-text {
  color: #fff;
  font-size: 14px;
}

.t-text a {
  color: #fff;
  font-size: 14px;
}

.footer-top i {
  color: #fff;
  padding: 13px 18px;
  display: flex;
  justify-content: center;
  background-color: #28e98c;
  border: 4px solid #fff;
  border-radius: 35px;
}

.footer-top {
  position: absolute;
  top: -27px;
  left: 49%;
}

.clr-g {
  color: #28e98c;
}

/*_____________ Experience Content Css ______________*/

.f-content P {
  font-size: 16px;
}

.footer-logo {
  width: 38%;
}

.footer-logo img {
  width: 100%;
}

.social-info ul {
  display: flex;
  gap: 15px;
}

.social-info ul li {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: 0.7s all ease;
}

.social-info ul li a {
  font-size: 18px;
  color: #1c1d20;
}

.text-s {
  font-size: 18px;
  margin-right: 15px;
}

.social-info ul li i {
  font-size: 18px;
}

/*_____________ Footer List Css ______________*/

.useful-link {
  margin-top: 10px;
}

.useful-link h3 {
  font-size: 22px;
}

.useful-link ul {
  line-height: 30px;
}

.useful-link ul li a {
  color: #1c1d20;
  font-weight: 600;
}

.useful-link ul li a span i {
  margin-right: 5px;
  transition: 0.7s all ease-in-out;
}

.useful-link ul li:hover a {
  color: #0bf483;
  transition: 0.7s all ease;
}

.footer-c-link li:hover a span i {
  transform: rotate(180deg);
  color: #07ed7e;
  transition: 0.7s all ease-in-out;
}

.f-contact {
  margin-top: 10px;
}

.f-c-content {
  margin-right: 15px;
}

.f-c-content h3 {
  font-size: 22px;
}

.f-c-content ul li a span {
  margin-right: 10px;
}

.f-c-content ul li a span img {
  width: 18px;
}

.f-c-content ul {
  line-height: 30px;
}

.f-c-content ul li a {
  color: #1c1d20;
  font-size: 15px;
  cursor: text;
}

/*_____________ Input  Css ______________*/

.sent-box {
  margin-left: 25px;
}

.input-group input {
  outline: none;
  border: none;
  padding-left: 10px;
  font-size: 13px;
  color: #666666;
}

.input-group {
  padding: 10px 5px;
  position: relative;
  border-radius: 10px;
  border: 2px solid #999;
  transition: border-color 0.3s;
  display: flex;
  align-items: center;
}

.input-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #666666;
  transition: all 0.3s ease;
}

.input-group i {
  color: #999;
}

input:focus {
  color: #1e1e1e;
}

input:focus + label,
input:not(:placeholder-shown) + label {
  top: -3px;
  left: 8px;
  font-size: 13px;
  color: #28e98c;
  background-color: #fff;
  padding: 0px 5px;
  transition: 0.7s all ease;
}

.input-group:focus-within {
  border-color: #28e98c;
}

.input-group:focus-within i {
  color: #28e98c;
  transition: 0.7s all ease;
}

/*******************************************
                Mouse Cursor Css
********************************************/

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  z-index: 9999;
}

.mouse-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #0bf483;
  opacity: 0.5;
  transition: all 0.1s ease;
}

.mouse-inner {
  width: 6px;
  height: 6px;
  background-color: #71f0b3;
  transition: all 0.1s ease;
}

.mouse-outer.cursor-hover {
  opacity: 0;
}

.mouse-inner.cursor-hover {
  width: 60px;
  height: 60px;
  margin-left: -35px;
  margin-top: -35px;
  background-color: #71f0b3;
  opacity: 0.3;
}

/*******************************************
                Preloader Css
********************************************/

.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  background-position: center;
  background-color: #ffffff;
  align-items: center;
  z-index: 1000;
}

.spinner {
  width: 80px;
  height: 80px;
  position: relative;
}

.spinner div {
  transform-origin: 40px 40px;
  animation: spin 1.2s linear infinite;
}

.spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #07ed7e;
}

.spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes spin {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.hide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}

/*------------------------------------------------------------------
                        Undergraduat-page-css
--------------------------------------------------------------------*/

/*******************************************
                Breadcrumb css
********************************************/

/*_____________ Breadcrumb Main part ______________*/

.breadcrumb-wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
}

.star-shape-c {
  position: absolute;
  top: 36%;
  right: 20%;
}

.page-heading {
  padding: 180px 0px 100px;
  text-align: center;
}

.page-heading h2 {
  font-size: 60px;
  line-height: 80px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  display: inline;
  color: #1c1d20;
}

.page-heading h2::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 5px;
  display: inline;
  bottom: -5px;
  background-color: #1c1d20;
  transition: 0.7s ease all;
  border-radius: 5px;
}

.page-heading h2:hover::before {
  width: 100%;
  transition: 0.7s ease all;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.breadcrumb-list li a {
  color: #868283;
}

.breadcrumb-list li a:hover {
  color: #1c1d20;
}

.breadcrumb-list li {
  color: #1c1d20;
}

.float-bob-x {
  animation-name: float-bob-x;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*_____________ Float Animation ______________*/

@keyframes float-bob-x {
  0% {
    transform: translateX(30px);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(30px);
  }
}

/*_____________ UG-Animation ______________*/

.ug-wrapper {
  border-radius: 24px;
  background: rgb(243 245 244);
  backdrop-filter: blur(24px);
  padding: 48px;
  margin-top: 48px;
}

.ug-item {
  background-color: #fff;
  border-radius: 25px;
  border: 1.5px solid #6afcb6;
  padding-bottom: 20px;
}

.ug-heading {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.16);
}

.lottie-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ug-text h3 {
  text-align: center;
  color: #1c1d20;
  font-size: 22px;
}

.ug-text h4 {
  text-align: center;
  color: #28e98c;
  font-size: 32px;
}

.dotlottie {
  width: 200px;
  height: 200px;
}

/*------------------------------------------------------------------
                        Ug-page-css
--------------------------------------------------------------------*/

/*_____________ UG-Animation ______________*/

.ug-wrapper {
  border-radius: 24px;
  background: rgb(243 245 244);
  backdrop-filter: blur(24px);
  padding: 48px;
  margin-top: 48px;
}

.ug-heading {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.16);
}

/*_____________ UG-Courses-Animation ______________*/

.book-wrapper {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 10px 25px;
  background-color: #fff;
  border-radius: 15px;
  border: 1.5px solid #fff;
  box-shadow: 0px 0px 22px -4px rgb(197 210 204 / 75%);
  transition: 0.4s all ease;
}

.book-wrapper:hover {
  box-shadow: 0px 0px 22px -4px rgb(119 238 181 / 75%);
  border: 1.5px solid #6afcb6;
  transition: 0.4s all ease;
}

.book-conetent {
  font-size: 22px;
}

.book-icon {
  border: 1.5px solid #6afcb6;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  transition: 0.4s all ease;
}

.book-wrapper:hover .book-icon {
  background-color: #6afcb6;
  transition: 0.4s all ease;
}

.book-icon i {
  font-size: 22px;
  color: #6afcb6;
  transition: 0.4s all ease;
}

.book-wrapper:hover .book-icon i {
  color: #fff;
  transition: 0.4s all ease;
}

.book-conetent {
  color: #1c1d20;
  font-weight: 500;
}

/*------------------------------------------------------------------
                        Class-page-css
--------------------------------------------------------------------*/

/*_____________ UG-Animation ______________*/

.ug-wrapper {
  border-radius: 24px;
  background: rgb(243 245 244);
  backdrop-filter: blur(24px);
  padding: 48px;
  margin-top: 48px;
}

.ug-heading {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.16);
}

/*------------------------------------------------------------------
                        Protfolio-page-css
--------------------------------------------------------------------*/

/*******************************************
                Protfolio css
********************************************/
/*_____________ Protfolio Itmes Css ______________*/

.pro-items {
  width: 90%;
  margin-left: 10%;
  border: 1.5px solid rgba(102, 102, 102, 0.24);
  border-radius: 16px;
  box-shadow: 0px 0px 22px -4px rgb(197 210 204 / 75%);
  margin-bottom: 35px;
}

.pro-thumb {
  width: 100%;
  height: 350px;
}

.pro-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 15px 16px 0 0;
}

.pro-content {
  padding: 18px 38px;
}

.pro-d-c {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.pro-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pro-dot {
  width: 5px;
  height: 5px;
  background-color: #1c1d20;
  border-radius: 5px;
}

.pro-date-c {
  color: #1c1d20;
  font-weight: 500;
}

.pro-c {
  color: #28e98c;
  font-weight: 500;
}

.pro-heading h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1c1d20;
  transition: 0.5s all ease;
}

.pro-heading h3:hover {
  color: #28e98c;
  transition: 0.5s all ease;
}

.pro-heading p {
  color: #868283;
  font-weight: 500;
}

.pro-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.pro-icon {
  width: 35px;
  height: 35px;
  border-radius: 25px;
  border: 1.5px solid #28e98c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease all;
}

.pro-btn:hover .pro-icon {
  background-color: #28e98c;
  transition: 0.5s ease all;
}

.pro-icon i {
  color: #28e98c;
  transform: rotate(-45deg);
  transition: 0.5s ease all;
}

.pro-btn:hover .pro-icon i {
  color: #1c1d20;
  transition: 0.5s ease all;
}

.pro-b-content {
  color: #1c1d20;
}

.pro-pagination {
  text-align: center;
  margin-left: 10%;
}

.pro-pagination ul li {
  display: inline-block;
  gap: 5px;
}

.pro-pagination ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #1c1d20;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  margin: 0px 2px;
  cursor: pointer;
}

.active {
  border-radius: 8px;
  cursor: pointer;
}

/*_____________ Protfolio Sidebar ______________*/

.single-sidebar {
  background: #f9f9f9;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0px 0px 22px -4px rgb(197 210 204 / 75%);
}

.categories-heading {
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.16);
  margin-bottom: 20px;
}

.categories-heading h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1c1d20;
}

.categories-list li {
  list-style-type: none;
  padding: 10px 15px;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1.5px solid #fff;
  cursor: pointer;
  transition: 0.5s ease all;
}

.categories-list li:hover {
  border: 1.5px solid #1c1d20;
  background-color: #1c1d20;
  transition: 0.5s ease all;
}

.categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1c1d20;
  font-weight: 500;
}

.categories-list li:hover a {
  color: #fff;
  transition: 0.3s all ease;
}

.categories-list li a span {
  color: #a1a1a1;
}

.categories-list li:hover a span {
  color: #fff;
  transition: 0.3s all ease;
}

.categoris-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.categoris-btn button {
  padding: 10px 35px;
  border-radius: 25px;
  background-color: #28e98c;
  border: none;
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.toogle-btn:hover {
  color: #fff;
}

.toogle-btn i {
  transform: rotate(-45deg);
  transition: 0.5s ease all;
}

.toogle-btn:hover i {
  transform: rotate(0deg);
  transition: 0.5s ease all;
}

.categoris-btn button::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #1c1d20;
  border-radius: 25px;
  left: 0;
  z-index: -1;
}

.categoris-btn button:hover::before {
  width: 100%;
  transition: 0.5s ease all;
}

.toggleTarget {
  display: none;
}

.rec-items img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
}

.rec-items {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 5px;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: 0.3s ease all;
}

.rec-items:hover {
  box-shadow: 0px 0px 22px -4px rgb(197 210 204 / 75%);
  transition: 0.3s ease all;
}

.rec-items h4 {
  font-size: 15px;
  color: #1c1d20;
  font-weight: 600;
}

.rec-items:hover h4 {
  color: #28e98c;
  transition: 0.3s ease all;
}

.rec-items p {
  font-size: 14px;
  margin-bottom: 0;
  color: #868283;
}

.side-pb-contact {
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
}

.info-widget {
  text-align: center;
}

.info-widget .logo img {
  width: 150px;
}

.info-widget .content h3 {
  color: #1c1d20;
  font-weight: 600;
}

.info-widget .content h5 {
  font-size: 20px;
  color: #666666;
  margin-bottom: 20px;
}

.info-btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 35px;
  background-color: #28e98c;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #1c1d20;
  position: relative;
  z-index: 2;
}

.info-btn:hover {
  color: #fff;
  transition: all 0.4s ease;
}

.info-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--header);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}

.info-btn:hover::before {
  width: 100%;
}

.info-btn i {
  transform: rotate(-45deg);
  transition: all 0.4s ease-out;
}

.info-btn:hover i {
  transform: rotate(0deg);
  transition: all 0.4s ease-out;
}

/*------------------------------------------------------------------
                        Contact-page-css
--------------------------------------------------------------------*/

/*******************************************
                Contact Section css
********************************************/

.contact-section {
  padding: 100px 0px;
}

/*_____________ Contact Content part ______________*/

.c-s-title {
  margin-bottom: 30px;
}

.c-s-title span {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  color: #28e98c;
}

.c-s-title h2 {
  font-size: 48px;
  font-weight: 600;
}

.c-s-title p {
  color: #666666;
  font-size: 16px;
}

.contact-item-wrapper {
  margin-bottom: 25px;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item .content span {
  color: #868283;
}

.contact-item .content h6 {
  color: #1c1d20;
}

.social-list {
  display: flex;
  gap: 15px;
}

.social-list li {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  transition: 0.5s ease all;
}

.social-list li a {
  color: #1c1d20;
  font-size: 16px;
}

.social-list li:hover {
  background-color: #28e98c;
  transition: 0.5s ease all;
}

.form-container {
  border-radius: 24px;
  background: rgb(245 244 244);
  backdrop-filter: blur(24px);
  padding: 48px;
}

.form-container h3 {
  margin-bottom: 20px;
  border-bottom: 1.5px solid rgba(102, 102, 102, 0.16);
  padding-bottom: 20px;
  font-size: 32px;
}

.contact-box input {
  width: 100%;
  background-color: #fff;
  border: 0;
  border-radius: 12px;
  outline: none;
  padding: 20px 24px;
  margin-bottom: 25px;
}

.theme-btn {
  margin-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  outline: none;
  background-color: #28e98c;
  padding: 15px 0px;
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  z-index: 1;
  position: relative;
  transition: 0.7s all ease;
}

.theme-btn::before {
  content: "";
  width: 0%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  position: absolute;
  background-color: #1c1d20;
  border-radius: 50px;
  color: #fff;
  transition: 0.7s all ease;
}

.theme-btn:hover::before {
  width: 100%;
  transition: 0.7s all ease;
}

.theme-btn i {
  transform: rotate(-45deg);
  transition: 0.7s ease all;
}

.theme-btn:hover i {
  transform: rotate(0deg);
  transition: 0.7s ease all;
}
