@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

@font-face {
  font-family: Rubik;
  src: url(../font/Rubik-VariableFont_wght.ttf) format(truetype);
}

:root {
  --primary-color: #ff4500;
  --secondary-color: #003666;
  --dark-gold: #ff4500;
  --primary-txt-color: #ff4500;
  --primary-bg-color: #ff4500;
  --secondary-text-color: #003666;
  --secondary-bg-color: #003666;
  --white: #ffffffff;
  --background-dark: #000000;
  --gold-gradient: linear-gradient(45deg,
      var(--primary-bg-color),
      var(--gold-dark));
  --rubik-font-family: "Rubik", sans-serif;
  --title-color: #15161c;
  --theme-color: #ea5501;
  --smoke-color2: #ebebeb;
  --billdins-black-rgb: 14, 18, 29;
}

/*--------------------------------------------------------------
# common class
--------------------------------------------------------------*/

body {
  font-family: var(--rubik-font-family);
}

.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  opacity: 1 !important;
}

.arrow-width {
  width: 50px;
}

@media only screen and (max-width: 767px) {
  .arrow-width {
    width: 35px;
  }
}

.bg-yellow {
  background-color: rgb(254 188 67);
}

.breadcrumb-item a {
  color: white !important;
}

.active-breadcub-text {
  color: var(--primary-txt-color);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgb(255 255 255) !important;
}

.breadcrumb-item.active {
  color: rgb(166 47 230) !important;
}

.nav-active {
  color: var(--primary-txt-color) !important;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 11px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}




.fw-600 {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headingColor);
  font-family: var(--rubik-font-family);
}

.justify-text {
  text-align: justify;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.learn-more {
  width: 12rem;
  height: auto;
}

button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--primary-bg-color);
  border-radius: 1.625rem;
}

button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: var(--secondary-text-color);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

button:hover .button-text {
  color: #fff;
}

/* breadcumb */
.breadcumb-section {
  padding: 80px;
  background-image: url("../image/gia/breadcumb/braed-bg.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 360px) {
  .breadcumb-section {
    padding: 53px;
  }
}

.breadcumb-section:before {
  background: rgba(var(--billdins-black-rgb), 0.82);
  content: "";
}

/*--------------------------------------------------------------
# back to top
--------------------------------------------------------------*/
button.back-to-top {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
  outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
  content: "";
  display: block;
  vertical-align: middle;
  border-bottom: solid 10px var(--primary-color);
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
  visibility: visible;
}

button.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}

button.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# loader 
--------------------------------------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loader.hidden {
  display: none;
}

.pl {
  width: 6em;
  height: 6em;
}

.pl__ring {
  animation: ringA 2s linear infinite;
}

.pl__ring--a {
  stroke: #f42f25;
}

.pl__ring--b {
  animation-name: ringB;
  stroke: #f49725;
}

.pl__ring--c {
  animation-name: ringC;
  stroke: #255ff4;
}

.pl__ring--d {
  animation-name: ringD;
  stroke: #f42582;
}

/* Keyframes for loader animation */
@keyframes ringA {

  from,
  4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }

  12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
  }

  32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
  }

  40%,
  54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
  }

  62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
  }

  82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
  }

  90%,
  to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
  }
}

@keyframes ringB {

  from,
  12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
  }

  20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
  }

  40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
  }

  48%,
  62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
  }

  98%,
  to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
  }
}

@keyframes ringC {
  from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  36%,
  58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  94%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

@keyframes ringD {

  from,
  8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
  }

  16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
  }

  36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
  }

  44%,
  50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
  }

  58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
  }

  78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
  }

  86%,
  to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
  }
}

/*--------------------------------------------------------------
# header-strip
--------------------------------------------------------------*/
.social-media {
  /* background: linear-gradient(to left, #da49ce, #a62fe6, #7e1bf9, #a830e5); */
  background-color: #000;
}

.header-strip-txt {
  color: var(--primary-txt-color) !important;
  font-weight: 600;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/

.header {
  background-color: var(--secondary-bg-color);
}

.navbar-toggler {
  background-color: var(--primary-color) !important;
}

.header-sec {
  background-color: var(--primary-bg-color);
}

.proposal-btn {
  font-weight: 600;
  background-color: transparent;
  transition: all 0.2s linear;
  color: #000000 !important;
}

.proposal-btn:hover {
  background: transparent;
  transform: translateY(-3px);
  transition: all 0.2s linear;
}

.underline-animation {
  color: #000;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
  display: inline;
}

.underline-animation:focus,
.underline-animation:hover {
  color: #222;
}

.underline-animation:focus:after,
.underline-animation:hover:after {
  width: 100%;
  left: 0%;
}

.underline-animation:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

@media screen and (min-width: 1023px) and (max-width: 1115px) {
  .nav-link {
    font-size: 14px;
  }
}

/* check mail btn */
.chk-mail-btn {
  color: #000;
  font-family: inherit;
  display: inline-block;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  margin: 20px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 25px;
  font-weight: 500;
  color: var(--color);
}

@media only screen and (max-width: 990px) {
  .chk-mail-btn {
    margin-left: 0px;
  }
}

.chk-mail-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: #003666;
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.chk-mail-btn:hover {
  color: #fff;
  border-color: #003666;
}

.chk-mail-btn:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.chk-mail-btn:hover:before {
  top: -30px;
  left: -30px;
}

.chk-mail-btn:active:before {
  background: #003666;
  transition: background 0s;
}

.hover-image-box {
  position: relative;
}

.hover-img-style-1 {
  position: relative;
  transition: all 300ms ease;
}

.hover-img-style-1:hover .imgg img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}

