/**
* Template Name: OnePage - v4.7.0
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #2C9290;
  --primary-hover-color: #51a1a0;
  --white-color: #fff;
  --navbar-color: #16507b;
  --header-line-color: var(--navbar-color);
  --old-primary-color: #2487ce;
  --portfolio-border-color: var(--old-primary-color);
  --navbar-hover-color: var(--old-primary-color);
  --old-a-hover-color: #469fdf;
  --old-back-to-top-hover: #3e9bdd;
  --scrollbar-thumb: #cdcdcd;
  --header-border-color: #e6f2fb;
  --header-shadow-color: rgba(18, 66, 101, 0.08);
  --navbar-active-bg: #3194db;
  --hero-text-color: #124265;
  --hero-subtext-color: #5e5e5e;
  --cta-btn-border: var(--white-color);
  --section-bg-color: #f8fbfe;
  --footer-bg-color: var(--section-bg-color);
  --footer-text-color: #444444;
  --contact-icon-bg: #e3f0fa;
  --contact-text-color: #217bbc;
  --portfolio-hover-bg: rgba(36, 135, 206, 0.6);
  --project-description-color: #adadad;
  --devops-automation-tag-color: #bc6c21;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track { 
  box-shadow: inset 0 0 2px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  transition: all 1s ease-in;
  background: var(--old-a-hover-color); 
}
body {
  font-family: "Open Sans", sans-serif;
  color: var(--footer-text-color);
  z-index: 99;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-hover-color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: var(--white-color);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--primary-hover-color);
  color: var(--white-color);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white-color);
}

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

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

@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 {
  transition: all 0.5s;
  background: var(--white-color);
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid var(--header-border-color);
}
#header.header-scrolled {
  border-color: var(--white-color);
  box-shadow: 0px 2px 15px var(--header-shadow-color);
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}
#header .logo a {
  color: var(--navbar-color);
}
#header .logo img {
  max-height: 40px;
}
@media (max-width: 768px) {
  
  #header .logo {
    text-align: center;
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  
  #header .logo {
    text-align: center;
    font-size: 25px;
  }
}
@media (max-width: 992px) {
  
  #header .logo {
    text-align: center;
    font-size: 25px;
    margin: auto;
  }
}


.shine {
	 position: relative;
	 overflow: hidden;
}
 .shine::before {
	 background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
	 content: "";
	 display: block;
	 height: 100%;
	 left: -75%;
	 position: absolute;
	 top: 0;
	 transform: skewX(-25deg);
	 width: 50%;
	 z-index: 2;
}
 .shine:hover::before, .shine:focus::before {
	 animation: shine 1.2s;
}
 @keyframes shine {
	 100% {
		 left: 125%;
	}
}
 
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 30px;
  font-size: 16px;
  color: var(--navbar-color);
  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: var(--old-primary-color);
  font-weight: 600;
  transition: 0.40s ease;
}
.navbar .getstarted, .navbar .getstarted:focus {
  background: var(--primary-color);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: var(--white-color);
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: var(--white-color);
  background: var(--navbar-active-bg);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}
.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(--primary-color);
}
.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--hero-text-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: var(--white-color);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 38, 58, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 10px;
  background-color: var(--white-color);
  overflow-y: auto;
  height: fit-content;
  border-radius: 10px;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--hero-text-color);
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--old-primary-color);
  font-weight: 600;
  transition: 0.40s ease;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--primary-color);
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



/* ------------------------------------------ 
Mega Menu
-----------------------------------------------*/
.dropdown .dropdown-content{
  display: none;
  background-color: #cdcfcf;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}


.dropdown .dropdown-header{
  color: var(--primary-color);
  margin: 20px auto;
}
.dropdown:hover .dropdown-content{
  display: block;
}

.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  background-color: #ccc;
  height: 250px;
}

.column a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    height: auto;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  padding-top: 30vh;
  padding-bottom: 30vh;
}
#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: var(--hero-text-color);
  font-family: "Poppins", sans-serif;
}
#hero h2 {
  color: var(--hero-subtext-color);
  margin: 10px 0 0 0;
  font-size: 22px;
}
#hero .container .hero-image{
  margin-top: -20vh;
  z-index: 999;
  animation: animateHoverHeroImage 5s 1s infinite;
}



#hero .btn-get-started:hover {
  background: var(--navbar-active-bg);
}
#hero .icon-boxes {
  margin-top: 100px;
}
#hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: var(--white-color);
  box-shadow: 0 0 29px 0 var(--header-shadow-color);
  transition: all 0.3s ease-in-out;
  border-radius: 12px;
  z-index: 1;
}
#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
#hero .icon-box .title a {
  color: var(--hero-text-color);
  transition: 0.3s;
}
#hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--primary-color);
}
#hero .icon-box:hover {
  transform: scale(1.08);
}
#hero .icon-box:hover .title a {
  color: var(--primary-color);
}

