/* NORMALISED CSS START */
:root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 90%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 20%, 10%);
  --color-black-200: hsl(213, 23%, 8%);
  --color-black-300: hsl(214, 21%, 6%);
  --color-black-400: hsl(210, 21%, 6%);
  --color-black-500: hsl(216, 22%, 4%);
  --color-black-600: hsl(220, 18%, 3%);
  --color-black-700: hsl(220, 27%, 2%);
  --color-black-800: hsl(180, 20%, 1%);
  --color-blue-100: hsl(214, 95%, 93%);
  --color-blue-200: hsl(213, 97%, 87%);
  --color-blue-300: hsl(212, 96%, 78%);
  --color-blue-400: hsl(213, 94%, 68%);
  --color-blue-500: hsl(217, 91%, 60%);
  --color-blue-600: hsl(221, 83%, 53%);
  --color-blue-700: hsl(224, 76%, 48%);
  --color-blue-800: hsl(226, 71%, 40%);
  --color-blue-900: hsl(224, 64%, 33%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(1rem, 2vw, 1.125rem);

  color: var(--color-white-100);
  background-color: var(--color-white-100);
}

main {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.section {
  margin: 0 auto;
  padding: 6rem 0 1rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.heading-xl {

  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-lg {

  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.heading-md {

  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}

.heading-sm {

  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}

.heading-xs {

  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.paragraph {

  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-white-200);
}

.btn {
  display: inline-block;

  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}

.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}

.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

/* NORMALISED CSS END */
header#header {
    z-index: 999;
    position: relative;
}

/* HEADER CSS END */
/* .header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  background-color: #fff;
}

.header.on-scroll {
  background: var(--color-white-100);
  box-shadow: var(--shadow-medium);
} */

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1.25rem;
  width: 100%;
  height: 4.25rem;
  margin: 0 auto;
}

.brand {

  width: 170px;
  height: auto;
}

.brand img {
  width: 100%;
}

img {
  width: 100%;
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 4rem 0 3rem;
  overflow: hidden;
  background-color: var(--color-black-300);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease-in-out;
}

.menu.is-active {
  top: 0;
  width: 100%;
  height: auto;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}

.menu-link {

  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white-100);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu-block {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  border-radius: 3rem;
  text-transform: capitalize;
  color: var(--color-white);
  background-color: #FF3100;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease-in-out;
}

.menu-block:hover {
  color: #fff;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: 0;
    width: auto;
    height: auto;
    padding: 0rem;
    margin-left: auto;
    background: none;
    box-shadow: none;
  }

  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin: 0 auto;
  }

  .menu-link {
    text-transform: capitalize;
  }

  .menu-block {
    margin-left: 2rem;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  /* order: -1; */
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;

}

@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.burger-line {
  position: absolute;
  display: block;
  left: 135px;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-black-100);
  transition: 0.25s ease-in-out;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
  background-color: #fff;
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
  background-color: #fff;
}

@media only screen and (max-width:500px) {

  a.menu-block {
    margin: 5px;
  }

  div#menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* HEADER CSS END */



/* BANNER CSS START */

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}

@media only screen and (min-width: 48rem) {
  .banner-column {
    margin-top: 30%;
    justify-content: center;
  }
}

@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 3rem;
  }
}

.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  margin-top: 2rem;
  object-fit: cover;
  justify-self: center;
}

@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
}

@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 25rem;
    height: auto;
    margin-right: 5rem;
  }
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 75%;
}

.banner-links {
  position: absolute;
  top: 30%;
  right: 1.5rem;
  display: grid;
  justify-items: center;
  row-gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.40s;
}

.banner-links a i {
  transition: all ease-in-out 0.40s;
}

.banner-links a:hover i {
  color: #FF3100;
}

.heading-bg {
  /* min-height: 1rem; */
  overflow: hidden;
  border-top: 2px solid #FF3100;
}

.heading-bg h1 {
  display: none;
  margin: 0;

}

.show-heading {
  display: block !important;
  animation: anim 1s ease;
  font-size: 46px;
}

@keyframes anim {
  from {
    transform: translateY(-160%);
  }

  to {
    transform: translateY(0);
  }
}

