/**
Index
1.General
2.Sections & Section Header
3.Breadcrumbs
4.Scroll top button
5.Preloader
6.Disable aos animation delay on mobile devices
7. Home page
  1.Header
  2.Desktop Navigation
  3.Mobile Navigation
  4.Hero Section
  5.Services Section
  6.Clients Section
  7.Blog Section
  13.Contact Section
8.Services Page
8.Projects Page

20. Footer Section


**/

/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: 'poppins', sans-serif;
}

/* Colors */
:root {
  --color-default: #0D0F14;
  --color-primary: #FF7D00;
  --color-secondary: #A5B5C5;
  --color-third: #FCC236;
  --bg-color: #ffffff;
  --color-white: #ffffff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px; 
}

::-webkit-scrollbar-track {
  background: var(--color-default);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-third);
  border-radius: 6px;
  border: 2px solid #f1f1f1;
}

/* Optional: On hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-third);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  background-color: var(--bg-color);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  color: var(--color-default);
  font-family: var(--font-primary);
  margin: 0;
  padding: 0;
}

.btn {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: 8px 14px;
  color: var(--color-white);
  background: linear-gradient(to right, var(--color-default), var(--color-third));
  font-family: var(--font-primary);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: none;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 1;
}

/* Pseudo-element for smooth bg transition */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-third); /* Solid hover color */
  transition: width 0.4s ease;
  z-index: -1;
}

.btn:hover{
  color: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* On hover, fill background from right smoothly */
.btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn span {
  padding: 8px 12px;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn span i {
  transform: rotate(-30deg);
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn:hover span {
  background-color: var(--color-default);
}

.btn:hover span i {
  transform: rotate(0deg);
}

.whatsapp-btn {
  position: fixed;
  right: 15px;
  bottom: 120px;
  z-index: 996;
  background: #20BF6B;
  width: 60px;
  height: 60px;
  font-size: 24px;
  border-radius: 50px;
  transition: all .4s;
}


@media (max-width: 767px) {
  .btn {
    padding: 8px 12px;
    font-size: 14px;
  }
  .btn span {
    padding: 4px 8px;
  }
  
  .btn span i {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 70px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 20px;
  color: var(--color-default);
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }

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

}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 40vh;
  position: relative;
  background-color: var(--color-third);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: var(--color-white);
  font-family: var(--font-primary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

@media (max-width: 767px) {
  .breadcrumbs .page-header{
    min-height: 30vh;
    padding: 80px 0 0px 0;
  }

  .breadcrumbs .page-header h2 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-third);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 25px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--bg-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-white);
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  height: 80px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: transparent;
  z-index: 997;
  transition: all .3s ease-in-out;
}

.header .nav-bg{
  padding: 0px 8px;
  background-color: var(--color-white);
  transition: all .3s ease-in-out;
}

.header.sticked {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.header.sticked .nav-bg {
  padding: 0px;
  background-color: transparent;
}

.header .logo img {
  max-height: 70px;
  margin-right: 30px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--color-default);
}

/* .sticked-header-offset {
  margin-top: 70px;
} */

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 16px 0;
  z-index: 99;
  background: var(--color-white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

@media (min-width: 1280px) {
  .navbar .dropdown ul {
    opacity: 0;
    visibility: hidden;
  }

  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-default);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(60deg, var(--color-primary), var(--color-third));
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-default);
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: var(--color-default);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .mobile-nav-active .header.sticked {
    backdrop-filter: none;
  }
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar>ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-secondary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--color-primary);
  }

  .navbar .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 46, 106, 0.8);
    z-index: 9996;
  }

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 800px;
}

.slide-container{
  max-width: 1000px;
  margin: 0 auto;
}