@keyframes animateHoverHeroImage {
  0%{
    transform: scale(1)
  }
  50%{
    transform: scale(1.20);
  }
  100%{
    transform: scale(1);
  }
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
  
}
@media (max-height: 800px) {
  #hero {
    height: auto;
  }
  
}
@media (max-width: 992px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #hero .container .hero-image{
    width: 80%;
    margin-top: 10vh;
  }
}
@media (max-width: 460px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #hero .container .hero-image{
    width: 80%;
    margin-top: 10vh;
  }
}
/* ------------------------------------------
# Typing Effect
--------------------------------------------*/
/* -------- Typing effect -------- */

/*.typing{
  margin-left: 10px;
  position: relative;
}
.typing::after{
  content: "";
  position: absolute;
  right:-5px;
  width:1px;
  height:5%;
  border-right: 2px solid white;
  animation:0.5s blink infinite ease;
}
@keyframes blink{
  0%{
  opacity: 0;
  }

100%{
  opacity: 1;
}
}*/

.typingEffect7,
.te7-item {
  display: block;
  text-align: center;
  font-weight: 400;
}


/*The good stuff*/
.typingEffect7,
.te7-item {
  height: 80px;
}

.typingEffect7 {
  font-family: "Fira Mono", monospace;
  overflow: hidden;
  /* background-color: #d9d2d1; */
  /* color: #343AA1; */
  font-size: 28px;
  margin: 0;
}

.te7-item {
  position: relative;
  font-size: 1.5em;
  animation: animatetotop 6s steps(3) infinite;
}

.te7-item_inner,
.te7-item-overlay {
  display: inline-block;
}

.te7-item_inner {
  position: relative;
  font-weight: bold;
  line-height: 1;
}

.te7-item_inner:after {   
  content: "";
  position: absolute;
  top:-1px;
  right:0;
  bottom:-2px;
  left:0;
  border-left: 1px solid #343AA1;
  /* background-color: #d9d2d1; */
  animation: animatetoright 1s steps(20) infinite alternate;
}

@keyframes animatetoright {
  0% {
    left: 0;
    display: inline;
    margin-right: auto;
  }
  100% {
    left: 100%;
    display: none;
    margin-left: .6em;
    margin-right: -.6em;
  }
}

@keyframes animatetotop {
  0% {
    top: 0;
  }
  100% {
    top: -240px;
  }
}

@media screen and (max-width: 480px) {
  .te7-item_inner,
.te7-item-overlay {
    display: block;
    
  }
  .typingEffect7,
.te7-item {
  height: 100px;
}
  
}

@media screen and (max-width: 768px) {
  .te7-item_inner,
.te7-item-overlay {
    display: block;
    
  }
  .typingEffect7,
.te7-item {
  height: 100px;
}
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-title {
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--hero-text-color);
}
.section-title h3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--hero-text-color);
}
.section-title p {
  margin-bottom: 70px;
  font-size: 14px;
  color: var(--project-description-color);
}

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

@media screen and (max-width: 768px) {
  .section-title h2{
    font-size: 22px;
  }  
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--primary-color);
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: var(--primary-color);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--primary-color);
}
.about .content .btn-learn-more:hover {
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .about .content{
    padding-left: 15px;
    padding-right: 15px;
  }  
}

@media screen and (max-width: 768px) {
  .about .content{
    padding-left: 15px;
    padding-right: 15px;
  }    
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 60px 0;
}
.counts .count-box {
  width: 100%;
  text-align: center;
}
.counts .count-box span {
  font-size: 48px;
  line-height: 48px;
  display: block;
  font-weight: 700;
  color: var(--hero-text-color);
  margin-left: 80px;
  margin: auto;
}
.counts .count-box p {
  padding: 8px 0 0 0;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1e6ca6;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
  font-size: 15px;
}
.about-video .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--hero-text-color);
}
.about-video .content ul {
  list-style: none;
  padding: 0;
}
.about-video .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.about-video .content ul i {
  font-size: 24px;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: -2px;
}
.about-video .content p:last-child {
  margin-bottom: 0;
}
.about-video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--primary-color) 50%, rgba(36, 135, 206, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about-video .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white-color);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about-video .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(36, 135, 206, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about-video .play-btn:hover::after {
  border-left: 15px solid var(--primary-color);
  transform: scale(20);
}
.about-video .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white-color);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c9e3f5;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #f3f9fd;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}
.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #f3f9fd;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 1;
  border: 1px solid var(--primary-color);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 30px 20px 60px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--white-color);
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}
.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: var(--hero-text-color);
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
/* .services .icon-box ul {
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box ul li{
  margin: 20px;
  line-height: 10px;
  display: inline-block;
  
}
.services .icon-box ul li::after{
  content: " | ";
  
} */
.services .icon-box .flex-list{
    position: relative;
    margin:30px 20px 0px 20px;
    overflow: hidden;
}
.services .icon-box .flex-list ul {
  display: flex;
    flex-direction: row;
    padding-left: 0;
    flex-wrap: wrap;
    overflow: hidden;
    justify-content: center;
    margin-left: -1px;
    color: rgb(170, 170, 170);
    list-style-type: none;
}