@media only screen and (min-width: 64rem) {
  .banner-links {
    opacity: 1;
    visibility: visible;
  }
}

.banner-links>* {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-white-100);
}

.banner-links::before {
  position: absolute;
  content: "";
  top: -3rem;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}

.banner-links::after {
  position: absolute;
  content: "";
  bottom: -3rem;
  width: 4rem;
  height: 2px;
  transform: rotate(90deg);
  background: var(--color-white-100);
}

.banner {
  background-attachment: fixed;
  background-image: url('../img/banner_top.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

.shadow {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: #000;
  opacity: 0.4;
  width: 100%;
  height: 100%;
}

.sub_banner_title {
  font-size: 72px;
  font-weight: 500;
  line-height: 80px;


}

@media only screen and (max-width:500px) {
  .sub_banner_title {
    width: 100%;
  }

  .banner-inner {
    width: 100%;
    padding-top: 0px;
  }

  .heading-xl {
    font-size: 35px;
  }

  .wraper_gap {
    flex-direction: column;
  }
  .section {

    padding: 2rem 0 1rem;
}
.banner {
  
    height: 70vh;
   
}
.heading-bg h1 {

    font-size: 35px;
}
}

/* BANNER CSS END */




/* TABBING SECTION CSS START */

.vert-tab>div {
  margin-left: 2px;
  margin-right: 2px;
  width: 10%;
  cursor: pointer;
  height: 500px;
  transition: all 0.5s ease 0s;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 -3px 0 #FF3100;

}

.recr-content {
  background-color: #292a2c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #a8aea4 !important;
  padding: 36px 28px;
  margin-top: 36px;
  border: 1px solid;
}

.recr-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  white-space: nowrap;
  transform: rotate(269deg);
}

.work_items_content {
  display: none;
}

.vert_tab_image_wrrapeer {
  display: flex;
  align-items: center;
}

.vert-tab-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 74px;
  font-weight: 700;
  line-height: 81px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  margin-bottom: 30px;
}

.vert-tab-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  margin-bottom: 20px;
}

.vert-tab-content p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0em;
  text-align: left;
  max-width: 96%;
  color: #fff;
  margin-left: 0px;
  margin-right: auto;
}

.recr-content.active {
  width: 100%;
}

.recr-content.active {
  background-color: #292a2c;
  border-color: #a8aea4;
}

.recr-content.active h3 {
  display: none;
}

.recr-content.active .work_items_content {
  display: block;
}

.recr-content img {
  max-width: 100%;
  height: 426px;
}

.vert-tab {
  display: flex;
  gap: 20px;
}

.vertical-tabs-section {
  padding: 50px 0;
}

.after_banner_main_wraper {
  justify-content: space-between;
}

.after_banner_p_0 {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

p {
  font-size: 16px;
}

.after_banner_text {
  font-size: 46px;
  font-weight: 600;
  color: #000;
}

.after_banner_p {
  border-left: 1px solid #FF3100;
  padding-left: 30px;
}

.after_banner_text_sub {
  text-transform: uppercase;
  color: #FF3100;
  font-weight: 600;
  font-size: 20px;
}

@media only screen and (max-width:500px) {
  .vert-tab {
    flex-direction: column;
  }

  .vert-tab>div {
    width: 100%;
    margin-top: 5px;
  }

  .work_items_content {
    display: block;
  }

  .recr-content h3 {
    display: none;
  }

  .sub_banner_title {
    width: 100%;
  }


  .after_banner_text {
    font-size: 30px;
  }

  .after_banner_p {
margin-left: 0;
        padding-left: 10px;
        margin-top: 10px;
  }

  .after_banner_main_wraper {
    margin-bottom: 15px;
  }
  .card-custom {
    height: 400px !important  ;
}
}

/* TABBING SECTION CSS End */


/* OUR APPROACH SECTION CSS START */
.our_approach {
  padding: 25px 0;
}

.approuch_main_wrap {
  padding: 25px;
  background-color: #292a2c;
  padding: 50px 40px;
  position: relative;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  height: 300px;
  z-index: 2;
}

.wraper_gap {
  /* gap: 20px; */
  padding-top: 20px;
}

.approuch_main_wrap h3 {
  font-size: 25px;
  margin-bottom: 20px;
}

.approuch_main_wrap p {
  font-size: 17px;
  line-height: 26px;
}

.approuch_main_wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #FF3100;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.approuch_main_wrap:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: transparent;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 0 0 20px 20px;
  transition: .4s;
  content: "";
  z-index: -1;
}