.hover-img-style-1:hover .imgg img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.hover-img-style-1 .imgg {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hover-img-style-1 .imgg img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}

.hover-img-style-1 .imgg img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.navbar-nav>li {
  position: relative;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  background-color: #fff;
  min-width: 213px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  border-radius: 15px;
  border-bottom: 3px solid var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
}

.dropdown li {
  padding: 10px 15px;
  color: black;
}

.dropdown li a {
  color: black;
}

.dropdown li:hover>a {
  color: var(--primary-txt-color);
}

/* Hover dropdown for large screens */
@media (min-width: 769px) {
  .navbar-nav li:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s linear;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown.open {
    display: block;
  }
}

/*--------------------------------------------------------------
# about section
--------------------------------------------------------------*/

.about-btn {
  padding: 11px 27px !important;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 600;
  background-color: var(--secondary-text-color);
  color: #e5db5c;
  border: 0px;
}

.about-btn:hover {
  background: var(--primary-bg-color);
  transform: translateY(-3px);
  transition: all 0.2s linear;
}

.btn-color {
  color: blue;
  border-color: #74c4ec !important;
  background-color: #caf4fa !important;
}

.heading-fw {
  font-weight: 600;
}

.font-style {
  font-style: italic;
}

.width-25 {
  width: 25px;
}

.about-img-box {
  position: relative;
}

.about-main-img-2 {
  position: absolute;
  left: -8%;
  top: 8%;
  animation: up-down2 2s linear infinite alternate;
}

.about-main-img-3 {
  position: absolute;
  right: 0px;
  bottom: 4%;
  animation: up-down2 2s linear infinite alternate;
}

@keyframes up-down2 {
  0% {
    transform: translateY(35px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(35px);
  }
}

.section-tittle-box {
  padding: 9px 13px 9px 13px;
  background-color: var(--secondary-bg-color);
  font-weight: 600;
  border-radius: 25px;
  width: fit-content;
  font-size: 12px;
  color: white;
}

.about-us-list li {
  padding-bottom: 8px;
}

.about-us-list li p {
  color: #646262;
}

@media screen and (max-width: 767px) {
  .about-main-img-3 img {
    width: 150px;
  }

  .about-main-img-2 img {
    width: 50px;
  }
}

.single-card {
  background-color: #e6f0f5;
  padding: 34px 29px;
  border-radius: 30px;
  border-bottom: 3px solid #003666;
}

.card-2 {
  padding: 34px 29px;
  border-radius: 30px;
  background-color: rgb(255, 243, 236);
  border-bottom: 3px solid rgb(243, 128, 53);
}

.card-3 {
  padding: 34px 29px;
  border-radius: 30px;
  background-color: rgb(232, 246, 255);
  border-bottom: 3px solid rgb(11, 65, 100);
}

.number h5 {
  font-family: "Rubik", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 26px;
  color: var(title-color);
  margin-bottom: 18px;
}

.card-content h5 {
  font-family: "Rubik", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(title-color);
  margin: 0;
}

.card-content .number {
  display: flex;
  justify-content: center;
}

.girl-shape {
  position: absolute;
  top: 20%;
  left: -1%;
  z-index: -1;
}

.insight-tree {
  position: absolute;
  bottom: 5%;
  left: -4%;
  z-index: -1;
}

.insight-tree img {
  max-width: 400px;
}

@media only screen and (max-width: 390px) {
  .insight-tree img {
    max-width: 200px;
  }
}

.insight-ballon {
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: -1;
}

.value-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
}

.value-card:hover {
  transition: all 0.3s linear;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  transform: translateY(-3px);
}

.presence-card {
  width: 100%;
  height: 100%px;
  border-radius: 20px;
  background: #f5f5f5;
  position: relative;
  padding: 1rem;
  border: 2px solid #c3c6ce;
  -webkit-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  overflow: visible;
  cursor: pointer;
}

.card-details {
  color: rgb(162, 0, 255);
  height: 100%;
  overflow: hidden;
}