.services .icon-box .flex-list li{
  flex-grow: 1;
  flex-basis: auto;
  margin: .35em 0;
  padding: 0 1em;
  text-align: center;
  
  border-right: 1px solid #ccc;
  background-color: var(--white-color);
  word-wrap: break-word;
}
.services .icon-box .flex-list li:last-child{
  border: none;
}
.services .icon-box:hover {
  border-color: var(--white-color);
  border-radius: 10px;
  transform: scale(1.05);
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}
.services .icon-box:hover h4 a {
  color: var(--primary-color);
}
.services .iconbox-blue i {
  color: #47aeff;
}
.services .iconbox-blue:hover .icon i {
  color: var(--white-color);
}
.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}
.services .iconbox-orange i {
  color: #ffa76e;
}
.services .iconbox-orange:hover .icon i {
  color: var(--white-color);
}
.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}
.services .iconbox-pink i {
  color: #e80368;
}
.services .iconbox-pink:hover .icon i {
  color: var(--white-color);
}
.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}
.services .iconbox-yellow i {
  color: #ffbb2c;
}
.services .iconbox-yellow:hover .icon i {
  color: var(--white-color);
}
.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}
.services .iconbox-red i {
  color: #ff5828;
}
.services .iconbox-red:hover .icon i {
  color: var(--white-color);
}
.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}
.services .iconbox-green i {
  color: #58992d;
}
.services .iconbox-green:hover .icon i {
  color: var(--white-color);
}
.services .iconbox-green:hover .icon path {
  fill: #58992d;
}

.services .iconbox-teal i {
  color: #11dbcf;
}
.services .iconbox-teal:hover .icon i {
  color: var(--white-color);
}
.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}
@media screen and (max-width: 480px) {
  .services .container .row, .services .container .section-title p{
    padding-left: 15px;
    padding-right: 15px;
  }  
  .services .container .section-title p{
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .services .container .row, .services .container .section-title p{
    padding-left: 15px;
    padding-right: 15px;
  }    
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: var(--primary-color);
  background-size: cover;
  padding: 100px 0;
}
.cta h3 {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  color: var(--white-color);
}
.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}
.cta .cta-btn:hover {
  background: var(--white-color);
  color: var(--primary-color);
}




/* ------------------------------------------------------------
Get In Touch
---------------------------------------------------------------*/

#get-in-touch .container p {
  font-size: 18px;
  color: gray;
}
#get-in-touch .container p span i{
  color: #c9e3f5;
  font-size: 26px;
  margin-right: 1rem;
}
#get-in-touch .container p span{
  color: #111;
  font-family: 'Courier New', Courier, monospace;
  font-size: 25px;
  margin-left: 1rem;
}
#get-in-touch .container p span::after{
  content: "";
  margin-left: 5px;
  padding-top: 3px;
  align-items: center;
  width: 5px;
  height: 23px;
  background: #ec7fff;
  display: inline-block;
  animation: cursor-blink 1s steps(2) infinite;
}
#get-in-touch .container .lets-connect-btn{
  position: relative;
  margin-top: 126px;
  font-size: 25px;
  
}
.slider {
  position: absolute;
  display:block;
  left: 0;
  top:90%;
  margin:10px auto;
  height: 2px;
  background-color: var(--primary-color);
  width: 0%;
  transition: width 0.5s ease;
}

#get-in-touch .container .lets-connect-btn b a{
  display: inline-block;
  position: relative;
  transition: all 0.3s ease-out;
}
#get-in-touch .container .lets-connect-btn b a:hover{
  color: var(--old-a-hover-color);
}