.approuch_main_wrap:hover:before {
  opacity: 1;
  visibility: visible;
}

.approuch_main_wrap:hover:after {
  background-color: #FF310063;
  height: 100%;
  animation: bounceRight 2s;
}

@keyframes bounceRight {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-35px);
  }

  60% {
    transform: translateY(-20px);
  }
}

@media (max-width: 992px) {

  /* For tablets and medium screens */
  .wraper_gap {
    flex-wrap: wrap;
    /* Allows items to wrap into new rows */
  }

  .wraper_gap .col-lg-3 {
    width: 48%;
    /* 2 columns per row */
    margin-bottom: 20px;
    /* Adds space between rows */
  }
}

@media (max-width: 576px) {

  /* For mobile devices */
  .wraper_gap .col-lg-3 {
    width: 100%;
    /* 1 column per row */
  }
}


/* OUR APPROACH SECTION CSS END */

/* why choose us start */
.y-us-section {
  padding: 25px 0;
  background-color: #f5f5f5;
}

.y-us-head {
  text-align: center;
  margin: 0 0 91px;
}

.y-us-title h2 {
  color: #000;
  font-size: 55px;
  letter-spacing: 0;
  line-height: 32px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.y-us-title>p {
  color: #777777;
  line-height: 22px;
}

.y-us-title-border {
  background: #ffae11 none repeat scroll 0 0;
  border-radius: 2px;
  display: inline-block;
  height: 3px;
  position: relative;
  width: 50px;
}

.service-3 .service-box {
  margin-bottom: 18px;
  margin-top: 40px;
}

.service-3 .service-box .iconset {
  float: left;
  text-align: center;
  width: 40px;
  height: 40px;
}

.service-3 .service-box .iconset i {
  color: #FF3100;
  font-size: 20px;
}

.service-3 .service-box .y-us-content {
  float: left;
  width: 75%;
}

.service-3 .service-box .y-us-content h4 {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 22px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
}

.service-3 .service-box .y-us-content p {
  color: #000;
  font-size: 17px;

}

.y-us-content h4 {
  color: #000;
}

.iconset {
  width: 40px;
  height: 100px;
  border: 1px solid #FF3100;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
}

.iconset i {
  font-size: 30px;
  color: #007bff;
}



/* why choose us end */


/* CONTACT FORM SLIDING CSS START */
.sidebar-contact {
  position: fixed;
  top: 50%;
  right: -350px;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  padding: 40px;
  background: #fff;

  box-sizing: border-box;
  transition: 0.5s;
  z-index: 999;
  display: block;
}

.sidebar-contact.active {
  right: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.sidebar-contact input,
.sidebar-contact textarea,
.sidebar-contact select {
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, .5);
  outline: none;
  border-radius: 5px;

}

.sidebar-contact h2 {
  margin: 0 0 20px;
  padding: 0;
  color: #000;
  text-align: center;
}

.sidebar-contact textarea {
  height: 60px;
  resize: none;
}

.sidebar-contact input[type="submit"] {
  background: #FF3100;
  color: #fff;
  cursor: pointer;
  border-radius: 100px;
  border: none;
  font-size: 18px;
}

.toggle {
  position: absolute;
  height: 80px;
  width: 48px;
  text-align: center;
  cursor: pointer;
  background: #FF3100;
  top: 50%;
  right: 350px;
  transform: translateY(-50%);
  border-radius: 8px 0 0 8px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle span {
  display: inline-block;
  transform: rotate(270deg);
  font-size: 14px;

}

/* .toggle:before {
  content: 'Enquire Now';
  font-family: fontAwesome;
  font-size: 18px;
  color: #fff;
} */

/* .toggle.active:before {
  content: '\f00d';
} */

.toggle.active {
  transform: translateY(-190);
}

@media (max-width: 1024px) {
  .sidebar-contact {
    width: 70%;
    right: -70%;
    display: block;
  }

  .sidebar-contact.active {
    right: 0;
  }

  .toggle {
    right: 576px;
  }

  .y-us-section div.row:nth-child(2) div.col-lg-4.col-md-6.col-sm-12:nth-child(3) {
    display: flex;
    width: 100%;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .y-us-section div.row:nth-child(2) div.col-lg-4.col-md-6.col-sm-12:nth-child(3) .service-3 {
    display: flex !important;
  }

  .y-us-section div.row:nth-child(2) div.col-lg-4.col-md-6.col-sm-12:nth-child(3) .service-3 .boxx {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .sidebar-contact {
    width: 80%;
    height: auto;
    right: -80%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
  }

  .sidebar-contact.active {
    right: 0;
  }

  .toggle {
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    right: 612px;

  }

  .sidebar-contact.active .toggle {
    top: 10px;
    right: 1px;
    transform: none;
  }
}

@media (max-width: 480px) {
  .sidebar-contact {
    width: 100%;
    height: auto;
    right: -100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
    display: block;
  }

  .sidebar-contact.active {
    right: 0;
  }

  .toggle {
    width: 50px;
    height: 90px;
    /* line-height: 40px; */
    right: 387px;
    top: 50%;
    transform: translateY(-50%);
  }

  .sidebar-contact.active .toggle {
    top: 0px;
    right: 1px;
    transform: none;
  }
}


/* CONTACT FORM SLIDING CSS END */




/* Slider LOGO SLIDER CSS START */
.sec-heading {
  margin-bottom: 10px;
}

.sec-heading h2 {
  text-align: left;
  font-size: 46px;
  font-weight: 600;
  color: #000;
}

.box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in;
  /* margin: 8px; */
}

.box .client-img {
  border: 1px solid #ccc;
}

.box img {
  max-width: 100%;
  max-height: 100%;
  width: 90%;
  border-radius: 8px;
}

/*  */
/* .client_sec .row {
 
  
} */

.client_sec .box {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  height: 100px;
  /* Adjust based on logo size */
}

.client_sec {
  padding: 25px 0px;
}

/* Testimonials Section */
.test_sec {
  padding: 50px 0px;
}

.testimonial {
  position: relative;

  width: 100%;
  padding: 10px 0;
  overflow: hidden;
}

.testimonial .image {
  height: 100px;
  width: 100px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 5px;
  height: 100%;
  width: 100%;
}

.slide p {
  text-align: center;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  margin: 0 !important;
  line-height: 26px;
}

.slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}

.slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 26px;
}

.details .name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.details .job {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn::after,
.nav-btn::before {
  font-size: 20px;
  color: #fff;
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: #4070f4;
}

@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }

  .nav-btn {
    display: none;
  }
}

