/* ===================================
    Table of Content
====================================== */

/*  
  - Fonts
  - Scrollbar
  - General   
  - Loader
  - Navbar
  - Side Menu
  - Banner
  - About Section
  - Skills Section
  - Work Section
  - Reviews Section
  - Client Section
  - Blog section
  - Contact Section
  - Media Queries
*/

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
width: 12px;
background: rgba(247, 248, 251, 0.5);
border-left: 0 solid white;
border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
background:linear-gradient(30deg, #EF888B  20%, #FCBB53  80%);
border-radius: 10px;
width: 0;
height: 25%;
transition: all .3s ease;
cursor: pointer;
}
::-webkit-scrollbar-thumb:hover {
background:linear-gradient(30deg, #FCBB53 20%, #EF888B 80%);
box-shadow: 0 0 10px rgba(239, 136, 139, 0.5);
}


/* ===================================
    General
====================================== */


body {
 font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

span {
  font-weight: 400;
}

a {
  text-decoration: none;
}


/*Headings*/

.heading {
  font-size: 60px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.subheading{
  color: #1c1c1cb9;
  font-size: 18px; 
  margin-bottom: 30px;
  font-weight: 400;
}

.text {
  font-size: 18px;
  font-weight: 400;
  color: #1c1c1c;
  line-height: 32px;

}
.green-text{
  color: #EF888B;
  font-weight: 700;
}
.yellow-text{
  color: #FCBB53;
  font-weight: 700;
}
/*Social Icons*/

.social-icons ul {
  margin-bottom: 0px;
}

.social-icons ul li {
  font-size: 15px;
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

.social-icons ul li a {
  overflow: hidden;
  border-radius: 50%;
  display: block;
  color: #fff;
  height: 40px;
  line-height: 40px;
  width: 40px;
  border: 1px solid transparent;
  text-align: center;
}

/*Social icons hover*/
.facebook-hovr:hover {color: #4267B2; transition: all 0.5s ease; background-color: #fff;}
.twitter-hovr:hover {color: #1DA1F2; transition: all 0.5s ease; background-color: #fff;}
.google-plus-hovr:hover {color: #fff; transition: all 0.5s ease;background-color: #fff;}
.linked-in-hovr:hover {color: #2867B2; transition: all 0.5s ease; background-color: #fff;}
.instagram-hovr:hover {color: #db4a39; transition: all 0.5s ease; background-color: #fff;}
.gmail-hovr:hover {color: #D44638; transition: all 0.5s ease; background-color: #fff;}

/*Social icons background hover*/

.facebook-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #4267B2;}
.twitter-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #1DA1F2;}
.google-plus-hover:hover {color: #fff; transition: all 0.5s ease;background-color: #db4a39;}
.linked-in-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #2867B2;}
.instagram-hover:hover{color: #fff !important;  transition: all .5s ease; 
  background:linear-gradient(to bottom, #aa2fb5 0%, #f1762c 93%)!important;}
.gmail-hover:hover {color: #fff; transition: all 0.5s ease; background-color: #D44638;}


/*Button*/

.btn {
  z-index: 2;
  letter-spacing: .5px;
  border-radius: 0;
  font-weight: 500;
  overflow: hidden;
  position: absolute;
  line-height: inherit;
  display: inline-block;
  color: #fff;
  border: 2px solid transparent;
  text-transform: uppercase;
  transition: all .5s ease !important;
}

.btn.button {
  font-size: 14px !important;
  font-weight: 500;
  color: #fff;
  padding: 9px 30px !important;
  line-height: 1.8em !important;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-family: 'Roboto', sans-serif;
}

.btn.btn-rounded {
  border-radius: 50px;
}

.btn.white-btn {
  background: #fff;
  border-color: #fff;
  color: #4c4c4c;
}

.btn.green-btn {
  background: #EF888B;
  border-color: #EF888B;
  
}

.btn.pruple-btn {
  background: #8ABAE2;
  border-color:#8ABAE2;

}


/*Button hover*/

.btn.btn-hvr-green:hover {
  background-color: #FCBB53;
  border-color: #FCBB53;
  color: #fefefe;
}

.btn.btn-hvr-purple:hover {
  background-color: #FCBB53;
  border-color: #FCBB53;
  color: #fff;
}

/* ===================================
   Loader
====================================== */
.loader {
  height: 100%;
  width: 100%;
  position: fixed;
  overflow: hidden;
  z-index: 11111111;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.loader-spinner {
  position: relative;
  height: 100px;
  width: 100px;
  border: 4px solid transparent;
  border-top-color: #8ABAE2;
  border-left-color: #8ABAE2;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
.loader-spinner::before {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  content: "";
  position: absolute;
  border: 4px solid transparent;
  border-top-color:  #EF888B;
  border-left-color:  #EF888B;
  border-radius: 50%;
  -webkit-animation: spinBack 1s linear infinite;
  animation: spinBack 1s linear infinite;
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes spinBack {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(-720deg);
transform: rotate(-720deg);
}
}
@keyframes spinBack {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(-720deg);
transform: rotate(-720deg);
}
}
/* ===================================
    Navbar
====================================== */


/* nav top default */

.navbar.navbar-top-default {
  position: absolute;
  top: 0;
  z-index: 99;
  overflow: hidden;
  height: 200px;
  width: 100%;
  -webkit-transition: all .1s ease;
  -moz-transition: all .1s ease;
  -ms-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
  background-color: transparent;
}
.navbar .navbar-brand {
  position: relative;
  display: inline-block;
}

.navbar .navbar-brand img {
  transition: all 0.3s ease;
}

.navbar .navbar-brand .logo-white {
  display: block;
  width: 200px;   /* small white logo */
}

.navbar .navbar-brand .logo-color {
  display: none;
  width: 350px;  /* big logo after scroll */
}

.header-appear .navbar .navbar-brand .logo-white,
.header-appear .navbar-top-default .navbar-brand .logo-white {
  display: none;
}

.header-appear .navbar .navbar-brand .logo-color,
.header-appear .navbar-top-default .navbar-brand .logo-color {
  display: block;
}
.header-appear .navbar-top-default {
  height: 90px;
  position: fixed;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 0.6s;
  -o-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-appear .navbar-top-default::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #EF888B, #FCBB53);
  opacity: 0.6;
}

.header-appear .navbar-top-default .sidemenu_btn{
  top: 30px;
}

.header-appear .navbar .navbar-nav .nav-link {
  color: #1c1c1c !important;
  font-weight: 500;
}

.header-appear .navbar .navbar-nav .nav-link:hover,
.header-appear .navbar .navbar-nav .nav-link.active {
  color: #EF888B !important;
}

.header-appear .navbar .navbar-nav .nav-link::after {
  background: linear-gradient(90deg, #EF888B, #FCBB53);
}

.header-appear .sidemenu_btn span {
  background: #1c1c1c;
}

@keyframes animationFade {
    from { opacity: 0; -webkit-transform: translate3d(0, -100%, 0); transform: translate3d(0, -100%, 0);
    }
    to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; }
}

.navbar .navbar-nav .nav-link {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  padding: 6px 6px;
  margin-left: 20px;
  margin-right: 50px;
  transition: .5s ease;
  transition: all .6s ease;
  border: 2px solid transparent;
  display: block;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.navbar .navbar-nav {
  margin-left: auto;
}

.navbar .navbar-nav .nav-link.active {
  color: #fff;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:hover {
  color: #fff;
  transition: all .6s ease;
}

.navbar .navbar-nav .nav-link:last-child {
  margin-right: 0;
}

.navbar .navbar-nav .nav-link:after {
  content: '';
  display: block;
  margin: auto;
  height: 3px;
  width: 0px;
  background: transparent;
  transition: width .5s ease, background-color .5s ease;
}

.navbar .navbar-nav .nav-link:hover:after {
  width: 100%;
  background: #fff;
}
.navbar .navbar-nav .nav-link.active:after {
  width: 100%;
  background: #fff;
}


/*side menu button*/

.sidemenu_btn {
  width: 36px;
  padding: 6px;
  right: 40px;
  top: 86px;
  z-index: 999;
  margin-left: 16px;
  cursor: pointer;
  position: absolute;
  display: inline-block;
}

.sidemenu_btn span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: auto;
  transition: .5s ease;
}

.sidemenu_btn span:first-child,
.sidemenu_btn span:last-child {
  width: 70%;
  background-color: #fff;
}

.sidemenu_btn span:nth-child(2) {
  background-color: #fff;
}



.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
  width: 100%;
  background-color: #fff;
}

.sidemenu_btn:hover span:nth-child(2) {
  background-color: #fff;
}

.sidemenu_btn span:nth-child(2) {
  margin: 4px 0;
}


/* ===================================
    Side Menu
====================================== */

.side-menu {
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  z-index: 9999;
  background: linear-gradient(135deg, #EF888B 0%, #FCBB53 100%);
  backdrop-filter: blur(10px);
  transform: translate3d(100%, 0, 0);
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  overflow: hidden;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
}

.side-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}

.side-menu.left {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
  width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
  transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
  visibility: visible;
  opacity: 1;
}

.side-menu .navbar-brand {
  margin: 0 0 2.5rem 0;
}
.side-menu  .social-icons ul li{
  margin-left: 0;
  margin-right: 0;
}

/*Side overlay*/

#close_side_menu {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1031;
  opacity: 0.7;
  background-color: #011321;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*side menu image*/
.sidemenu-image {
  position: absolute;
  top: 28px;
}

/*side menu close btn*/

.side-menu .btn-close {
  height: 33px;
  width: 33px;
  top: 30px;
  right: 25px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  display: inline-block;
}

.side-menu.before-side .btn-close {
  display: none;
}

.side-menu .btn-close::before,
.side-menu .btn-close::after {
  top: 5px;
  left: 16px;
  height: 24px;
  width: 2px;
  content: ' ';
  background: #fff;
  position: absolute;
}

.side-menu .btn-close:before {
  transform: rotate(45deg);
}

.side-menu .btn-close:after {
  transform: rotate(-45deg);
}

.side-menu .btn-close:hover {
  animation: .8s rotate;
}
.side-menu .btn-close:hover {
-webkit-animation: .8s rotate;
animation: .8s rotate;
}
@-webkit-keyframes rotate {
from{
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
}
}
@keyframes rotates {
from{
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
}
}

/*side menu inner-wrapper*/

.side-menu .inner-wrapper {
  height: 100%;
  padding: 3rem 4rem;
  position: relative;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
  padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
  margin-bottom: 0px;
  margin-top: 65px;
  display: block;
}

.side-nav .navbar-nav .nav-item {
  opacity: 0;
  display: block;
  margin: 15px 0;
  padding: 0 !important;
  transition: all 0.8s ease 500ms;
  transform: translateY(30px);
}

.side-nav .navbar-nav .nav-item:first-child {
  transition-delay: .1s;
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
  transition-delay: .2s;
}

.side-nav .navbar-nav .nav-item:nth-child(3) {
  transition-delay: .3s;
}

.side-nav .navbar-nav .nav-item:nth-child(4) {
  transition-delay: .4s;
}

.side-nav .navbar-nav .nav-item:nth-child(5) {
  transition-delay: .5s;
}

.side-nav .navbar-nav .nav-item:nth-child(6) {
  transition-delay: .6s;
}

.side-nav .navbar-nav .nav-item:nth-child(7) {
  transition-delay: .7s;
}

.side-nav .navbar-nav .nav-item:nth-child(8) {
  transition-delay: .8s;
}

.side-nav .navbar-nav .nav-item:nth-child(9) {
  transition-delay: .9s;
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
  transform: translateY(0);
  opacity: 1;
}

.side-nav .navbar-nav .nav-link {
  display: inline-table;
  color: rgba(255, 255, 255, 0.95);
  padding: 2px 0 3px 0 !important;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  position: relative;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.side-nav .navbar-nav .nav-link:hover {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  transform: translateX(5px);
}

.side-nav .navbar-nav .nav-link::after {
  content: "";
  left: 0;
  width: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  position: absolute;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
  width: 100%;
}

.side-nav .navbar-nav .nav-link.active {
  background: transparent;
}


/*side menu footer */

.side-menu-footer .navbar-nav {
  transform: translateY(0);
}

.side-menu-footer p {
  color: #fff;
  font-size: 14px;
}


/* ===================================
    Banner
====================================== */
.banner-section{
  height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #EF888B 0%, #FCBB53 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
  position: relative;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, rgba(138, 186, 226, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(252, 187, 83, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(239, 136, 139, 0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(138, 186, 226, 0.1) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
  pointer-events: none;
}

.banner-section .banner-slider-row{
  height: 100vh;
}
.banner-section .banner-slider-row .text{
  margin-bottom: 50px;
}
.banner-section .svg-div{
  position: absolute;
  z-index: 1;
  right: 22%;
  top: -70%;
  height: 100%;
  width: 100%;
  transform: rotate(-46deg);
  transition: .8s ease;
}

.banner-section .banner-content{
  z-index: 2;
  padding-top: 7rem;
}

.banner-section .banner-content .heading{
  color: #fff;
  font-size: 64px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.banner-section .banner-content .text{
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}
.banner-section .img-area img{
  display: flex;
  justify-content: center;
  /* width: 60%; */
  margin-left: auto;
}
.banner-section .social-icons {
  position: absolute;
  z-index: 3;
  top: 43.5%;
}

.banner-section .social-icons li{
  display: block;
}

/* ===================================
   About Section
====================================== */

.about-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background: #ffffff;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(138, 186, 226, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(252, 187, 83, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-section .text-section span{
  color: #EF888B;
  
  font-weight: 700;
}

.about-section .services{
  padding-top: 120px;
}
.about-section .top-col{
margin-bottom: 120px; 
}

.about-section .image{
display: flex;
justify-content: center;
}
.about-section .media .media-body{
  padding-top: 25px;
}
.about-section .media .media-body .subheading{ 
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  color: #1c1c1c;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 15px;
}

.about-section .media .media-body .subheading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #EF888B, #FCBB53);
  border-radius: 2px;
}
.about-section .media .media-body .text{
  color: #515050; 
  font-size: 16px;

}

.about-section .media .heading{
  transition: all .5s ease;
  font-weight: 300;
  color: #8ABAE2;
}
.about-section .media{
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 12px;
}

.about-section .media:hover{
  cursor: pointer;
  background: rgba(239, 136, 139, 0.05);
  transform: translateX(10px);
}

.about-section .media:hover .heading{
  transform: translateY(20px) scale(1.1);
  transition: all .5s ease;
  color: #EF888B;
}

/* ===================================
   Work Section
====================================== */
.work-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  position: relative;
}

.work-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252, 187, 83, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
/*Row-1*/
.work-section .row-1{
  padding-bottom: 100px;
}
.work-section  .row-1 .heading{
  margin-bottom: 0;
}
.work-section .row-1  .text{
  color: #686868;
  margin-top: 15px;
}
/*Row-2*/
.work-section .row-2 .img-section img{
  display: flex;
  justify-content: center;
  width: 100%; 
} 
/*Row-3*/
.work-section .row-2 .item .text-row{
  padding-left: 130px;
}
.work-section .row-2 .item .text-row {
  padding-top: 30px;
  text-align: left;
}
.work-section .row-2 .item .text-row .subheading{
  color: #373c48;
  font-size: 28px;
  margin-bottom: 10px;
}

.work-section .row-2 .item .text-row .text{
  color: #bfc4ce;
}
  /*Carousel buttons*/
.work-section .row-2{
  position: relative;
}
.work-section .icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  z-index: 11;
  pointer-events: none;
}
.work-section  .icons i {
  font-size: 40px;
  color: #f6f6f6;
  cursor: pointer;
  transform: all .5s ease;
}

.work-section  .icons i:hover{
  color: #EF888B;
  transition: all .5s ease;
}
.work-section  .icons .left-customPrevBtn{
  margin-left: 1.5rem;
  pointer-events: all;
}
.work-section  .icons .right-customNextBtn{
  margin-right: 1.5rem;
  pointer-events: all;
}

/* ===================================
   Skills Section
====================================== */
.skills-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(135deg, #EF888B 0%, #FCBB53 100%);
  position: relative;
  overflow: hidden;
}

.skills-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px);
  pointer-events: none;
}

.skills-section .heading {
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.skills-section .subheading,
.skills-section .text {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
/*Row-2*/
.skills-section .row-2{
  margin-top: 100px;
}
.skills-section .circular-wrap .circle{
  position: relative;
  max-width: 210px;
  display: inline-block;
  transition: all 0.3s ease;
}

.skills-section .circular-wrap .circle:hover {
  transform: scale(1.1);
}

.skills-section .circles {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  margin-bottom: 30px;
}

.skills-section .circles:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.skills-section .circular-wrap .circle .counter-num {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: normal;
  font-weight: normal;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.skills-section .circular-wrap .circle .counter-num {
  color: #505050;
  font-size: 1.875rem;
  font-weight: 300;
}

.skills-section .circular-wrap h5.text{
  max-width: 184px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  margin-top: 30px;
  line-height: 25px;
  color: #ffffff !important;
  font-size: 18px;
  letter-spacing: 0.5px;
}
/* ===================================
   Signals Section
====================================== */
.signals-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #EF888B 0%, #FCBB53 100%);
    position: relative;
    overflow: hidden;
}

.signals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 50px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 50px
        );
    opacity: 0.5;
}

.signals-section .heading,
.signals-section .text {
    color: #fff;
    position: relative;
    z-index: 2;
}

.signals-section .text {
    opacity: 0.95;
}

.signals-tab-container {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.signals-tab-container::-webkit-scrollbar {
    display: none;
}

.signals-tabs {
    border: none;
    margin-bottom: 48px;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-wrap: wrap;
    /* width: max-content; */
    min-width: 100%;
}

.signals-tabs .nav-item {
    flex: 0 0 auto;
}

.signals-tabs .nav-link {
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    padding: 11px 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    border-radius: 30px;
    background: transparent;
    white-space: nowrap;
}

.signals-tabs .nav-link.active,
.signals-tabs .nav-link:hover {
    color: #EF888B;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

/* --- Cards grid --- */
.signals-tab-content {
    padding-top: 10px;
    position: relative;
    z-index: 2;
}

.signals-tab-content .row {
    margin: 0 -12px;
}

.signals-tab-content .row > [class*="col-"] {
    padding: 12px;
    display: flex;
}

.signal-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 30px 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 24px rgba(31, 38, 135, 0.13);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.signal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #EF888B, #FCBB53);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-card:hover::before {
    height: 100%;
}

.signal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(31, 38, 135, 0.25);
    border-color: rgba(102, 126, 234, 0.45);
}

.signal-card h6 {
    font-weight: 700;
    color: #667eea;
    font-size: 18px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.signal-card:hover h6 {
    color: #764ba2;
    transform: translateX(6px);
}

.signal-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .signals-tabs {
        min-width: unset;
        /* width: max-content; */
        padding: 8px 6px;
    }

    .signals-tabs .nav-link {
        padding: 10px 16px;
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .signals-section {
        padding: 80px 0;
    }

    .signals-tab-content .row {
        margin: 0 -8px;
    }

    .signals-tab-content .row > [class*="col-"] {
        padding: 8px;
    }

    .signal-card {
        padding: 22px 20px;
    }

    .signal-card h6 {
        font-size: 16px;
    }

    .signal-card p {
        font-size: 13px;
    }
}
/* ===================================
    Reviews Section
====================================== */
.reviews-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(138, 186, 226, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(252, 187, 83, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.reviews-section .text-section {
  z-index: 2;
  position: relative;
}

.reviews-section .text-section .heading {
  font-size: 56px;
  background: linear-gradient(135deg, #1c1c1c 0%, #505050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.reviews-section .text-section .text{
  padding-right: 100px;
  font-size: 20px;
  color: #686868;
  line-height: 1.8;
}

.reviews-section .carousel-section {
  z-index: 2;
  position: relative;
}

.reviews-section .carousel-section .testimonials {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.reviews-section .carousel-section .testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(252, 187, 83, 0.1), transparent);
  transition: left 0.5s ease;
}

.reviews-section .carousel-section .testimonials:hover::before {
  left: 100%;
}

.reviews-section .carousel-section .testimonials:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(138, 186, 226, 0.15);
  border-color: rgba(252, 187, 83, 0.3);
}

.reviews-section .carousel-section .testimonial-image {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(252, 187, 83, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.reviews-section .carousel-section .testimonials:hover .testimonial-image {
  border-color: rgba(252, 187, 83, 0.6);
  box-shadow: 0 15px 40px rgba(252, 187, 83, 0.3);
  transform: scale(1.05);
}

.reviews-section .carousel-section .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reviews-section .carousel-section .testimonials:hover .testimonial-image img {
  transform: scale(1.1);
}

.reviews-section .carousel-section .testimonials .quote {
  position: relative;
}

.reviews-section .carousel-section .testimonials .quote i {
  color: #764ba2;
  font-size: 36px;
  opacity: 0.6;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.reviews-section .carousel-section .testimonials .text {
  text-align: center;
  margin-top: 25px;
  font-size: 18px;
  color: #505050;
  line-height: 1.8;
  font-weight: 400;
}

.reviews-section .carousel-section .testimonials .subheading {
  font-size: 22px;
  margin-top: 30px;
  font-weight: 600;
  color: #1c1c1c;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.reviews-section .carousel-section .testimonials .subheading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #EF888B, #FCBB53);
  border-radius: 2px;
}

/* ===================================
    Client-Section
====================================== */
.client-section {
  padding: 80px 0 120px;
  background: #ffffff;
  position: relative;
}

.client-section::before {
  content: 'TRUSTED BY LEADING ORGANIZATIONS';
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #999;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.client-section .clients-owl {
  padding: 20px 0;
}

.client-section .owl-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-section .owl-carousel .owl-item img{
  width: 180px;
  height: 100px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  filter: grayscale(100%) opacity(0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.client-section .owl-carousel .owl-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}
/* ===================================
    Blog Section
====================================== */
.blog-section{
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f7f8fb;
}
.blog-section  .text-section{
  padding-top: 25px;
}
.blog-section  .text-section .text{
  padding-right: 50px;
  margin-bottom: 50px;
}
/* ===================================
    Contact-Section
====================================== */
.contact-section{
  padding-top: 120px;
}
.contact-section .form-sec{
  padding-right: 60px;
}
.contact-section .heading{
  font-size:  40px;
}
.contact-section .form-group{
  margin-bottom: 25px;
}

.contact-section .form-control{
  padding: 1.375rem 1.75rem;
}
.contact-section .form-control:focus{
  color: #000;
  border-color: #ced4da;;
  box-shadow: 0 0 0 0.2rem transparent;
}

.contact-section .form-sec .btn.button{
  width: 100%;
}
.contact-section .form-sec .button-center {
  width: 100%;
  margin: 15px 20px 0 20px;
}

/*Address sec*/
.contact-section .address-sec{
  padding-left: 40px;
}
.contact-section .address-sec .text{
  color: #252525;
  opacity: 0.9;
  font-weight: 400;
}
.contact-section .address-sec .text{
  color: #18212e;
  line-height: 25px;
  font-size: 17px;
}
.contact-section .address-sec .media {
  margin-top: 40px;
}

.contact-section .address-sec .media i {
  font-size: 25px;
  color: #EF888B;
}

.contact-section .address-sec .media-body {
  margin-left: 20px;
}

.contact-section .address-sec .media-body .text {
  margin-top: 0;
  margin-bottom: 0;
  color: #252525;
  font-size: 16px;
}

.contact-section .address-sec .media-body span {
  margin-left: 20px;
}
.contact-section .address-sec .media .media-body ul{
  margin-bottom: 0;
}
.contact-section .address-sec .media .media-body li{
  list-style: none;

  display: inline-block;
}
/* ===================================
    Footer
====================================== */

footer {
  padding-top: 120px;
  padding-bottom: 120px;
}

footer .text{
  margin-top: 8px !important;
  font-size: 14px;
  color: #888888;
  text-align: center;
  padding-left: 55px;

}

footer .social-icons ul li a{
  color: #3c3f46;
}

/* ===================================
    StandAlone page
====================================== */
.standalone-navbar.navbar.navbar-top-default{
  height: 90px;
  background: linear-gradient(135deg, #EF888B, #FCBB53);
}
.standalone-navbar.navbar.navbar-top-default .sidemenu_btn{
  top:32px;
}
/*Banner*/
.standalone-banner {
  background-color: #85aa1c; 
  height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background-size: cover;
}
.standalone-banner .banner-text .heading{
  color: #fff;
  margin-bottom: 30px;
}
.standalone-banner .page-breadcrumb li {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.standalone-banner .page-breadcrumb li a {
  color: #fff;
  margin-right: 5px;
  transition: all 0.3s ease;
}
.standalone-banner .page-breadcrumb li i {
  color: #fff;
}
/*MAIN PAGE START*/
.main-page{
  float:left;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 120px;
}
.main-page .standalone-heading{
  padding-bottom: 100px;
}
.main-page .standalone-heading .heading{
  font-size: 50px;
}
 
.main-page .standalone-area .heading{
 font-size:40px;
 margin-bottom: 20px;
}
.main-page .row-image{
  position: relative;
}
.main-page .row-image img {
  width: 100%;
  height: 100%;
  display: block;
}
.standalone-area .standalone-row{
  margin-bottom: 40px;
}
.standalone-area .standalone-row:last-child{
  margin-bottom: 0;
}
 .main-page .standalone-row .row-text{
  padding-left: 30px;
  text-align: center;
}  

.standalone-row:nth-child(2) .row-text{
  padding-left: 0;
  padding-right: 30px;
}

/* IMAGE HOVER*/
.standaloneoverlay {
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #EF888B, #FCBB53);
}
.hover-effect:hover .standaloneoverlay {
  opacity: .4;
}
.overlayBottom {
  width: 100%;
  height: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  background: linear-gradient(90deg, #EF888B, #FCBB53);
}
.hover-effect:hover .overlayBottom {
  height: 100%;
}

/* ===================================
     Media Queries
====================================== */

@media (width: 1920px){

.banner-section .img-area img{
  width: 100%;
}  
.banner-section .svg-div{
  top: -52%;
  transform: rotate(-54deg)

}
}
@media (width: 1600px){
.banner-section .img-area img{
  /* width: 90%; */
}  
.banner-section .svg-div{
  top: -52%;
  transform: rotate(-54deg)
}
}
@media (max-width: 1200px){
  /*General*/
.heading{
  margin-bottom: 30px;
}
.subheading{
  margin-bottom: 30px;
}
/*Navbar*/
.navbar.navbar-top-default{
  height: 90px;
} 
.sidemenu_btn{
  right: 10px;
  top: 30px;
}
/*Side Menu*/
.side-menu{
  width: 50%;
}
.side-menu .side-nav{
  margin-top: 100px;
}
  /*Banner Section*/
.banner-section{
  height: auto;
}
.banner-section .banner-slider-row{
  height: auto;
}
.banner-section .svg-div{
  display: none;
}
.banner-section .banner-content{
  padding-top: 10rem;
}
.banner-section .button-center{
  margin-bottom: 50px;
}
/*About Section*/
.about-section .media .media-body .subheading{
  font-size: 26px;
}
/*Work Section*/
.work-section .heading br{
  display: none;
}
.work-section .row-2 .item .text-row{
  padding-left: 70px;
}
.work-section .icons{
  display: flex;
}
/*Blog section*/
.blog-section .text-section{
  padding-left: 55px;
}
/*Contact Section*/
.contact-section .form-sec{
  text-align: center;
  padding-right: 0;
}
.contact-section .address-sec{
  text-align: center;
  padding-left: 0;
  padding-top: 60px;
}
.contact-section .address-sec .media{
  display: block;
}
.contact-section .address-sec .media i{
  margin-bottom: 20px;
}
.contact-section .address-sec .media-body{
  margin-left: 0;
}
/*Footer*/
footer .social-icons ul{
  text-align: center;
}
footer .text{
  padding-left: 0;
}
/*StandAlone Page*/

.standalone-banner .banner-text{
  text-align: center;
}
.main-page .standalone-row .row-text{
  padding-left: 0;
  margin-bottom: 40px;
}
.standalone-row:nth-child(2) .row-text{
  padding-right: 0;
}
.standalone-area .standalone-row{
  margin-bottom: 60px;
}

.navbar .navbar-brand .logo-white {
  display: block;
  width: 80px;   /* small white logo */
}

.navbar .navbar-brand .logo-color {
  display: none;
  width: 80px;  /* big logo after scroll */
}


}
@media (max-width: 992px){
  /*General*/
.heading{
  margin-bottom: 30px;
}
  /*Navbar*/
.navbar{
  background: transparent;
}
.sidemenu_btn{
  top: 40px;
  right: 22px;
}
/*Side Menu*/
.side-menu{
  width: 55%;
}
/*Banner Section*/
.banner-section .heading{
  font-size: 45px;
}
.banner-section .img-area img{
  margin-left: 5%;
  margin-right: auto;
}
.banner-section .social-icons{
  display: none;
}
/*Footer*/
footer .text{
  font-size: 13px;
}
/*StandAlone Page */
.standalone-banner .banner-text .heading{
  font-size: 40px;
}

.main-page .standalone-heading .heading{
  font-size: 40px;
}
.main-page .standalone-area .heading{
  font-size: 32px;
}
}
@media (max-width: 767px){
  /*General*/
.text{
    font-size: 16px;
}
.heading{
  font-size: 35px;
}
.heading br{
  display: none;
}
.text br{
  display: none;
  /*Navbar*/
}
.header-appear .navbar-top-default .sidemenu_btn{
  top: 25px;
}
.navbar.navbar-top-default{
  height: 70px;
} 
.navbar .navbar-brand .logo-white {
  display: block;
  width: 60px;   /* small white logo */
}

.navbar .navbar-brand .logo-color {
  display: none;
  width: 50px;  /* big logo after scroll */
}

.sidemenu_btn {
  top: 25px;
  right: 10px;
}
/*Side Menu*/
.side-menu{
  width: 100%;
}
.side-menu .inner-wrapper{
  padding: 3rem 2rem;
}
/*Banner*/
.banner-section .heading{
  font-size: 45px;
}
.banner-section .img-area img{
  margin-left: 5%;
  margin-right: auto;
}
.banner-section .social-icons{
  display: none;
}
/*Footer*/
footer .text{
  font-size: 13px;
}
/*StandAlone Page */
.standalone-banner .banner-text .heading{
  font-size: 40px;
}

.main-page .standalone-heading .heading{
  font-size: 40px;
}
.main-page .standalone-area .heading{
  font-size: 32px;
}
}
@media (max-width: 370px){
  /*General*/
.heading{
  font-size: 32px;
}  
/*Side Menu*/
.side-menu .side-nav{
  margin-top: 75px;
}
/*Banner section*/
.banner-section .heading{
  font-size: 42px;
  margin-bottom: 15px;
}
.banner-section .banner-content{
  padding-top: 6rem;
}
.banner-section .banner-slider-row .text{
  margin-bottom: 15px;
}
.banner-section .img-area img{
  /* width: 48%; */
}
/*About section*/
.about-section .media .media-body .subheading{
  font-size: 27px;
}
/*Contact Section*/
.contact-section .heading{
  font-size: 32px;
}
}