#get-in-touch .container .lets-connect-btn b a:hover .slider{
  background-color: var(--old-a-hover-color);
  width: 100%;
}
@keyframes cursor-blink {
  0% {
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #get-in-touch .container p span{
    margin-top: 40px;
    display: block;
  } 
}

@media screen and (max-width: 768px) {
  #get-in-touch .container p span{
    margin-top: 40px;
    display: block;
  }  
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--footer-text-color);
  font-size: 14px;
  background: var(--section-bg-color);
  box-shadow: 0px 2px 15px var(--header-shadow-color);
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--white-color);
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}
#footer .footer-top h4, #footer .footer-top h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--hero-text-color);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0 15px 20px;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  font-size: 18px;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
#footer .footer-newsletter {
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--footer-text-color);
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--white-color);
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #cde5f6;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--primary-color);
  color: var(--white-color);
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--navbar-active-bg);
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--footer-text-color);
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: var(--navbar-active-bg);
  color: var(--white-color);
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  #footer .footer-top .footer-links ul li a{
    text-align: center;
  }
  #footer .footer-top .container{
    text-align: center;
    transition: all ease-in 1s;
  }
  #footer .footer-top .container .footer-contact .logo a img{
    margin-bottom: 40px;
    height: 50px;
    width: auto;
  } 
}

@media screen and (max-width: 768px) {
  #footer .footer-top .footer-links ul li a{
    text-align: center;
  }
  #get-in-touch .container p span{
    margin-top: 40px;
    display: block;
  }  
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: var(--white-color);
}
.contact .info i {
  font-size: 20px;
  color: var(--primary-color);
  float: left;
  width: 44px;
  height: 44px;
  background: var(--contact-icon-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--hero-text-color);
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--contact-text-color);
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: var(--primary-color);
  color: var(--white-color);
}
.contact .php-email-form {
  width: 100%;
  background: var(--white-color);
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: var(--white-color);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: var(--white-color);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: var(--white-color);
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--primary-color);
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 30px;
  color: var(--white-color);
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: var(--navbar-active-bg);
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}




/* About Us */

.about-us .content {
  font-size: 15px;
}
.about-us .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--hero-text-color);
}
.about-us .content ul {
  list-style: none;
  padding: 0;
}
.about-us .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.about-us .content ul i {
  font-size: 24px;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: -2px;
}


.category-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}

.complete-product-category-tag {
  background: var(--contact-text-color);
}

.web-development-category-tag {
  background: var(--primary-hover-color);
}

.app-development-category-tag {
  background: var(--navbar-color);
}

.api-development-category-tag {
  background: var(--hero-subtext-color);
}

.devops-automation-category-tag {
  background: var(--devops-automation-tag-color);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/* .overflow-hidden {
  overflow: hidden;
}
.rounded-md {
  border-radius: .375rem;
}
.portfolio .portfolio-item {
  margin-bottom: 80px;
  height: 75vh;
  text-overflow: ellipsis;
}
.portfolio .portfolio-item:hover {
  box-shadow: 0px 0 30px var(--header-shadow-color);
  transition: 0.3s;
  z-index: 1;
}
.portfolio .portfolio-item-text-data {
  margin: 20px 0;
}
.portfolio .portfolio-item img {
  max-height: 60vh;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: .375rem;
}
.portfolio .project-title {
  color: var(--hero-text-color);
  align-items: center;
}

.portfolio .project-title:hover {
  color: var(--contact-text-color);
  cursor: pointer;

}
.portfolio .project-short-description {
  font-size: 14px;
  color: var(--project-description-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box; 
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: var(--footer-text-color);
  margin: 0 4px 8px 4px;
  transition: 0.3s;
  border-radius: 50px;
  border: 1px solid var(--scrollbar-thumb);
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: var(--white-color);
  background-color: var(--old-primary-color);
  border: 1px solid var(--old-primary-color);
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: var(--portfolio-hover-bg);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid var(--white-color);
  border-left: 3px solid var(--white-color);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid var(--white-color);
  border-right: 3px solid var(--white-color);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--white-color)fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--white-color);
}
.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}
.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
} */

/* Portfolio Section - Responsive Grid */
.portfolio {
  padding: 120px 0;
  background-color: #f8fbfe;
}

.portfolio .section-title {
  align-items: flex-start;
  margin-bottom: 40px;
}

.portfolio .section-title h3 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #124265;
}

.portfolio .section-title p {
  font-size: 14px;
  color: #adadad;
  margin: 0 auto;
  line-height: 1.8;
}

/* Filter Buttons */
#portfolio-flters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 0;
}

#portfolio-flters li {
  padding: 10px 20px;
  border-radius: 22px;
  border: 1px solid #e6e9ea;
  background: #fff;
  color: #2b6a7a;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