/* TESTIMONIAL SECTION CSS END */





/* FOOTER CSS START */

/* Base Footer Styles */
.footer-section {
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #FF3100;
  font-size: 20px;
  float: left;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.footer-social-icon a {
  /* background-color: #FF3100; */
  padding: 5px;
  border-radius: 20px;
}

.fac-bg {
  background-color: #3b5998;

}

.twi-bg {
  background-color: red;
}

.ins-bg {
  background-color: #FF3232;
}

.lin-bg {
  background-color: #0077b5;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.single-cta {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-logo img {
  max-width: 200px;
}

.color {
  color: #7e7e7e;
}

.color:hover {
  color: #7e7e7e;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #FF3100;
}

.footer-widget ul li {

  margin-bottom: 5px;
}

.footer-widget ul li a:hover {
  color: #FF3100;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #FF3100;
  padding: 13px 20px;
  border: 1px solid #FF3100;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 18px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-1 {
  color: #FF3100;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
  font-size: 14px;
}

.footer-widget ul {
  padding: 0;
}

.footer-menu li:hover a {
  color: #FF3100;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

.footer-widget ul li a {
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 480px) {
  .our_approach {
    padding: 30px 0px;
  }

  .y-us-section {
    padding: 30px 0px;
  }

  .testi_sec {
    padding: 30px 0px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-widget ul li {
    width: 100%;
    float: none;
    text-align: left;
  }

  .cta-text h4 {
    font-size: 18px;
  }

  .footer-social-icon a {
    font-size: 14px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .single-cta i {
    font-size: 24px;
  }

  .cta-text h4 {
    font-size: 16px;
  }

  .footer-widget-heading h3 {
    font-size: 18px;
  }

  .footer-widget ul li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .footer-logo img {
    max-width: 150px;
  }

  .cta-text h4 {
    font-size: 14px;
  }

  .footer-text p {
    font-size: 12px;
    line-height: 24px;
  }

  .footer-social-icon span {
    font-size: 16px;
  }

  .footer-social-icon a {
    font-size: 12px;
    margin-right: 8px;
  }

  .copyright-text p {
    font-size: 12px;
  }
}


/* FOOTER CSS START */

/* ipad css */
@media (min-width: 768px) and (max-width: 991px) {
  .banner-inner {
    width: 100%;
    padding-top: 40px;
  }
}

/* footer css */
img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-area {
  border-bottom: 1px solid #353C46;
}

.contact-content p {
  font-size: 18px;
  margin: 20px 0 50px;
  position: relative;
  line-height: 32px;
}

.contact-content p::after {
  background: #353C46;
  bottom: -30px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 80%;
}

.contact-content h6 {
  color: #8b9199;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-content span {
  color: #353c47;
  margin: 0 10px;
}

.contact-social {
  margin-top: 30px;
}

.contact-social>ul {
  display: inline-flex;
}

.contact-social ul li a {
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  height: 40px;
  margin: 0 10px;
  padding-top: 7px;
  transition: all 0.4s ease 0s;
  width: 40px;
  border-radius: 20px;
}

.contact-content img {
  max-width: 210px;
}

footer p {
  padding: 15px 0;
  text-align: center;
}

#contact {
  background: #051034;
  color: #fff;
  padding: 25px 0;
}

footer {
  background: #051034;
  color: #fff;
}

footer img {
  width: 44px;
}

.a {
  color: #fff !important;
  font-size: 18px;
}

footer p {
  margin-bottom: 0px !important;
}

.you-bg {
  background-color: red;
}

@media (max-width: 768px) {
  .contact-content {
    text-align: center;
    padding: 0 15px;
  }

  .contact-content p {
    font-size: 16px;
    line-height: 30px;
    margin: 15px 0 30px;
  }

  .contact-content p::after {
    width: 90%;
    bottom: -20px;
  }

  .contact-content h6 {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    /* Stack phone and email on small screens */
    align-items: center;
    gap: 5px;
  }

  .contact-content h6 span {
    display: none;
    /* Remove separator on small screens */
  }

  .contact-social ul {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .contact-social ul li a {
    width: 35px;
    height: 35px;
    padding-top: 5px;
    font-size: 14px;
  }

  .contact-content img {
    max-width: 180px;
  }

  #contact {
    padding: 40px 0;
  }

  footer p {
    font-size: 14px;
    padding: 10px 0;
  }

  footer img {
    width: 38px;
  }

  .a {
    font-size: 16px;
  }

}

@media (min-width: 501px) and (max-width: 900px) {

  .client_sec .box {
    height: 140px;
  }

  .partner-sec .box {
    height: 180px;
  }

  section.section.banner.banner-section .container.banner-column {
    margin-top: 0;
  }

  section.section.banner.banner-section {
    height: 50vh;
  }
}

/* form css */
/* Sidebar Contact Box */

.sidebar-contact.active {
  right: 0;
}

/* Contact Form */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Styling Form Fields */

/* Name & Email Side by Side */
form input[name="name"],
form input[name="email"] {
  width: calc(100% - 0px);
}

/* Phone & Service Side by Side */


/* Message Box Full Width */
form textarea {
  width: 100%;
  height: 80px;
  resize: none;
}

/* Submit Button */

/* Responsive for Small Screens */
@media (max-width: 500px) {

  form input[name="name"],
  form input[name="email"],
  form input[name="phone"],
  form select {
    width: 100%;
  }

  .partner-sec .box {
    height: 140px;
  }

  .sub_banner_title {
    font-size: 50px;
    line-height: 65px;
  }

  .partner-sec .sec-heading h2 {
    font-size: 35px;
  }

  .custom-info-box .custom-heading,
  .sec-heading h2{
    font-size: 30px !important;
  }
}


/* AFTER BANNER TYEP GSAP CSS START */

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.app-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}

.container_app {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}

.reveal {
  font-kerning: none;
  text-transform: unset;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.4;
  color: #000;
}

/* AFTER BANNER TYEP GSAP CSS END */


/* cursor animation strat */
.cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #FF3100;
  background-color: transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.cursor.expand {
  animation: clickExpand 0.5s forwards;
}

.hovered {
  background-color: transparent;
  border-color: #000;
}

@keyframes clickExpand {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(2.5);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* cursor animation End */

/* CARD SECTION START */
.card-custom {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 0 5px #ffffff80;
  border: 1px solid #ccc;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  transition: background-position 5s linear, box-shadow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: flex-end;
}

.card-custom:hover {
  background-position: center bottom;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card__content {
  background-color: #f2f2f2;
  padding: 15px;
  transition: none;
}

.card__title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.card__description {
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* Background image classes */
.bg-img-1 {
  background-image: url('../img/full_ador_design.png');
}

.bg-img-2 {
  background-image: url('../img/full_cubilt_design.png');
}

.bg-img-3 {
  background-image: url('../img/full_induction_design.png');
}

.bg-img-4 {
  background-image: url('../img/full_nibe_design.png');
}

.bg-img-5 {
  background-image: url('../img/full_garrysun_design.png');
}

.bg-img-6 {
  background-image: url('../img/full_suyan_design.png');
}

.bg-img-7 {
  background-image: url('../img/full_school_design.png');
}

.bg-img-8 {
  background-image: url('../img/full_sure_design.png');
}

.bg-img-9 {
  background-image: url('../img/full_Architectural_design.png');
}

/* CARD SECTION END */




/* HEADER STICKY CSS START */
body.downscrol #header {
  position: fixed !important;
  top: -300px !important;
  -webkit-transition: all 0.40s ease-in-out;
  -moz-transition: all 0.40s ease-in-out;
  -o-transition: all 0.40s ease-in-out;
  transition: all 0.40s ease-in-out;
  left: 0;
  right: 0;
  /* background-color: #ffffff; */
  z-index: 9999 !important;
}

body.upscrol #header {
  position: fixed !important;
  background-color: #ffffff !important;
  top: 0px;
  -webkit-transition: all 0.40s ease-in-out;
  -moz-transition: all 0.40s ease-in-out;
  -o-transition: all 0.40s ease-in-out;
  transition: all 0.40s ease-in-out;
  left: 0;
  right: 0;
  z-index: 9999 !important;
  box-shadow: 0px 0px 9px 0px #6e6e6e;
}

/* HEADER STICKY CSS END */





/* TEC SECTION CSS STRAT */
.tech_wraper {
  margin-bottom: 30px;
}

.tech-card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;

  transition: 0.3s;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
  height: 100%;
}

.tech-card:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.tech-card h5 {
  margin-top: 15px;
  font-weight: 600;
}

.tech-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.tech-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* TEC SECTION CSS END */

.choose_web {
  font-size: 25px;
  color: #000;
}

.choose_p {
  color: #000;
}

.clients .col-6.col-md-4.col-lg-2 {
  padding: 0;
}


/* POPUP FORM CSS START */
/* Popup Background */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.popup.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: slideDown 0.5s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: 0.3s;
}

.close-btn:hover {
  color: #000;
}

/* Form Styling */
.form-box {
  display: flex;
  flex-direction: column;
}

.form-box h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 24px;
  color: #333;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px !important;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #FF3100;
  box-shadow: 0 0 5px rgba(0, 119, 255, 0.3);
  outline: none;
}