.card-details img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.card-button {
  text-decoration: none;
  text-align: center;
  transform: translate(-50%, 125%);
  width: 70%;
  border-radius: 1rem;
  border: none;
  background-color: var(--secondary-bg-color);
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  opacity: 0;
  transition: 0.3s ease-out;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  z-index: 10;
}

.text-body {
  color: rgb(134, 134, 134);
}

/*Text*/
.text-title {
  font-size: 1.5em;
  font-weight: bold;
}

/*Hover*/
.presence-card:hover {
  border-color: var(--primary-color);
  -webkit-box-shadow: 10px 5px 18px 0 rgba(255, 255, 255, 0.877);
  box-shadow: 10px 5px 18px 0 rgba(255, 255, 255, 0.877);
}

.presence-card:hover .card-button {
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  opacity: 1;
}

.about-img {
  width: 470px !important;
}
.about-img-tag-line{
  font-size: 22px;
}
@media only screen and (max-width: 490px) {
.about-img-tag-line{
  font-size: 17px;
}
}

@media only screen and (max-width: 767px) {
  .about-img {
    width: 360px !important;
  }
}

/*--------------------------------------------------------------
# Our Driving Force
--------------------------------------------------------------*/

.olympiad-card {
  width: 100%;
  height: 100%;
  padding: 16px 11px 16px 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #333;
  border-radius: 0px;
  cursor: pointer;
  position: relative;
  transition: all 0.7s ease-in-out;
  overflow: hidden;
  flex-direction: column;
  font-weight: 700;
}

.olympiad-card-bg-color-1 {
  background-color: #fcefe3;
}

.olympiad-card-bg-color-2 {
  background-color: #e8f5e9;
}

.olympiad-card-bg-color-3 {
  background-color: #fff9c4;
}

.olympiad-card-bg-color-4 {
  background-color: #e3f2fd;
}

.olympiad-card-bg-color-5 {
  background-color: #f1f8e9;
}

.olympiad-card-bg-color-6 {
  background-color: #ede7f6;
}

.olympiad-card::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  background: linear-gradient(90deg, #ff4500 0%, #ff4500 50%, #ffd8a5 100%);

  bottom: 0;
  right: 0;
  transform: translatey(83px);
  border-radius: 100%;
  transition: all 0.7s ease-in-out;
}

.c-txt {
  z-index: 2;
  text-align: center;
}

.force-img-box {
  align-items: center;
  background-color: #ffff;
  border-radius: 50%;
  display: flex;
  height: 90px;
  justify-content: center;
  padding: 5px;
  width: 90px;
  z-index: 2;
}

.force-img-box img {
  width: 70%;
}

.olympiad-card:hover::before {
  transform: scale(7) translate(-20px);
}

.olympiad-card:hover {
  color: #f3f3f3;
  transition: all 0.3s linear;
}

.olympiad-card:hover .force-img-box {
  background-color: white;
  transition: all 0.3s linear;
  z-index: 3;
}

/*--------------------------------------------------------------
# service section
--------------------------------------------------------------*/
.service-section {
  background-image: url("../image/gia/service/service-bg.png");
  background-attachment: fixed;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.service-card {
  background: #fff;
  border-radius: 0;
  padding: 30px 60px 36px 90px;
  border: 1px solid #fff;
  position: relative;
  /* margin-bottom: 25px; */
  transition: 0.4s;
}

.service-card-shadow-text {
  position: absolute;
  transform: rotate(-90deg) translate(-50%);
  font-size: 29px;
  font-weight: 600;
  font-family: var(--title-font);
  color: transparent;
  -webkit-text-stroke: 1px #15161c;
  transform-origin: left top;
  top: 50%;
  left: 35px;
  opacity: 0.15;
}

.service-card_content {
  padding: 0 0 0 10px;
}

.service-card:after {
  content: "";
  position: absolute;
  right: 40px;
  top: 65px;
  width: 157px;
  height: 1px;
  background: #15161c;
  opacity: 0.1;
}

.service-card_icon {
  display: inline-block;
  margin-bottom: 35px;
  position: relative;
  padding: 10px 0 0 10px;
  margin-left: -10px;
}

.service-card_icon img {
  transition: 0.4s;
}

.service-card_title {
  margin-top: -0.3em;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 24px;
}

.service-card_text {
  font-size: 16px;
  margin-bottom: 23px;
}

.service-card_title a {
  color: var(--title-color);
}

.service-card_icon:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: var(--theme-color);
  opacity: 0.1;
}

.service-card:hover {
  border-color: var(--theme-color);
}

.service-card:hover .service-card_icon img {
  transform: rotateY(180deg);
}

@media only screen and (min-width: 410px) {
  .service-text-nowrap {
    white-space: nowrap !important;
  }
}

/*--------------------------------------------------------------
# Shaping Infrastructure 
--------------------------------------------------------------*/