#portfolio-flters li:hover {
  background: #e6f9f6;
  color: #23c186;
  border-color: #b5ffe4;
}

#portfolio-flters li.filter-active {
  background: #2aa49a;
  color: #fff;
  border-color: #2aa49a;
  font-weight: 600;
}

/* Portfolio Grid Container */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px;
}

/* Portfolio Card */
.portfolio-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

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

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Card Image Wrapper */
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f6fa;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .card-image {
  transform: scale(1.05);
}

/* Category Badge */
.category-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 10;
}

.complete-product-category-tag {
  background: #217bbc;
}

.web-development-category-tag {
  background: #51a1a0;
}

.app-development-category-tag {
  background: #16507b;
}

/* Card Content */
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Card Title Wrapper */
.card-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #124265;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

/* Arrow Icon beside Title */
.title-arrow {
  color: #2C9290;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.portfolio-card:hover .title-arrow {
  transform: translate(3px, -3px);
  color: #2aa49a;
}

.card-description {
  font-size: 13px;
  color: #adadad;
  line-height: 1.6;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  --webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet View (768px to 1024px) - 2 columns */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 15px;
  }

  .card-image-wrapper {
    height: 40vh;
  }

  .card-title-wrapper {
    gap: 8px;
  }

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

  .title-arrow {
    width: 18px;
    height: 18px;
  }

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

/* Mobile View (480px to 767px) - 1 column */
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }

  #portfolio-flters {
    gap: 8px;
    margin-bottom: 40px;
  }

  #portfolio-flters li {
    padding: 8px 16px;
    font-size: 12px;
  }

  .portfolio {
    padding: 60px 0;
  }

  .portfolio .section-title h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .portfolio .section-title p {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .card-image-wrapper {
    height: 50vh;
  }

  .card-content {
    padding: 16px;
  }

  .card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .card-description {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .card-footer {
    font-size: 11px;
  }

  .card-footer svg {
    width: 14px;
    height: 14px;
  }
}

/* Small Mobile (less than 480px) */
@media (max-width: 480px) {
  .portfolio {
    padding: 50px 0;
  }

  .portfolio .section-title {
    margin-bottom: 40px;
  }

  .portfolio .section-title h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .portfolio .section-title p {
    font-size: 12px;
    line-height: 1.6;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 8px;
  }

  #portfolio-flters {
    gap: 6px;
    margin-bottom: 30px;
  }

  #portfolio-flters li {
    padding: 6px 12px;
    font-size: 11px;
  }

  .card-image-wrapper {
    height: 50vh;
  }

  .card-content {
    padding: 12px;
  }

  .card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .card-description {
    font-size: 11px;
    margin-bottom: 10px;
    --webkit-line-clamp: 2;
  }
}

/* Hide animation on smaller screens for better performance */
@media (max-width: 768px) {
  .portfolio-card {
    animation: none;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 100px;
  width: 100%;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
  height: 70vh;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 15px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white-color);
  opacity: 1;
  border: 1px solid var(--old-primary-color);
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--old-primary-color);
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px var(--header-shadow-color);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

.project-details-header {
  margin-bottom: 8vh;
}

.project-details-header svg {
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  padding: 5px;
  color: #cdcdcd;
}
.project-details-header svg:hover {
  transition: linear 0.25s;
  color: var(--primary-hover-color);
  border: 1px solid var(--primary-hover-color);
}

.project-details-header p {
  color: var(--hero-subtext-color);
}

.project-details .project-details-headline {
  color: var(--hero-text-color);
  font-weight: 700;
  font-size:larger;
}
.project-technologies ul {
  margin-top: 30px;
  padding: 0;
}
.project-technologies ul li{
  display: inline-block;
  margin: 15px;
}

.project-technologies ul li img {
  height: 60px;
  width: auto;
}

.technology-used {
  height: 60px;
  width: auto;
}



/* Slider Container */
.my-slider {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Slides */
.my-slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.my-slide {
  min-width: 100%;
}

.my-slide img {
  width: 100%;
  border-radius: 12px;
}

/* Navigation Buttons */
.my-prev, .my-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
}

.my-prev { left: 10px; }
.my-next { right: 10px; }

.my-prev:hover, .my-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


.portfolio-details-slider .swiper-slide img {
  object-fit: scale-down;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}


@media (max-width: 991px) {
  .portfolio-details-slider .swiper-slide img {
    width: 98vw;
    height: auto;
  }
}


.project-features ol>li {
  font-weight: 700;
}

.project-features ul {
  margin-bottom: 1rem;
}