button[type="submit"] {
  margin-top: 20px;
  padding: 12px;
  font-size: 16px;
  border: none;
  background: #FF3100;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: #FF3100;
}

/* Hide popup initially */
.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 480px) {
  .popup-content {
    padding: 20px;
  }

  .form-box h2 {
    font-size: 20px;
  }
}


.form-box input[name="name"],
.form-box input[name="email"] {
  width: calc(100% - 0px);
}

/* POPUP FORM CSS END */


/* CTA SECTION CSS STRAT */

.custom-contact-section {
  background-color: #f8f9fa;
}

.custom-info-box .custom-heading {
  font-size: 46px;
  font-weight: 600;
  color: #000;
}

.custom-info-box .custom-text {
  font-size: 1.1rem;
  color: #555;
}

.custom-form-wrapper {
  transition: box-shadow 0.3s ease-in-out;
}

.custom-form-wrapper:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}



.custom-form input.form-control,
.custom-form select.form-select,
.custom-form textarea.form-control {
  background-color: #ffffff !important;
  border: 1px solid #ced4da !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 1rem !important;
  box-shadow: none !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-form input.form-control:focus,
.custom-form select.form-select:focus,
.custom-form textarea.form-control:focus {
  border-color: #FF3100 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
}

.custom-form input[name="name"],
.custom-form input[name="email"] {
  width: calc(100% - 0px);
}

.custom-form .btn-primary {
  background-color: #FF3100;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.custom-form .btn-primary:hover {
  background-color: #FF3100;
}

.custom-form textarea.form-control {
  width: 100% !important;
}

.custom-form .mb-3 {
  width: 48%;
}

.custom-form div.mb-3:nth-child(3),
.custom-form div.mb-3:nth-child(4) {
  width: 99%;
}

/* CTA SECTION CSS STRAT */


/* PARTNER SECTION CSS START */
.partner-sec {
  background-image: url(../img/steptodown.com548745.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.partner-sec .sec-heading h2 {
  color: #fff;
}

/* PARTNER SECTION CSS END */

.image_wraper_right_web img {
  position: relative;
  z-index: 3;
}

.image_wraper_right_web:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 2;
  top: -7px;
  /* left: -4px; */
  bottom: 0;
  right: -7px;
  background: #ff3100;
}

.image_wraper_right_web {
  position: relative;
}




/* SERVICES SECTION CSS STRAT */

/* .services-section {
  background: #f9f9f9;
} */

.section-subtitle {
  font-size: 14px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.service-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  flex-grow: 1;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.service-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* SERVICES SECTION CSS END */


/* TESTIMONIAL NEW CSS START */





.sec-heading h2 {
  
  font-size: 2.8rem;
  font-weight: 600;
  color: #222;

  letter-spacing: 1.2px;
}

.testimonial {
  width: 100%;
  position: relative;
  /* Needed for absolute pagination positioning */
}

/* Swiper wrapper as flex container with stretch */
.testi-content {
  display: flex;
  align-items: stretch;
}

/* Swiper slide styling */
.slide {
  background: #fff;
  border-radius: 15px;

  padding: 30px 25px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s ease;
}

.slide:hover {
  transform: translateY(-10px);

}

.slide .image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff3100;
  margin: 0 auto 20px auto;
  display: block;
}

.slide p {
  font-style: italic;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
  min-height: 120px;
  /* consistent height */
}

.rating {
  color: #f5a623;
  /* golden star color */
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.rating i {
  margin-right: 4px;
}

.details .name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #222;
}

.details .job {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-top: 3px;
}

/* Swiper Pagination positioned inside slider */
.swiper-pagination {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ccc;
  opacity: 1;
  margin: 0 10px !important;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Active bullet */
.swiper-pagination-bullet-active {
  background: #ff3100 !important;
  transform: scale(1.3);
}

.swiper-backface-hidden .swiper-slide {
  margin: 0 10px !important;
}

/* TESTIMONIAL NEW CSS END */

.y-us-section .d-flex.row.after_banner_main_wraper .col-xl-6.col-lg-6 {
    
    margin-bottom: 10px;
}


section.client_sec.partner-sec .box img.client-img.img-fluid {
    height: 100px;
}