.card-box {
  border-radius: 50px;
  border-top: 1px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.card-box:hover {
  transform: translateY(-3px);
  transition: all 0.3s linear;
}

.purpose-and-care-position {
  position: relative;
}

.purpose-and-care-card-position {
  position: absolute;
  top: 226px;
}

@media screen and (max-width: 676px) {
  .purpose-and-care-card-position {
    top: 400px;
  }
}

@media screen and (min-width: 1023px) {
  .width-50 {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Legislative
--------------------------------------------------------------*/
.content-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  width: 100%;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
  background-color: #000;
  color: #ffffff;
  text-align: left;
  font-weight: bold;
}

.content-table th,
.content-table td {
  padding: 21px 25px;
  font-weight: 700;
}

.content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #ff4500;
}

.content-table tbody tr:hover td {
  font-weight: bold;
  color: #ff4500;
  transition: all 0.2s linear;
  cursor: pointer;
}

.table-w-70 {
  width: 70%;
}

.table-download-btn {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ea5501;
  overflow: hidden;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# why-chose-us
--------------------------------------------------------------*/
.why-chose-us {
  background-image: url("../image/gia/why-chose-us/why-bg.jpg");
  background-attachment: fixed;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 80px;
}

@media only screen and (max-width: 1024px) {
  .why-chose-us {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# founder
--------------------------------------------------------------*/
.team-box {
  position: relative;
}

.shape.shape-1 .shape-dot {
  position: absolute;
  left: 40px;
  top: 70%;
  width: 50px;
  z-index: -1;
  height: 50px;
  border: 5.4px solid rgba(248, 111, 3, 0.5);
  border-radius: 50%;

  animation: eduvibe-zoom2 4s ease-in-out infinite alternate;
}

@keyframes eduvibe-zoom2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.shape-2 .shape-dot {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 30%;
  z-index: -1;
  border: 5.4px solid rgba(248, 111, 3, 0.5);
  border-radius: 50%;
  animation: eduvibe-zoom2 1s ease-in-out infinite alternate;
}

@keyframes eduvibe-zoom2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.shape-3 .shape-dot {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 30%;
  right: 0px;
  z-index: -1;
  border: 5.4px solid rgba(248, 111, 3, 0.5);
  border-radius: 50%;
  animation: eduvibe-zoom2 1s ease-in-out infinite alternate;
}

.floating-image img {
  position: absolute;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.founder-box {
  background-color: white;
  padding: 5px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  overflow: hidden;

}

/* .founder-box:hover img{
  transform: scale(0.9);
    transition: all 0.3s linear;

} */

.team-card {
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  width: 100%;
  height: 250px;
  overflow: visible;
  cursor: pointer;
}

.team-img-box {
  width: 70%;
  height: 200px;
  overflow: hidden;
  border-radius: 5px;
  margin: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  z-index: 2;
  border: 2px solid #fff;

  padding: 3px;
  transition: all 0.3s linear;
}

.team-card:hover .team-img-box {
  top: -29%;
  border: 2px dotted #ff4500;

}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 5px;

}

.team-txt {
  margin-top: 170px;
}

.team-section {
  margin-top: 100px;
}

.team-card-mt {
  margin-top: 120px;
}

@media only screen and (max-width: 990px) {
  .team-card-mb {
    margin-bottom: 93px;
    margin-top: 30px;
  }
}









/*--------------------------------------------------------------
# client
--------------------------------------------------------------*/
#slider {
  position: relative;
  width: 50%;
  height: 20vw;
  margin: 70px auto;
  font-family: "Helvetica Neue", sans-serif;
  perspective: 1400px;
  transform-style: preserve-3d;
}

@media only screen and (max-width: 600px) {
  #slider {
    width: 56%;
    height: 35vw;
    margin: 50px auto;
    margin-top: 10px;
  }
}

input[type="radio"] {
  position: relative;
  top: 114%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: 0 15px 0 0;
  opacity: 0.4;
  transform: translateX(-83px);
  cursor: pointer;
}

input[type="radio"]:nth-child(5) {
  margin-right: 0px;
}

input[type="radio"]:checked {
  opacity: 1;
}

#slider label,
#slider label img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: white;
  font-size: 70px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 400ms ease;
}

/* Active Slide */
#s1:checked~#slide1,
#s2:checked~#slide2,
#s3:checked~#slide3,
#s4:checked~#slide4,
#s5:checked~#slide5 {
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
  transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#s1:checked~#slide2,
#s2:checked~#slide3,
#s3:checked~#slide4,
#s4:checked~#slide5,
#s5:checked~#slide1 {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
  transform: translate3d(20%, 0, -100px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Next to Next Slide */
#s1:checked~#slide3,
#s2:checked~#slide4,
#s3:checked~#slide5,
#s4:checked~#slide1,
#s5:checked~#slide2 {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transform: translate3d(40%, 0, -250px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Previous to Previous Slide */
#s1:checked~#slide4,
#s2:checked~#slide5,
#s3:checked~#slide1,
#s4:checked~#slide2,
#s5:checked~#slide3 {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transform: translate3d(-40%, 0, -250px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Previous Slide */
#s1:checked~#slide5,
#s2:checked~#slide1,
#s3:checked~#slide2,
#s4:checked~#slide3,
#s5:checked~#slide4 {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
  transform: translate3d(-20%, 0, -100px);
  filter: brightness(50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.client-card {
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.212);
  background: #fff;
  display: flex;
  border-radius: 20px;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  border-bottom: 2px solid #ffff;
}

.client-card::before {
  content: "---Trusted Us---";
  letter-spacing: 0.2em;
  position: absolute;
  bottom: 8px;
  left: 20px;
  color: green;
  font-size: 0.8em;
  font-weight: 700;
  margin: auto;
}

.client-card div {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.212);
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s;
  background-color: #fff;
  overflow: hidden;
}

.client-card div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card:hover div {
  transform: translateY(-37px);
}

.client-card:hover.client-card {
  border-bottom: 2px solid #ff4500;
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/

.form-bg {
  /* background: linear-gradient(180deg, #43a36e 8%, #43a36e 100%); */
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

/* .form-bg h3 {
    color: var(--primary-color);
} */

.image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  background-color: #f0faff;
  border-radius: 10px;
  padding: 30px;
}

.form-control,
.input-group-text {
  border: none;
  border-radius: 20px;
  background-color: #ffffff;
}

.input-group-text i {
  color: black;
}

.form-control:focus {
  border: 1px solid var(--primary-color);
  box-shadow: none;
}

.send-btn {
  border-radius: 25px;
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.send-btn:hover {
  background-color: var(--secondary-bg-color);
  border: none;
  color: var(--primary-txt-color);
  transform: translateY(-2px);
  transition: all 0.3s linear;
  border: 2px solid var(--primary-color);
}

.input-group {
  border-bottom: 2px solid black;
  display: flex;
  align-items: start;
  background-color: var(--white);
  /* border-radius: 20px; */
  padding: 5px 10px;
  color: var(--color-white);
}

.input-group-text {
  background: none;
  border: none;
  display: flex;
  align-self: flex-start;
}

.input-group .form-control {
  border: none;
  background: none;
}

.social-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 5px;
  background-color: #d3e3fd;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-box img {
  width: 75%;
  animation: zoomInOut 2s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}

.form-social-section:hover {
  transform: translateY(-5px);
  transition: all 0.3s linear !important;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px !important;
  cursor: pointer;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer-bottom-borader {
  border-bottom: 1px solid #e5db5c;
}

.footer-qlink ul li {
  padding-bottom: 7px;
}

.footer-qlink ul li a {
  font-size: 15px;
}

.footer-social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
}

footer {
  background-color: var(--background-dark);
}

footer .footer-link {
  font-weight: 600;
  color: var(--white) !important;
}

.bg-body-tertiary {
  background-color: #000 !important;
}

footer h6 {
  color: var(--primary-color);
}

footer p {
  color: var(--white) !important;
}

.vl {
  border-left: 2px solid var(--primary-color);
  height: 12px;
}

.let-get-socail {
  color: var(--primary-color);
}

.parent-company-name {
  color: var(--primary-color);
}

.title-box {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 24px;
}

.title-box h2 {
  color: var(--primary-color);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.title-box .line {
  position: relative;
  display: block;
  height: 2px;
  width: 105px;
  background: var(--primary-bg-color);
}

.title-box .line:before {
  position: absolute;
  top: 0;
  right: -25px;
  width: 20px;
  height: 2px;
  background: var(--primary-bg-color);
  content: "";
}

/*--------------------------------------------------------------
# career section
--------------------------------------------------------------*/
.career h6 {
  text-align: justify;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Inner page css start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# common class for inner pages
--------------------------------------------------------------*/
/* background image animation */

/* image animation1 */
.animate-on-scroll-image-type1 {
  opacity: 0;
}

.swing-in-left-bck {
  animation: swing-in-left-bck 3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes swing-in-left-bck {
  0% {
    transform: rotateY(-70deg);
    transform-origin: left;
    opacity: 0;
  }

  100% {
    transform: rotateY(0);
    transform-origin: left;
    opacity: 1;
  }
}

/* image-animation2 */
.animate-on-scroll-image-type2 {
  opacity: 0;
}

.swing-in-right-bck {
  animation: swing-in-right-bck 3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes swing-in-right-bck {
  0% {
    transform: rotateY(70deg);
    transform-origin: right;
    opacity: 0;
  }

  100% {
    transform: rotateY(0);
    transform-origin: right;
    opacity: 1;
  }
}

/* text-slide animation1 */
.animate-on-text1 {
  opacity: 0;
}

.slide-in-br {
  animation: slide-in-br 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-in-br {
  0% {
    transform: translateY(100px) translateX(100px);
    filter: blur(4px);
    opacity: 0;
  }

  100% {
    transform: translateY(0) translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 1023px) {
  @keyframes slide-in-br {
    0% {
      transform: translateY(100px) translateX(0px);
      filter: blur(4px);
      opacity: 0;
    }

    100% {
      transform: translateY(0) translateX(0);
      filter: blur(0);
      opacity: 1;
    }
  }
}

/* text-slide-animation2 */
.animate-on-text2 {
  opacity: 0;
}

.slide-in-bck-bl {
  animation: slide-in-bck-bl 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-in-bck-bl {
  0% {
    transform: translateZ(100px) translateY(100px) translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateZ(0) translateY(0) translateX(0);
    opacity: 1;
  }
}

/* tittle-txt animation */
.tracking-in-contract {
  animation: tracking-in-contract 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }

  40% {
    opacity: 0.6;
  }

  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

/* bounce-top-animation */
.bounce-in-top {
  animation: bounce-in-top 1.1s both;
  animation-delay: 1.3s;
}

@keyframes bounce-in-top {
  0% {
    transform: translateY(-500px);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }

  55% {
    transform: translateY(-65px);
    animation-timing-function: ease-in;
  }

  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  81% {
    transform: translateY(-28px);
    animation-timing-function: ease-in;
  }

  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }

  95% {
    transform: translateY(-8px);
    animation-timing-function: ease-in;
  }

  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}

/* hero section line animation */
.scribble {
  position: relative;
  background-image: none;
  background-color: transparent;
  color: #ff4500;
  font-size: 60px;
  padding-left: 0px;

  &::after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 0px;
    height: 37%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: 95%;
    width: 100%;
    background-image: linear-gradient(to right,
        currentcolor 40%,
        transparent 50%);
    background-repeat: no-repeat;
    animation: background-size-300 0.4s 0.9s ease-in both;
    background-size: 300%;
  }
}

@keyframes background-size-300 {
  from {
    background-size: 0%;
  }

  to {
    background-size: 300%;
  }
}

/* inner animated btn */
.inner-btn1 {
  width: fit-content;
  padding: 10px 18px;
  background: black;
  color: #ff9400;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 425px) {
  .inner-btn1 {
    font-size: 13px;
  }
}

.inner-btn1:hover {
  color: black;
}

.inner-btn1:after {
  content: "";
  background: #ff9400;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}

.inner-btn1:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* call to action section */
.call-to-action-section {
  background-image: url("../image/inner-page/product/15\ \(2\).jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.btn-shke {
  animation: tilt-shaking 0.5s linear infinite;
}

@keyframes tilt-shaking {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(0eg);
  }

  75% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.btn-shke:hover {
  animation: none;
}

/* shape or elements image css heart */
.pro-unique-shape {
  position: absolute;
  right: -65px;
  top: -52px;
}

.pro-unique-shape img {
  width: 100px;
}

/*--------------------------------------------------------------
#1 Influencer Marketing /SMM
--------------------------------------------------------------*/

#hero-section {
  background: linear-gradient(to left, #da49ce, #a62fe6, #7e1bf9, #a830e5);
  display: flex;
  align-items: center;
}

#hero-section h1 {
  font-size: 50px;
  line-height: 68px;
}

#hero-section p {
  font-size: 18px;
}

.infu-btn {
  width: fit-content;
  background-color: white;
  color: black;
}

.infu-btn:hover {
  transition: all 0.3s linear;
  background-color: #febc43;
  color: white !important;
}

.spec-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  transition: all 0.3s ease-in-out;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.spec-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: #6a11cb;
  margin-bottom: 20px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.spec-list {
  list-style: none;
}

.spec-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #444;
}

.spec-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #6a11cb;
  font-weight: bold;
}

.spec-row {
  margin-top: 30px;
  margin-bottom: 30px;
}

.unique-edge h2 {
  font-size: 32px;
  color: #333;
}

.unique-edge-list {
  list-style: none;
  padding-left: 0;
}

.unique-edge-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #444;
}

.unique-edge-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #6a11cb;
  font-weight: bold;
}

#bottom {
  background-color: #f8f9fa;
  padding: 50px 20px;
  box-sizing: border-box;
}

.heading {
  text-align: center;
  margin-bottom: 30px;
}

.heading h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.heading .btn {
  font-size: 18px;
  padding: 12px 40px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(to left, #da49ce, #a62fe6, #7e1bf9, #a830e5);
}

.elemests-img-box {
  position: relative;
}

.product-shap {
  position: absolute;
}

.up-down {
  animation: UpDown 3s linear infinite;
}

@keyframes UpDown {
  0% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(-30px);
  }
}

/*--------------------------------------------------------------
#2 Content Creation
--------------------------------------------------------------*/
.content-hero {
  background-image: url(../image/inner-page//website-design/content-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0px !important;
}

.creation-tittle h1 {
  font-size: 65px;
}

@media screen and (max-width: 676px) {
  .creation-tittle h1 {
    font-size: 30px;
  }

  .creation-highlighted-txt {
    font-size: 50px;
  }
}

.tab-box {
  background-color: #565555;
  padding: 10px 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #febc43;
  transition: 0.3s;
}

.tab-box img {
  width: 37px;
}

#our-specifications .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: transparent;
}

.tab-radius-box-one {
  border-radius: 2rem 0rem 0rem 2rem;
}

.tab-radius-box-two {
  border-radius: 0rem 2rem 2rem 0rem;
}

.tab-box h5 {
  margin-top: 10px;
  font-weight: 600;
  font-size: 15px;
}

.nav-link.active .tab-box,
.nav-link:focus .tab-box {
  background-color: #febc43;
  color: white;
}

.nav-link.active .tab-box i,
.nav-link:focus .tab-box i {
  color: white;
}

.tab-box:hover {
  background-color: #febc43;
  color: white;
}

.tab-content-img {
  height: 20px;
}

.our-spec-card {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.our-spec-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s linear;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.our-spec-card:hover img {
  transition: 1s;
  transform-style: preserve-3d;
  transform: rotateY(360deg);
}

.our-spec-card img {
  width: 67px;
}

/* responsive */

@media only screen and (max-width: 1024px) {
  .tab-radius-box-one {
    border-radius: 0rem;
  }

  .tab-radius-box-two {
    border-radius: 0rem;
  }
}

@media only screen and (max-width: 991px) {
  .nav-item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
#3 Video Production
--------------------------------------------------------------*/

.video-section {
  background-image: url(../image/inner-page/video/video-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 105px 0px !important;
}

@media screen and (max-width: 676px) {
  .video-section {
    padding: 50px 0px !important;
  }
}

/*--------------------------------------------------------------
#4 Product / Brand Shoot Our Specifications
--------------------------------------------------------------*/
.Product-section {
  background-image: url(../image/inner-page/product/bg11.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0px;
}

@media screen and (max-width: 676px) {
  .Product-section {
    padding: 50px 0px !important;
  }
}

.book {
  position: relative;
  border-radius: 10px;
  width: 100%;
  height: 390px;
  background-color: whitesmoke;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transform: preserve-3d;
  perspective: 2000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #000;
  padding: 15px 10px !important;
}

.cover {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s;
  transform-origin: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cover-color1 {
  background-color: #efdceb;
}

.cover-color2 {
  background-color: #dff6f5;
}

.cover-color3 {
  background-color: #daf1dc;
}

.cover-color4 {
  background-color: #e2dcf3;
}

.book:hover .cover {
  transition: all 0.5s;
  transform: rotatey(-130deg);
}

@media screen and (max-width: 676px) {
  .book:hover .cover {
    transition: all 0.5s;
    transform: rotatey(-87deg);
  }
}

@media screen and (max-width: 676px) {
  .product-hightlighted-txt {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
#5 Graphic Design & Animation
--------------------------------------------------------------*/
.graphic-hero {
  background-image: url(../image/inner-page/graphic/graphic-hero.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0px !important;
}

@media screen and (max-width: 676px) {
  .graphic-hero {
    padding: 50px 0px !important;
  }
}

.graphic-tittle h1 {
  font-size: 55px;
}

.graphic-highlighted-txt {
  font-size: 65px;
}

@media screen and (max-width: 676px) {
  .graphic-tittle h1 {
    font-size: 30px;
  }

  .graphic-highlighted-txt {
    font-size: 39px;
  }
}

.graphics-animation .nav-item .nav-link {
  background: linear-gradient(145deg, #2e2e2e, #1f1f1f);
  color: #febc43;
  border: none;
  border-radius: 16px;
  margin-top: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  text-align: left;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: perspective(800px) rotateX(0deg);
}

.graphics-animation .tab-card {
  padding: 10px 12px;
}

.graphics-animation .nav-item .img-box {
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphics-animation img {
  width: 100%;
  object-fit: contain;
}

.graphics-animation .nav-item .nav-link:hover,
.graphics-animation .nav-item .nav-link:focus,
.graphics-animation .nav-item .nav-link.active {
  background: #febc43;
  color: #1f1f1f;
  transform: perspective(800px) rotateX(4deg) translateY(-4px);
  box-shadow: 0 12px 28px rgba(254, 188, 67, 0.35);
}

/* Glowing animated border highlight */
.graphics-animation .nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
      rgba(254, 188, 67, 0.15),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.graphics-animation .nav-item .nav-link:hover::before {
  opacity: 1;
  animation: pulseGlow 1.6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.25;
  }

  100% {
    transform: scale(1);
    opacity: 0.15;
  }
}

/* h5 styling inside nav */
.graphics-animation .nav-item h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  z-index: 2;
  position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .graphics-animation .nav-item .nav-link {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .graphics-animation .nav-item h5 {
    font-size: 0.95rem;
  }
}

.graphics-animation .tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.graphics-animation .tab-pane.active.show {
  opacity: 1;
  transform: translateY(0);
}

/* List item spacing */
.graphics-animation .list-item {
  list-style: none;
  width: 100%;
  padding: 10px 0;
}

/* Modern item card */
.graphics-animation .item-card {
  width: 100%;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
}

.graphics-animation .item-card:hover {
  background: #ffe385;
  box-shadow: 0 12px 28px rgba(254, 188, 67, 0.2);
  transform: translateY(-5px);
  border-color: rgba(254, 188, 67, 0.2);
  cursor: pointer;
}

.graphics-animation .item-card:hover .item-card-body h6 {
  color: #000;
}

.graphics-animation .item-card:hover .item-card-body p {
  color: #000;
}

.graphics-animation .item-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(254, 188, 67, 0.1) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.graphics-animation .item-card:hover::before {
  opacity: 1;
}

/* Image  */
.graphics-animation .item-card-img {
  width: 60px;
  height: 60px;
  background-color: #fff1c5;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s;
}

.graphics-animation .item-card-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.item-card:hover img {
  transition: 1s;
  transform-style: preserve-3d;
  transform: rotateY(360deg);
}

/* Text content */
.graphics-animation .item-card-body {
  z-index: 2;
}

.graphics-animation .item-card-body h6 {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--headingColor);
}

.graphics-animation .item-card-body p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .graphics-animation .item-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .graphics-animation .item-card-img {
    width: 50px;
    height: 50px;
  }

  .graphics-animation .item-card-body h6 {
    font-size: 1rem;
  }

  .graphics-animation .item-card-body p {
    font-size: 0.875rem;
  }
}

/*--------------------------------------------------------------
#6 Portfolio/Website Design
--------------------------------------------------------------*/
.website-desgin-section {
  background-image: url(../image/inner-page/website-design/bg11.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0px !important;
}

.website-intrao-shape {
  position: absolute;
  right: 0px;
  top: -50px;
}

@media screen and (max-width: 676px) {
  .website-desgin-section {
    padding: 50px 0px !important;
  }

  .website-hightlighted-txt {
    font-size: 35px;
  }
}

/*--------------------------------------------------------------
# modal carrer form
--------------------------------------------------------------*/

.form-border .form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-border .form-control:focus {
  border: 1px solid #febc43;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.form-border .form-label {
  font-size: 14px;
  font-weight: 500;
}

.modal-dialog-scrollable ::-webkit-scrollbar {
  width: 3px !important;
}

/*--------------------------------------------------------------
# modal inquiry-form
--------------------------------------------------------------*/
/* Checkbox Styling */

.checkbox-wrapper-46 input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.checkbox-wrapper-46 .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox-wrapper-46 .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid var(--primary-color);
  transition: all 0.2s ease;
}

.checkbox-wrapper-46 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-46 .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}

.checkbox-wrapper-46 .cbx span:last-child {
  padding-left: 8px;
}

.checkbox-wrapper-46 .cbx:hover span:first-child {
  border-color: var(--primary-color);
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child {
  background: var(--primary-color);
  border-color: var(--primary-color);
  animation: wave-46 0.4s ease;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}

/*--------------------------------------------------------------
# landing-animated-tittle
--------------------------------------------------------------*/
.landing-animated-tittle {
  font-size: 45px;
}

@media screen and (max-width: 375px) {
  .landing-animated-tittle {
    font-size: 22px;
  }
}

@media screen and (min-width: 376px) and (max-width: 767px) {
  .landing-animated-tittle {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .landing-animated-tittle {
    font-size: 42px;
  }
}

/* confirming-sectors    */
.confirming-sectors-card {
  border-top: 5px solid #f0cec1;
  border-bottom: 5px solid #f0cec1;
}

.confirming-sectors-card:hover {
  box-shadow: #8a8989 0px 30px 60px -12px, #8a8989 0px 18px 36px -18px,
    #8a8989 0px 10px 20px -10px;
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.confirming-sectors-card:hover .proud-customers-txt {
  color: var(--primary-txt-color) !important;
}

.proud-customers-txt {
  font-size: 18px;
  font-weight: 700;
}

.proud-customers-img-box {
  width: 100%;
  height: 160px;
}

.proud-customers-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .proud-customers-img-box {
    width: 100%;
    height: 229px;
  }
}

@media only screen and (max-width: 375px) {
  .proud-customers-txt {
    font-size: 15px;
  }
}

.navbar-nav {
  gap: 15px !important;
}