.hero-slider .swiper-slide{
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.hero-slider .swiper-slide .hero-text{
  padding: 30px 20px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  animation: zoomIn 3s ease-in-out infinite alternate;
}

.hero-slider .swiper-slide .hero-text .slider-title{
  font-size: 58px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: 'Ribeye';
}

.hero-slider .slide1 .hero-text{
  background-color: rgba(0, 0, 0, 0.2);
}

.hero .slide1 .slider-title{
  color: var(--color-white);
}

.hero-slider .slide2 .hero-text{
  background-color: rgba(0, 0, 0, 0.2);
}

.hero .slide2 .slider-title{
  color: var(--color-white);
}

.hero-slider .swiper-slide .hero-text p{
  font-size: 18px;
  color: var(--color-default);
  margin-top: 20px;
}

.hero .slide1 .hero-text p{
  color: var(--color-white);
}

.hero .slide2 .hero-text p{
  color: var(--color-white);
}

.hero-slider .swiper-slide .hero-text .btn{
  margin-top: 24px;
}

.hero-slider .swiper-slide .hero-img img{
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev{
  height: 60px;
  padding: 0 16px;
  background-color: var(--color-default);
  left: 80px;
}

.hero-slider .swiper-button-next{
  top: 55%;
}

.hero-slider .swiper-button-prev{
  top: 45%;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.swiper-pagination-bullet{
  background-color: var(--color-white);
  opacity: 1;
}

.swiper-pagination-bullet-active{
  background-color: var(--color-third);
  opacity: 1;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@media (max-width: 993px) {
  .hero {
    height: 600px;
  }
  .slide-container{
    padding: 0px 30px;
  }
  .hero-slider .swiper-slide .hero-text{
    height: 230px !important;
    padding: 20px;
  }

  .hero-slider .swiper-slide .hero-text .slider-title{
    font-size: 24px;
    font-weight: 600;
  }

  .hero-slider .swiper-slide .hero-text p{
    font-size: 14px;
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .hero {
    height: 300px;
  }
  .slide-container{
    width: 350px;
  }
  
  .hero-slider .swiper-slide .hero-text{
    height: 180px !important;
    padding: 16px;
    margin-top: 70px;
  }
   .hero-slider .swiper-slide .hero-text .slider-title{
    font-size: 18px;
  }
  .hero-slider .swiper-slide .hero-text .btn{
    padding: 3px 8px;
    font-size: 12px;
    margin-top: 12px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
}

.about .section-header h2 {
  color: var(--color-white);
}

.about-card {
  padding: 40px;
  border-radius: 20px;
}

.about-img {
  padding: 20px;
  border-radius: 20px;
  border: 2px solid var(--color-third);
  overflow: hidden;
}

.about-img img {
  transition: all .3s ease-in-out;
}

.mission-image img {
  height: 500px;
  width: 100%;
}

.about-img:hover img {
  transform: scale(1.1);
}

.about-text {
  height: 100%;
  padding: 50px;
  transition: all .3s ease-in-out;
  border-radius: 20px;
  background-color: var(--color-white);
}

.about-text h4 {
  font-size: 20px;
  color: var(--color-third);
  font-weight: 500;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 16px;
  letter-spacing: .5px;
}

.about-text p {
  color: #333333;
  margin-top: 16px;
}

.about-card:hover .about-text {
  background-color: var(--color-white);
  transform: translateX(-150px);
  box-shadow: 1px 5px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1280px) {
  .about-img {
    height: 100%;
  }
  
  .about-img img {
    height: 100%;
  }
}

@media (max-width: 993px) {
  .about-card {
    padding: 0;
  }

  .about-card:hover .about-text {
    transform: none;
  }

  .about-text {
    padding: 20px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    color: #333333;
    margin-top: 16px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
  overflow: hidden;
  --circle-size: 100px;
  --circle-top: 2%;
  --circle-left: 5%;
}

.service-container {
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  height: 455px;
  padding: 20px;
  transition: all .4s ease-in-out;
}

.service-card:hover{
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
}

.service-card .card-img img{
  width: 100%;
  height: 220px;
}

.service-card .card-text h3{
  height: 60px;
  font-size: 22px;
  font-weight: 600;
  padding-top: 5px;
  margin-top: 20px;
  color: var(--color-default);
}

.service-card .card-text p{
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.1;
  color: var(--color-default);
}

.service-card .card-text .btn{
  padding: 4px 12px;
  font-size: 14px;
  margin-top: 20px;
  color: var(--color-default);
  background: transparent;
  box-shadow: none;
}

.service-card .card-text .btn span{
  padding: 4px 8px;
}

.service-card .card-text .btn:hover span{
  background-color: var(--color-white);
}


@media (max-width: 767px) {
  .service-container {
    padding: 0px 20px;
  }

  .service-card{
    padding: 0px;
    overflow: hidden;
  }

  .service-card .card-img img{
    height: 240px;
  }

  .service-card .card-text{
    padding: 0px 15px;
  }
}
/*--------------------------------------------------------------
# Tools Technology
--------------------------------------------------------------*/
.technology-container{
  max-width: 1300px;
  width: 100%;
  margin: auto;
}

.technology-card{
  width: 330px;
  padding: 24px 40px;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.1);
}

.technology-card h4{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.technology-card p{
  font-size: 14px;
  color: #717171;
}

.technology-card .technology-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 24px;
  background: linear-gradient(60deg, var(--color-primary), var(--color-third));
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}

.left-technology .technology-card .technology-icon{
  left: auto;
  right: -10%;
}

.left-technology .technology-card{
  text-align: right;
}

.left-technology .technology-card-1{
  margin: 60px 0;
  transform: translateX(-50px);
}

.left-technology{
  padding-left: 20px;
}

.right-technology{
  padding-left: 70px;
}

.right-technology .technology-card-1{
  margin: 60px 0;
  transform: translateX(50px);
}

@media (max-width: 767px) {
  .left-technology .technology-card-1{
    margin: 14px 0;
    transform: translateX(0px);
  }
  .technology-img{
    padding: 10px;
  }
  .left-technology{
    margin-bottom: 20px;
  }
  .right-technology{
    padding-left: 40px;
    margin-top: 20px;
  }
  .right-technology .technology-card-1{
    margin: 14px 0;
    transform: translateX(0px);
  }
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog .blog-card {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.blog .blog-card .blog-img {
  width: 100%;
  height: 250px;
}

.blog-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-default);
}

.blog-card p {
  font-size: 14px;
  color: #504f4f;
  font-weight: 500;
}

.blog-time p,
.blog-time i {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-third);
}

.blog-card .post-author-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
}

.read-btn {
  padding: 6px 12px;
  border-radius: 0 0 10px 0;
}

.read-btn:hover {
  background-color: transparent;
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients{
  background: linear-gradient(to bottom, #1a7dff, #e2e2e2);
  margin-bottom: 32px;
}

.clients h2 {
  font-size: 28px;
  font-weight: 600;
}

.clients p {
  color: var(--color-secondary);
  font-size: 14px;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.clients .sponsor-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@media (min-width: 1288px) {
  .clients h2 {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  width: 100%;
  position: relative;
  z-index: 1;
}

.contact-container{
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, .1);
}

.contact-bg{
  background: linear-gradient(-65deg, var(--color-secondary)50%, var(--color-default)50%);
  padding: 30px;
}

.contact .contact-shadow{
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.contact-header p {
  color: var(--color-white);
}

.contact .info-item {
  width: 100%;
  padding: 10px 0;
  /* margin-bottom: 10px; */
  color: var(--color-white);
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--color-white);
  float: left;
  width: 44px;
  height: 44px;
  background-color: var(--color-third);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-white);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-white);
}

.contact .info-item:hover i {
  background: var(--color-white);
  color: var(--color-primary);
}

.contact .form-section{
  height: 700px;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 12px;
}

.contact .contact-form {
  width: 100%;
  height: 100%;
}

.contact .contact-form .form-group {
  padding-bottom: 8px;
}

.contact .contact-form .error-message {
  display: none;
  color: var(--color-default);
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-form .error-message br+br {
  margin-top: 25px;
}

.contact .contact-form .sent-message {
  display: none;
  color: var(--color-default);
  background: var(--color-primary);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .contact-form .loading {
  display: none;
  background: var(--color-default);
  text-align: center;
  padding: 15px;
}

.contact .contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: var(--color-default);
  animation: animate-loading 1s linear infinite;
}

.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
  color: var(--color-default);
  background-color: transparent;
  border: 1px solid var(--color-secondary);
}

.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
  color: var(--color-default);
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form input[type=tel],
.contact .contact-form textarea {
  padding: 12px 15px;
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=email]:focus,
.contact .contact-form textarea:focus {
  border-color: var(--color-third);
}

.contact .contact-form textarea {
  padding: 10px 12px;
}

.contact .location iframe{
  height: 350px;
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

.contact .contact-img{
  width: 500px;
  top: 0;
  left: 0%;
  transform: translateX(50px);
  z-index: -1;
  opacity: .3;
  /* animation: scaleX 4s linear infinite alternate; */
}

@keyframes scaleX {
  0%{
    transform: translateX(-50px);
  }
  100%{
    transform: translateX(0px);
  }
}

.contact .contact-form button[type=submit] {
  /* background: var(--color-white); */
  border: 0;
  padding: 14px 45px;
  /* color: var(--color-primary); */
  transition: 0.4s;
  border-radius: 10px;
}

/* .contact .contact-form button[type=submit]:hover {
  background: var(--color-third);
  color: var(--color-white);
} */

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@media (max-width: 993px) {
  .contact .form-section{
    height: 630px;
  }
}

@media (max-width: 767px) {
  .contact {
    position: static;
    padding-top: 30px;
  }

  .contact .form-section{
    height: 730px;
  }

  .contact .contact-form button[type=submit] {
    padding: 8px 12px;
    border-radius: 5px;
  }
}


/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: static;
  padding-top: 70px;
}

/*--------------------------------------------------------------
# services Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details .service-group{
  padding: 20px;
  background-color: var(--color-white);
  border-radius: 8px;
}

.service-details .service-group .group-item{
  padding: 12px 0px;
  border-bottom: 3px solid var(--color-third);
}

.service-details .service-group .group-img img{
  width: 105px !important;
  height: 60px;
  border-radius: 5px;
}

.service-details .service-group .group-text h3{
  font-size: 18px;
}

.service-details .service-show{
  padding: 30px;
  border-radius: 8px;
  background-color: var(--color-white);
}

.service-details .service-show .service-img img{
  width: 100%;
  height: 600px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.service-details .service-show .title{
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .mobile-service-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    /* display: none; */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-service-wrapper.active {
    display: block;
    transform: translateX(0);
  }

  .service-group .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    float: right;
    margin-bottom: 10px;
  }

  .toggle-service-btn {
    color: var(--color-default);
    background: var(--color-white) !important;
  }

  .service-details .service-show{
    padding: 10px;
  }

  .service-details .service-group .group-text h3{
    font-size: 14px;
  }

  .service-details .service-group{
    padding: 0px;
  }

  .service-details .service-show .service-img img{
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/
.project-slider{
  height: 500px;
}

.projectSwiper .swiper-slide {
  transition: transform 0.3s ease, z-index 0.3s ease;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.projectSwiper .swiper-slide::after{
  content: '';
  width: 0px;
  height: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .6s ease-in-out;
}

.projectSwiper .swiper-slide:hover::after{
  width: 100%;
  height: 100%;
  opacity: 1;
}

.projectSwiper .slide-content img {
  height: 400px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.projectSwiper .slide-overlay {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 70%;
  height: 80px;
  padding: 15px 25px;
  background: linear-gradient(55deg, var(--bg-color) 88%, rgba(0, 0, 0, 0.2) 10%);
  color: var(--color-white);
  /* opacity: 0; */
  /* transform: translateY(100%); */
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 1;
}

.projectSwiper .slide-overlay::before {
  content: '';
  position: absolute;
  bottom: 0%;
  right: -25%;
  width: 30%;
  height: 100%;
  background: linear-gradient(55deg, rgba(0, 0, 0, 0) 30%, var(--color-primary) 10%);
  z-index: 1;
}

.projectSwiper .slide-overlay::after {
  content: '→';
  position: absolute;
  bottom: 10%;
  right: -18%;
  transform: rotate(-30deg);
  font-size: 52px;
  color: var(--color-white);
  z-index: 2;
}

.slide-overlay h4 {
  font-size: 20px;
  margin: 0;
  color: var(--color-default);
  font-weight: 600;
}

.project-slider .bg-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 44%;
  width: 100%;
  height: 350px;
  background-color: var(--color-default);
  border-top: 10px solid var(--color-third);
}

.project-slider .swiper-button-next,
.project-slider .swiper-button-prev{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-third);
  left: 90%;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.5);
}

.project-slider .swiper-button-prev{
  left: 86%;
}

.project-slider .swiper-button-next,
.project-slider .swiper-button-prev{
  top: 95%;
}

.project-slider .swiper-button-next:after,
.project-slider .swiper-button-prev:after{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}

.project .shape-wrapper,
.project .shape-wrapper1{
  position: absolute;
  top: 10px;
  right: 40px;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #ff5e00, #ff0080, #00f2ff, #ff5e00);
  background-size: 400% 400%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.project .shape-wrapper{
  animation: borderAnim 6s linear infinite, floatY 3s ease-in-out infinite;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.project .shape-img,
.project .shape-img1 {
  width: 140px;
  height: 140px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.project .shape-wrapper1 {
  width: 70px;
  height: 70px;
  top: 7%;
  left: 40px;
  background: linear-gradient(45deg, #c2c2c2, #fff9f9);
  animation: borderAnim 6s linear infinite, rotate360 8s linear infinite;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* .project .shape-img1{
  width: 100px;
  height: 100px;
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
} */

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

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* move up */
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 993px) {
  .project-slider{
    height: 400px;
  }
  .project .shape-wrapper{
    top: 30px;
    width: 80px;
    height: 80px;
  }
  .projectSwiper .slide-content img {
    height: 300px;
    width: 100%;
  }
  .project .shape-img{
    width: 75px;
    height: 75px;
  }
  .project-slider .swiper-button-next,
  .project-slider .swiper-button-prev{
    width: 40px;
    height: 40px;
    left: 85%;
  }

  .project-slider .swiper-button-prev{
    left: 70%;
  }

  .project-slider .swiper-button-next,
  .project-slider .swiper-button-prev{
    top: 94%;
  }

  .project-slider .swiper-button-next:after,
  .project-slider .swiper-button-prev:after{
    font-size: 16px;
  }
  .projectSwiper .slide-overlay::after {
    content: '→';
  }
}

/*--------------------------------------------------------------
# Projects Page
--------------------------------------------------------------*/
.project-page .row{
  padding: 0px 180px;
}

.project-page .project-card{
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.project-page .project-card .project-img img{
  width: 100%;
  height: 100%;
}

.project-page .show-btn{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .4s linear;
}

.project-page .show-btn a{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-third);
  font-size: 16px;
  font-weight: 600;
}

.project-page .project-card:hover .show-btn{
  transform: translate(-50%, -50%) translateY(0px);
  opacity: 1;
}

.project-page .project-text{
  left: 0;
  bottom: 0;
  padding: 20px 30px;
}

.project-page .project-text .tag{
  display: inline-block;
  font-weight: 600;
  border-radius: 5px;
  padding: 4px 8px;
  background-color: var(--color-white);
}

.project-page .project-text h2{
  display: inline-block;
  padding: 8px 14px;
  color: var(--color-white);
  background-color: var(--color-default);
  margin-top: 20px;
  box-shadow: 2px 2px 5px rgba(255, 0, 0, 0.5);
}

@media (max-width: 993px) {
  .project-page .row{
    padding: 0px;
  }

  .project-page .project-card{
    height: 250px;
  }
  
  .project-page .project-text{
    padding: 16px;
  }

  .project-page .project-text h2{
    font-size: 16px;
  }

  .project-page .project-text .tag{
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details .project-container {
  max-width: 1000px;
  margin: 0 auto;
}

.project-details .project-img{
  padding: 20px;
  background-color: var(--color-white);
}

.project-details .project-img img{
  width: 100%;
  height: 400px;
}

.project-details .project-content{
  padding: 20px;
  background-color: var(--color-white);
}

.project-details .project-content h2{
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

@media (max-width: 993px) {
  .project-details .project-img img{
    height: 250px;
  }
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  background-color: var(--color-white);
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: var(--color-white);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  height: 60px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# team Page
--------------------------------------------------------------*/
.team-card{
  height: 400px;
  border-radius: 16px;
  background-color: var(--color-white);
  box-shadow: 0px 0px 20px rgba(7, 15, 161, 0.7);
  overflow: hidden;
}

.card-head {
  padding: 16px 30px;
  gap: 28px;
  background: linear-gradient(45deg, #000 70%, var(--color-secondary)30%);
}

.team .team-img {
  width: 150px;
  height: 150px;
  border: 6px solid var(--color-third);
  border-radius: 50%;
}

.team .team-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.team .team-card h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
}

.team .team-card p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-third);
  margin-top: 8px;
}

.team .about-member p{
  color: var(--color-default);
  font-size: 16px;
  font-weight: 400;
}

.team .team-pagination {
  margin-top: 30px;
  color: #555555;
}

.team .team-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.team .team-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.team .team-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-pagination li.active,
.team .team-pagination li:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.team .team-pagination li.active a,
.team .team-pagination li:hover a {
  color: var(--color-white);
}

.team .posts-list article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.team .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.team .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.team .posts-list .title {
  font-size: 22px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.team .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.team .posts-list .title a:hover {
  color: var(--color-primary);
}

.team .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.team .posts-list .post-author-list {
  font-weight: 600;
  margin-bottom: 5px;
}

.team .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .team-card{
    height: auto;
  }
  .team .team-card h3{
    font-size: 24px;
  }
  .card-head {
    padding: 16px 20px;
    gap: 16px;
  }
}

@media (max-width: 400px) {
  .team .team-card h3{
    font-size: 20px;
  }
  .team .team-card p{
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
.login {
  background-color: #fff9f9;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login .login-card {
  margin-top: -9%;
  min-height: 380px;
  width: 441px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-shadow: 0px 0 31px 0px rgb(0 0 0 / 10%);
}

.login .login-card img {
  width: 50%;
}

.login .login-card h1 {
  margin: 20px 0 10px 0;
  font-size: 3rem;
  color: var(--color-primary);
  font-weight: 700;
}

.login .login-card .login-form {
  width: 76%;
  margin-bottom: 15px;
}

.login .login-card h4 {
  margin: 20px 0 5px 0;
  font-size: 1.5rem;
  font-weight: 400;
}

.login .login-card .username-input,
.password-input {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #a4a4a4;
  padding: 0 8px;
  border-radius: 10px;
}

.login .login-card .username-input:focus-within,
.password-input:focus-within {
  border-bottom: 2px solid var(--color-primary);
}

.login .login-card i {
  color: rgba(0, 0, 0, 0.3);
}

.fa-lock:before {
  content: "\f023";
}

.login .login-card .password {
  width: 83%;
}

.login .login-card input {
  width: 93%;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 7px;
  border: none;
  background-color: inherit;
}

.login .login-card input:focus {
  border: none;
  outline: none;
}

.login .login-card .login-btn {
  border: none;
  padding: 7px 20px;
  width: 50%;
  border-radius: 10px;
  font-size: 1.2rem;
  color: white;
  background-color: var(--color-primary);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

@media (max-width: 993px) {
  .login .login-card {
    width: 350px;
  }

  .login .login-card img {
    width: 30%;
  }

  .login .login-card h1 {
    font-size: 2rem;
  }

  .login .login-card h4 {
    font-size: 1rem;
  }

  .login .login-card .login-btn {
    padding: 7px 10px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team .member {
  width: 100%;
  text-align: center;
  background: #fff;
  height: 470px;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.team h2 {
  display: inline-block;
  font-size: 42px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--color-primary);
}

.team .member img {
  border-radius: 10px;
  width: 100%;
  height: 350px;
}

@media (max-width: 767px) {
  .team h2 {
    font-size: 32px;
  }

  .team .member img {
    height: 300px;
  }
}

.team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: #6c757d;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background: linear-gradient(30deg, #555555, var(--color-secondary));
  padding-top: 80px;
}

.footer-container{
  max-width: 1300px;
  margin: 0 auto;
}

.footer .footer-info {
  /* border-top: 3px solid var(--color-primary); */
  border-bottom: 2px solid rgba(80, 80, 80, 0.137);
  padding: 60px 0 20px 0;
}

.footer .footer-info img {
  max-height: 130px;
  margin-bottom: 20px;
  background-color: var(--color-white);
}

.q-code {
  height: 120px;
  width: 120px;
  background-color: var(--color-primary);
  border-radius: 10px;
}

.footer h3 {
  font-size: 20px;
  color: var(--color-white);
}

.footer p,
.footer .footer-info span {
  font-size: 14px;
  color: #ffffff;
}

.footer .footer-info i {
  font-size: 18px;
  color: var(--color-primary);
}

.footer .media-group{
  position: absolute;
  top: -35%;
  right: -5%;
  min-width: 350px;
  height: 150px;
  display: flex;
  align-items: end;
  background-color: var(--color-third);
  padding: 16px;
  /* box-shadow: 3px 3px 10px rgba(255, 255, 255, 0.7); */
}

.footer .media-group::after{
  content: '';
  position: absolute;
  top: 6%;
  left: -5%;
  width: 50px;
  height: 50px;
  transform: rotate(30deg);
  background-color: #bbbbbb;
  z-index: -1;
}

.footer .shadow{
  position: absolute;
  top: 6%;
  right: -5%;
  width: 50px;
  height: 50px;
  transform: rotate(60deg);
  background-color: #bbbbbb;
  z-index: -1;
}

.footer .media-group::before{
  content: 'Any Scaffolding';
  position: absolute;
  top: 24%;
  left: 0%;
  width: 100%;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #e6f4ff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer .social-links a i {
  color: #fff;
  font-size: 16px;
}

.footer .social-links .facebook {
  background-color: #01277a;
}

.footer .social-links .whatsapp {
  background-color: #059c44;
}

.footer .social-links .twitter {
  background-color: #00cff3;
}

.footer .social-links .instagram {
  background-color: #f3007e;
}

.footer .social-links .linkedin {
  background-color: #0160b9;
}

.footer ul li a {
  color: var(--color-white);
}

@media (max-width: 993px) {
  .footer .media-group{
    top: -23%;
    right: 25%;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 60px;
  }

  .footer .footer-info {
    padding-bottom: 40px;
    padding-top: 90px;
  }

  .footer .media-group{
    top: -11%;
    right: 2%;
  }
}

.demo-team-card {
  height: 250px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
}

.demo-team-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.demo-team-card p {
  font-size: 14px;
  color: var(--color-secondary);
}

.demo-team-card .image-group {
  height: 100px;
}

.demo-team-card .demo-team-img {
  width: 200px;
  height: 200px;
  padding: 8px;
  border: 2px solid #ffbb00;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.demo-team-card .demo-team-img img {
  width: 100%;
  height: 100%;
}

/* We build */
.we_build .solution-card{
  height: 370px;
  padding: 30px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 16px;
  z-index: 1;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

.we_build .solution-card::after{
  content: '';
  width: 72%;
  height: 550px;
  position: absolute;
  top: 0;
  right: -60%;
  background-color: transparent;
  transform: rotate(45deg);
  z-index: -1;
  transition: all .4s ease-in-out;
}

.we_build .card-icon{
  width: 120px;
  height: 120px;
  margin: 0 auto;
  font-size: 36px;
  border-radius: 50%;
  background-color: var(--color-third);
  color: var(--color-white);
  margin-bottom: 20px;
}

.solution-card h4{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.solution-card p{
  font-size: 14px;
  margin-bottom: 16px;
}

.solution-card .solution-btn{
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
}

.solution-card .animate-rounded{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(to right, #f0fdff, #b8b8b8);
  border: 5px solid var(--color-third);
  bottom: -10%;
  left: 40%;
  opacity: 0;
}

.solution-card .animate-1{
  animation: bubble1 5s linear infinite;
  background: linear-gradient(to right, #f0fdff, #b8b8b8);
}

.solution-card .animate-2{
  animation: bubble2 6s linear infinite;
  background: linear-gradient(to right, #f0fdff, #b8b8b8);
}

.solution-card .animate-3{
  animation: bubble3 4s linear infinite;
  background: linear-gradient(to right, #f0fdff, #b8b8b8);
}

.solution-card .animate-4{
  animation: bubble4 3.5s linear infinite;
  background: linear-gradient(to right, #f0fdff, #b8b8b8);
}

.solution-card .animate-5{
  animation: bubble5 3s linear infinite;
}

@keyframes bubble1 {
  0% {
    bottom: -10%;
    left: 10%;
    opacity: 0;
  }
  100% {
    bottom: 100%;
    left: 10%;
    opacity: .5;
  }
}

@keyframes bubble2 {
  0% {
    bottom: -10%;
    left: 30%;
    opacity: 0;
  }
  100% {
    bottom: 100%;
    left: 30%;
    opacity: .5;
  }
}

@keyframes bubble3 {
  0% {
    bottom: -10%;
    left: 50%;
    opacity: 0;
  }
  100% {
    bottom: 100%;
    left: 50%;
    opacity: .5;
  }
}

@keyframes bubble4 {
  0% {
    bottom: -10%;
    left: 60%;
    opacity: 0;
  }
  100% {
    bottom: 100%;
    left: 60%;
    opacity: .5;
  }
}

@keyframes bubble5 {
  0% {
    bottom: -10%;
    left: 80%;
    opacity: 0;
  }
  100% {
    bottom: 100%;
    left: 80%;
    opacity: .5;
  }
}

.we_build .solution-card:hover::after{
  right: -10%;
  background-color: #e6fdff;
}

/* FAQ */
.faq .faq-img img{
  height: 600px;
  width: 100%;
  border: 5px solid var(--color-white);
}

.faq .content h3{
  color: var(--color-white);
  font-size: 42px;
  font-weight: 600;
}

.faq .content p{
  color: var(--color-white);
  margin: 16px 0px;
}

.faq .accordion-item{
  margin-top: 12px;
  border: none;
  box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}

.faq .accordion-item .accordion-button{
  background: linear-gradient(45deg, var(--color-default) 70%, var(--color-secondary) 30%);
  border-radius: 5px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.accordion-button:not(.collapsed),
.accordion-button:focus{
  box-shadow: none;
}

@media (max-width: 993px) {
  .faq .faq-img img{
    height: 400px;
  }

  .faq .content h3{
    font-size: 32px;
  }

  .faq .content p{
    margin: 12px 0px;
  }
}

/* Review */
.review-container{
  max-width: 1300px;
  margin: 0 auto;
}

.swiper-slider{
	padding: 12px;
}

.review-slider{
	padding: 16px;
  margin: 8px;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
	border-radius: 16px;
	gap: 16px;
  transition: all .3s ease-in-out;
}

.review-slider:hover{
	box-shadow: 0 0 5px 1px rgba(0, 0, 0, .3);
  transform: translateY(-5px);
}

.review-slider img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid var(--color-third);
}

.review-slider .rating {
	gap: 4px;
}

.review-slider .rating .text-yellow {
  font-size: 12px;
	color: #e5a903;
}

.review-slider h4{
  font-size: 20px;
  color: var(--color-default);
  margin-bottom: 12px;
}

.rating-group strong{
  color: var(--color-default);
}

.rating-group small{
  color: var(--color-default);
}

.review-slider .review-text{
	font-size: 14px;
	line-height: 1.5;
  color: var(--color-default);
}

.review-slider .date{
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 8px;
  color: var(--color-default);
}

/* Review page */

.review .review-card{
	height: auto;
	padding: 16px;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, .1);
	border-radius: 16px;
	gap: 16px;
  transition: all .3s ease-in-out;
}

.review .review-card:hover{
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, .1);
  transform: translateY(-10px);
}

.review-card img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid var(--color-third);
}

.review-card .rating {
	gap: 4px;
}

.review-card .rating .text-yellow {
  font-size: 12px;
	color: #e5a903;
}

.review-card h4{
  color: var(--color-default);
  margin-bottom: 12px;
}

.review-card .rating-group strong{
  color: var(--color-default);
}

.review-card .rating-group small{
  color: var(--color-default);
}

.review-card .review-text{
	font-size: 14px;
	line-height: 1.5;
  color: var(--color-default);
}

.review-card .date{
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 8px;
  color: var(--color-default);
}


/* Career */
.career .card{
  padding: 30px;
  background: linear-gradient(45deg, #000000, var(--color-secondary));
  border-radius: 12px;
  overflow: hidden;
}

.career .card h3{
  color: var(--color-white);
  margin-bottom: 20px;
}

.career .card p,
.career .card i{
  color: #e6e6e6;
}

.career .icon-wrapper{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-white);
}

.career-details h2{
  font-size: 36px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
}

.career-details .card{
  padding: 30px;
}

@media (max-width: 767px) {
  .career-details h2{
    font-size: 28px;
  }
}