/* --- NAVBAR --- */
.bottom-navbar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 150;
  display: inline-block;
  border-radius: 8px;
  padding: 0 1rem;
  min-width: 700px;
}

.bottom-navbar .nav {
  padding: 10px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.bottom-navbar .nav-link {
  position: relative;
  padding: 6px 20px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 15px;
  color: var(--font);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bottom-navbar .nav-link .icon .svg,
.bottom-navbar .nav-link.highlighted .content .svg {
  width: 18px;
  height: 18px;
}

.bottom-navbar .nav-link:hover .icon .svg rect,
.bottom-navbar .nav-link.highlighted:hover .content .svg path {
  fill: var(--primary);
}

.bottom-navbar .nav-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.bottom-navbar .nav-link.highlighted {
  position: relative;
  color: var(--primary);
  clip-path: inset(0 round 6px);
  padding: 0;
  border: 0;
}

/* Register the custom property */
@property --_gradient-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.bottom-navbar .nav-link.highlighted .bg {
  /* your gradient background */
  background: conic-gradient(from var(--_gradient-angle) at 8.04% 51.79%,
      #FBFAF6 0deg,
      rgba(251, 250, 246, 0) 360deg),
    #40ff86;



  /* animation */
  animation: gradient-angle-rotate 3s linear infinite;

  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.bottom-navbar .nav-link.highlighted .content {
  clip-path: inset(2px round calc(6px - 2px));
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  /* background-image: linear-gradient(180deg, #592db5, #7d40ff); */
  background: #dae0ff;
  padding: 10px 30px;
  color: var(--primary);
  gap: 8px;
}

@keyframes gradient-angle-rotate {
  0% {
    --_gradient-angle: 0deg;
  }

  100% {
    --_gradient-angle: 360deg;
  }
}


.megamenu-arrow {
  position: absolute;
  left: 50%;
  top: -27px;
  transform: translateX(-50%) translateY(0);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
  z-index: 152;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.nav-link.active .megamenu-arrow {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* --- OVERLAY --- */
.megamenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 140;
}

.megamenu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* --- MEGAMENU --- */
.megamenu {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 80vw;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
  z-index: 151;
}

.megamenu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* example content */

.megamenu .link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  border-radius: 4px;
  transition: all .3s ease;
}

.megamenu .link-item h4 {
  font-size: 20px;
  color: var(--header);
}

.megamenu .link-item p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.megamenu .link-item .icon {
  opacity: 0;
  transition: all .3s ease;
}

.megamenu .link-item:hover {
  background: rgba(240, 243, 255, 1);
  box-shadow: 0 1px 0 var(--primary);
}

.megamenu .link-item:hover .icon {
  opacity: 1;
}

.megamenu .recent-works {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
}

.megamenu .recent-works .contents {
  padding: 20px;
}

.megamenu .recent-works .contents .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.megamenu .recent-works .contents .header .svg path {
  fill: var(--font) !important;
  transition: all .3s ease;
}

.megamenu .recent-works:hover .contents .header .svg path {
  fill: var(--primary) !important;
  transition: all .3s ease;
}

.megamenu .recent-works .img {
  overflow: hidden;
}

.megamenu .recent-works .img img {
  transition: all .3s ease;
}

.megamenu .recent-works:hover .img img {
  transform-style: unset;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}


@media screen and (max-width: 767px) {
  .bottom-navbar {
    width: 100%;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    min-width: auto;
    background: transparent;
    box-shadow: none;
  }

  .bottom-navbar .nav {
    justify-content: space-between !important;
    gap: 0;
  }

  .bottom-navbar .nav-link {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    gap: 0;
    border: 0;
    padding: 0;
    font-size: 15px;
    width: 64px;
  }

  .bottom-navbar .nav-link.highlighted {
    transform: translateY(-54%);
    position: relative;
    clip-path: inset(0 round 16px);
  }

  .bottom-navbar .nav-link.highlighted {
    width: 64px;
  }

  .bottom-navbar .nav-link.highlighted .content {
    padding: 10px;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    clip-path: inset(2px round calc(18px - 2px));
  }

  .bottom-navbar .nav-link.highlighted .content .svg {
    width: 32px;
    height: 32px;
  }

  :root {
    --_middle-size: calc(64px + 18px + (6px * 2));
    --_left-offset: calc(50% - (var(--_middle-size) / 2));
    --_top-offset: 80px;
    --_right-offset: calc(50% + (var(--_middle-size) / 2));
    --_cutfix: 10px;
    --_left-offset-cutfix: calc(var(--_left-offset) - var(--_cutfix));
    --_right-offset-cutfix: calc(var(--_right-offset) + var(--_cutfix));
  }

  .mobile_nav_bg {
    z-index: -1;
    border-radius: 16px;
    background-color: #fff;
    pointer-events: none;
    position: absolute;
    inset: 0%;
    box-shadow: inset 0 .1875rem .25rem #30ff9766;


    clip-path: polygon(0 0, var(--_left-offset) 0, var(--_left-offset) var(--_top-offset), var(--_right-offset) var(--_top-offset), var(--_right-offset) 0, 100% 0, 100% 100%, 0 100%);

  }

  .nav_curve_shape {
    pointer-events: none;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%);

    clip-path: polygon(var(--_left-offset-cutfix) 0, var(--_right-offset-cutfix) 0, var(--_right-offset-cutfix) 100%, var(--_left-offset-cutfix) 100%);
  }

  .megamenu {
    width: 100%;
    border-radius: 16px 16px 0 0;
    bottom: 0;
    z-index: -2;
    padding: 20px 0 130px 0;
  }

  .megamenu-arrow {
    display: none;
  }

  .megamenu .link-item {
    border-bottom: 1px solid var(--border-light);
    padding: 15px 20px;

  }

  .megamenu .link-item h4 {
    font-size: 18px;
  }

  .megamenu .link-item p {
    font-size: 14px;
  }

}

@media screen and (max-width: 449px) {
  .bottom-navbar .nav-link {
    width: 50px;
    font-size: 12px;
  }
}

@media screen and (max-width: 399px) {
  .bottom-navbar .nav-link .text {
    display: none;
  }

  .bottom-navbar .nav-link .icon .svg,
  .bottom-navbar .nav-link.highlighted .content .svg {
    width: 24px;
    height: 24px;
  }
}



.home_hero {
  background-image: url('../img/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  min-height: 100dvh;
  overflow: hidden;
  position: relative;
}



#cursorCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  /* Prevents blocking clicks */
}

.home_hero .title {
  font-size: 48px;
  text-transform: capitalize;
}

.home_hero .contents h5 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Ruthie", cursive;
}

.home_hero .text_slide_wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  margin-top: 15px;
}

.home_hero .text_slide {
  display: inline-block;
  min-width: 900px;
  overflow: hidden;
  /* line-height: 1.7; */
}

.home_hero .text_slide .item {
  text-align: center;
  background: linear-gradient(180deg, #2D9DFF 0%, #F09DA4 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.logo_slider:before,
.logo_slider:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logo_slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.home_hero .logo_slider {
  max-width: 600px;
}

.logo_slider_inner {
  display: flex;
  gap: 40px;
  position: relative;
}

.logo_slider_inner img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  opacity: .7;
}

.hero_btns {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hero_btns .btn_primary,
.hero_btns .btn_secondary {
  min-width: 290px;
  text-transform: uppercase;
}


@media screen and (max-width: 991px) {
  .home_hero .text_slide {
    min-width: 700px;
  }
}

@media screen and (max-width: 767px) {
  .home_hero .title {
    font-size: 32px;
  }

  .home_hero .text_slide {
    min-width: 500px;
  }

  .home_hero .logo {
    max-width: 200px;
  }

}

@media screen and (max-width: 574px) {
  .home_hero .text_slide {
    font-size: 26px;
    min-width: 350px;
  }

  .home_hero {
    padding-top: 30px;
  }
}

/* Our Services  */

.section.our_services {
  position: relative;
  background-attachment: fixed;
  /* fixed background */
  z-index: 1;
}

.section.our_services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/our-services-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  /* control background opacity */
  z-index: -1;
  /* keep it behind content */
}


.our_services .sticky_col {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.our_services .service_card {
  margin-bottom: 50px;
}

.our_services .service_card .service_title {
  display: inline-block;
  font-size: 42px;
  color: var(--tertiary);
  margin-bottom: 15px;
  line-height: 1.5;
}

.our_services .service_card .service_title i {
  font-size: 28px;
  color: var(--primary);
  position: relative;
  top: -3px;
}

.our_services .service_card .service_title:hover {
  color: var(--primary);
}


.service_swiper {
  padding: 20px 0;
}

.service_swiper .swiper-wrapper {
  align-items: flex-end;
  /* bottom align slides */
}

.our_services .service_card .swiper-slide {
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
  transition: transform 0.4s ease, z-index 0.4s ease;
}

.our_services .service_card .slide-inner {
  width: 100%;
  height: 60%;
  /* smaller height for inactive */
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0.7;
  background: #ddd;
}

.our_services .service_card .swiper-slide-active .slide-inner {
  height: 100%;
  /* full height for active */
  opacity: 1;
}


.our_services .service_card .slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}


@media screen and (max-width: 767px) {
  .our_services .service_card .service_title {
    font-size: 28px;
  }

  .our_services .service_card .service_title i {
    font-size: 24px;
  }
}

.box_v1_wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.box_v1_wrap .item {
  background: linear-gradient(160.73deg, #B1E4FF 14.41%, #FFFFFF 39.97%);
  padding: 50px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
  height: 100%;
  min-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box_v1_wrap .item .number {
  display: inline-block;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--font);
  transition: transform 0.35s ease, color 0.35s ease, text-shadow 0.35s ease;
}

.box_v1_wrap .item h5 {
  font-size: 20px;
  margin: 0;
  transition: transform 0.35s ease, color 0.35s ease;
  color: var(--font);
}

/* Hover effects */
.box_v1_wrap .item:hover {
  transform: translateY(-8px);
  box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.18);
}


.box_v1_wrap .item:hover .number {
  transform: scale(1.1);
  color: var(--secondary);
  text-shadow:
    1px 1px 2px rgba(106, 13, 173, 0.3),
    2px 2px 4px rgba(106, 13, 173, 0.2);
}

.box_v1_wrap .item:hover h5 {
  font-size: 20px;
  color: var(--primary);
  transform: translateY(8px);
}



/* Clients */

.clientSlider .owl-stage-outer {
  padding: 0 80px;
}

.clientSlider .item {
  display: flex;
  gap: 40px;
  flex-direction: column;
  text-align: center;
}

.clientSlider .item .img {
  height: 80px;
  display: inline-flex;
  align-items: center;
}

.clientSlider .item .img img {
  max-width: 100%;
  width: auto;
}

.clientSlider .owl-nav button.owl-prev,
.clientSlider .owl-nav button.owl-next {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
}

.clientSlider .owl-nav button.owl-prev:hover,
.clientSlider .owl-nav button.owl-next:hover {
  background: var(--primary);
}

.clientSlider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}


@media screen and (max-width: 767px) {
  .clientSlider .owl-stage-outer {
    padding: 0;
  }

  .clientSlider .owl-nav {
    position: unset;
    justify-content: center;
    margin-top: 40px;
  }

  .clientSlider .owl-nav button.owl-prev,
  .clientSlider .owl-nav button.owl-next {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .clientSlider .item {
    gap: 40px;
  }

  .clientSlider .item .img {
    height: auto;
    justify-content: center;
  }
}

/* Blog Section  */

.blog_post .blog_item {
  background: #fff;
  border-radius: 6px;
  height: 100%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog_post .blog_item:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.11);
}

.blog_post .blog_item .img {
  overflow: hidden;
  height: 270px;
  border-radius: 6px 6px 0 0;
}

.blog_post .blog_item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 6px 6px 0 0;

  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.blog_post .blog_item:hover .img img {
  -webkit-transform-style: unset;
  transform-style: unset;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}

.blog_post .blog_item .contents {
  padding: 20px;
}

.blog_post .blog_item .tag {
  display: inline-block;
  padding: 6px 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: var(--secondary);
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog_post .blog_item .title_3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.4px;
  color: var(--header);
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog_post .blog_item .blog_desc {
  margin-bottom: 0;
  color: var(--font);
  font-size: 15px;
  font-weight: 400;

  overflow: hidden;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}


.blog_post .blog_item .read_more {
  display: block;
  background: var(--primary);
  padding: 6px 15px;
  color: var(--white);
  font-size: 14px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  text-transform: capitalize;
  text-align: center;
  margin-top: 20px;

  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.4s ease;

}

.blog_post .blog_item:hover .read_more {
  max-width: 100%;
}


.testimonialSlider .owl-stage {
  display: flex;
  align-items: flex-end;
}

.testimonialSlider .owl-item {
  margin-top: auto;
}

.testimonialSlider .item {
  padding-left: 60px;
  box-shadow: 12px 15px 0 var(--primary);
  border-radius: 0 15px 10px 65px;
  margin-bottom: 20px;
  margin-right: 25px;
}

.testimonialSlider .item .contents {
  position: relative;
  background: var(--white);
  border-radius: 50px 20px 20px 0;
  position: relative;
  padding: 20px 20px 20px 70px;
}


.testimonialSlider .item .contents .review_desc {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.testimonialSlider .item .contents .ratings ul {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: var(--rating-color);
  margin-bottom: 10px;
}

.testimonialSlider .item .client_details .name {
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
}

.testimonialSlider .item .client_details .location {
  color: var(--font);
  font-size: 14px;
}

.testimonialSlider .item .client_details h6 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.testimonialSlider .item .client_details h6 img {
  width: 16px;
}

.testimonialSlider .item .client_img {
  position: absolute;
  bottom: 0;
  left: -50px;
}

.testimonialSlider .item .client_img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  background: #D8F1FF;
  padding: 10px;
}

.testimonialSlider .item .client_img .name {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  color: var(--white);
  font-size: 36px;
}


.faq .accordion-button:hover,
.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-item {
  /* border: 0; */
  margin-bottom: 15px;
  border-radius: 6px;
}

.faq .accordion-header .accordion-button {
  /* border: 1px solid var(--border-light); */
  font-size: 20px;
  border-radius: 6px;
}

.faq .accordion-button:not(.collapsed) {
  background: var(--bg-primary-light);
  border-color: var(--bg-primary-light);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}


.faq .accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--border-light);
}

.faq .accordion-button::after {
  background-image: none;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068";
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.accordion-button.collapsed:after {
  content: '\2b';
}

@media screen and (max-width: 767px) {
  .faq .accordion-header .accordion-button {
    font-size: 17px;
  }

  .faq .accordion-body {
    font-size: 15px;
  }
}


/* Contact  */

.contact_info_item {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact_info_item:hover {
  background: rgba(230, 246, 255, 1);
  transform: translateY(-5px);
  box-shadow: 6px 12px 24px rgba(0, 0, 0, 0.18);
}

.contact_info_item .icon {
  width: 60px;
  height: 60px;
  background: var(--bg-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.contact_info_item .icon .svg {
  width: 28px;
  height: 28px;
}

.contact_info_item:hover .icon {
  background: #fff;
}

.contact_info_item .contents h4 {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--header);
}

.contact_info_item .contents p,
.contact_info_item .contents a {
  font-size: 16px;
  color: var(--font);
}

.social_info_item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

.social_info_item h4 {
  font-size: 28px;
  color: var(--header);
}

.social_info_item ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.social_info_item ul li .svg {
  width: 28px;
  height: 28px;
}

.social_info_item ul li a .svg path {
  transition: all .1s ease;
}

.social_info_item ul li a:hover .svg path {
  fill: var(--primary);
}


.contact_form_box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

.contact_form_box .header {
  margin-bottom: 20px;
}

.contact_form_box .header h5 {
  color: var(--warning-color);
  margin-bottom: 5px;
  font-weight: 400;
}

.contact_form_box .header h4 {
  font-size: 22px;
  color: var(--header);
  font-weight: 500;
  line-height: 1.4;
}

.input-container {
  position: relative;
}

.input {
  width: 100%;
  outline: none;
  border: 1px solid var(--border-light);
  background: #fff;
  padding: 0.5rem 1.2rem;
  color: var(--font);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.input:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: none;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.form-select {
  color: var(--font);
  padding: 0.7rem 1.2rem;
  outline: none;
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 10;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 15px;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 9;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 2px;
  transform: translateY(-50%);
  left: 25px;
  font-size: 15px;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}


@media screen and (max-width: 574px) {
  .contact_form_box {
    padding: 20px;
  }
}

/* Footer  */

.footer {
  background: var(--tertiary);
  padding-top: 120px;
  padding-bottom: 150px;
}

.footer_widget .desc {
  color: #E5E7EB;
  font-size: 15px;
}

.footer_widget .social ul {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer_widget .social ul li .svg {
  width: 24px;
  height: 24px;
}

.footer_widget .social ul li .svg path {
  fill: #fff;
  transition: all .1s ease;
}

.footer_widget .social ul li a:hover .svg path {
  fill: var(--primary);
}


.footer_btn.btn_primary {
  display: inline-block;
  background: rgb(4, 127, 190);
  color: #fff;
  padding: 10px 20px;
  border: 1px solid rgba(230, 246, 255, 0.41);
  text-transform: uppercase;
  transition: all .3s ease;
  margin-top: 15px;
}

.footer_btn.btn_primary .svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  margin-top: -2px;
  display: inline-block;
  vertical-align: middle;
  fill: #fff;
  transition: all .3s ease;
}

.footer_btn.btn_primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer_widget .title_4 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}

.footer_widget .links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_widget .links a {
  font-size: 15px;
  color: #E5E7EB;
}

.footer_widget .links a:hover {
  color: #fff;
}


.newsletter_form .input-with-button {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.newsletter_form .input-field {
  flex-grow: 1;
  border: none;
  padding: 10px;
  outline: none;
}

.newsletter_form .action-button {
  background: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.newsletter_form .action-button svg {
  width: 20px;
  height: 20px;
}

.copyright_wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
}

.copyright_wrap hr {
  color: #fff;
  opacity: .7;
  margin-bottom: 4px;
}

.copyright_wrap .desc {
  font-size: 14px;
  color: #E5E7EB;
}

.footer_menu ul {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer_menu ul li a {
  font-size: 14px;
  color: #E5E7EB;
}

.footer_menu ul li a:hover {
  color: #fff;
}

.office-hour {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.office-hour .item {
  display: flex;
  justify-content: space-between;
  gap: 5px 10px;
  font-size: 15px;
  color: #E5E7EB;
}

.ready_to_work_box {
  padding: 50px;
  background: #B1E4FF;
  border: 5px solid #fff;
  border-radius: 20px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  bottom: -80px;
}

.ready_to_work_box h3 {
  font-size: 32px;
  background: linear-gradient(90deg, #FF4545 0%, #001FB8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  margin-bottom: 10px;
}

.ready_to_work_box .desc {
  font-size: 16px;
  color: var(--font);
  margin-bottom: 15px;
}


/* Services Page  */

.single_page_hero {
  min-height: 600px;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 50px 0;
  display: flex;
  align-items: center;
}

.single_page_hero.services {
  background-image: url('../img/services/services-hero-banner.png');
}

.single_page_hero.single_service_hero {
  background-image: url('../img/video-editing/video-eiditing-hero-banner.png');
}

.single_page_hero.pricing_plans {
  background-image: url('../img/pricing-plans/pricing-plans-hero-banner.png');
}

.single_page_hero.our_team {
  background-image: url('../img/pricing-plans/pricing-plans-hero-banner.png');
}

.single_page_hero.about_us {
  background-image: url('../img/about-us/about-us-hero-banner.png');
}



/* .single_page_hero.graphic_design {
  background-image: url('../img/services/services-hero-banner.png');
} */

.single_page_hero .title {
  color: var(--white);
  font-size: 54px;
  margin-top: 20px;
}

.single_page_hero .subtitle {
  color: var(--white);
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "Carattere", cursive;
}

.single_page_hero .desc {
  color: var(--white);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}


.section.services_grid {
  background-image: url('../img/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grid_service_card {
  position: relative;
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.grid_service_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160.73deg, #B1E4FF 14.41%, #FFFFFF 39.97%);
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 0;
  border-radius: inherit;
}

/* .grid_service_card:hover::before {
  opacity: 1;
} */

.grid_service_card:hover {
  transform: translateY(-5px);
  border-color: #B1E4FF;
}

.grid_service_card>* {
  position: relative;
  z-index: 1;
}

.grid_service_card img {
  width: 100px;
  margin-bottom: 10px;
}

.grid_service_card h4 {
  font-size: 22px;
  margin-bottom: 6px;
}

.grid_service_card p {
  font-size: 15px;
}

.grid_service_card .see_more {
  display: inline-block;
  background: var(--bg-primary-light);
  padding: 5px 12px;
  border-radius: 6px;
  color: var(--header);
  margin-top: 10px;
  transition: all .3s ease;
}

.grid_service_card:hover .see_more {
  background: var(--primary);
  color: var(--white);
}


/* Work gallery */

.gallery_tab {
  background: var(--bg-primary-light);
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery_tab .item {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
}

.gallery_tab .item.active,
.gallery_tab .item:hover {
  background: var(--tertiary);
  color: var(--white);
}

.work_gallery .gallary-item .item .thumbnail {
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
}

.work_gallery .gallary-item .item .thumbnail img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.work_gallery .gallary-item .item .thumbnail .label {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 8px 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 0 6px 0 6px;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .single_page_hero .title{
    font-size: 32px;
  }

  
}



/* Service features scrollable card */

.service_features_v1 {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  flex-flow: column;
  display: flex;
  position: relative;
}


.service_features_v1 .item {
  background-color: rgba(86, 197, 255, 1);
  border-radius: 1rem;
  display: flex;
  justify-content: flex-start;
  padding: 30px;
  position: sticky;
  top: 5rem;
  overflow: visible;
  gap: 60px;
  align-items: stretch;
}


.service_features_v1 .item .left {
  flex: 0 50%;
  max-width: 50%;
}

.service_features_v1 .item .right {
  flex: 0 0 50%;
  max-width: 50%;
}


.service_features_v1 .item.two {
  z-index: 3;
  background-color: rgba(251, 232, 164, 1);
  top: 10rem;
}

.service_features_v1 .item.three {
  z-index: 4;
  background-color: rgba(198, 207, 255, 1);
  top: 15rem;
}

.service_features_v1 .item.four {
  z-index: 5;
  background-color: rgba(201, 255, 247, 1);
  top: 20rem;
}

.service_features_v1 .item.five {
  z-index: 5;
  background-color: rgba(255, 201, 201, 1);
  top: 25rem;
}

.service_features_v1 .item.six {
  z-index: 5;
  background-color: rgba(234, 255, 201, 1);
  top: 30rem;
}



.service_features_v1 .item .right img {
  max-width: 100%;
  border-radius: 6px;
}

.service_features_v1 .item .left h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service_features_v1 .item .left .box_wrap {
  display: flex;
  gap: 10px 50px;
  margin-top: 40px;
}

.service_features_v1 .item .left .box_wrap .box {
  display: inline-block;
  min-width: 200px;
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

.service_features_v1 .item .left .box_wrap .box h6 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--font);
}

.service_features_v1 .item .left .box_wrap .box .number {
  font-size: 48px;
  color: var(--header);
}

.service_features_v1 .item .left .creations {
  background: rgba(154, 171, 255, 0.2);
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  border: 1px solid rgba(177, 228, 255, 1);
  display: inline-flex;
  align-items: center;
  gap: 20px 40px;
}

.service_features_v1 .item .left .creations:hover {
  background: var(--primary);
}

.service_features_v1 .item .left .creations .users {
  display: flex;
  position: relative;
}

.service_features_v1 .item .left .creations .users img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.service_features_v1 .item .left .creations .users img:not(:first-child) {
  margin-left: -10px;
}

.service_features_v1 .item .left .creations .check_btn {
  display: inline-block;
  background: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  color: var(--primary);

}


.service_features_v1 .item .right .layer_box {
  height: 100%;
  background: rgba(240, 249, 254, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  padding: 10px;
}


@media screen and (max-width: 1199px) {
  .service_features_v1 .item .left .box_wrap {
    gap: 10px 20px;
    flex-wrap: wrap;
  }

  .service_features_v1 .item .left .box_wrap .box {
    min-width: 180px;
    padding: 15px;
  }

  .service_features_v1 .item .left .box_wrap .box h6 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .service_features_v1 .item .left .box_wrap .box .number {
    font-size: 32px;
  }

  .service_features_v1 .item .left .creations .users img {
    width: 36px;
    height: 36px;
  }

  .service_features_v1 .item .left .creations {
    gap: 10px 20px;
  }

  .service_features_v1 .item .left .creations .check_btn {
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .service_features_v1 {
    grid-row-gap: 2rem;
  }

  .service_features_v1 .item {
    flex-direction: column;
    position: unset;
    text-align: center;
  }

  .service_features_v1 .item .left .box_wrap {
    justify-content: center;
  }

  .service_features_v1 .item .left,
  .service_features_v1 .item .right {
    max-width: 100%;
  }
}



/* Our Process  */

:root {
  --hex-w: 250px;
  --hex-h: 300px;
  --accent: #0d6efd;
  --bg: #fff;
  --shadow: 0 6px 18px rgba(11, 28, 60, .06);
  --anim: 300ms cubic-bezier(.22, .9, .36, 1);
}

.our-process {
  background: linear-gradient(180deg, #fff 0%, #f7f3fb 100%);
}

.process-wrap {
  position: relative;
}


/* Start badge */
.start-badge {
  position: absolute;
  left: 24px;
  top: 300px;
  z-index: 50;
  transform: rotate(-18deg);
  padding: 6px 25px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  background: var(--bg-primary-light);
  box-shadow: 0 8px 22px rgba(13, 110, 253, 0.04);
  color: var(--tertiary);
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
}

/* GRID layout for large screens (4 top, 3 bottom reversed under columns 2..4) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, var(--hex-w));
  gap: 50px 100px;
  justify-content: center;
  align-items: start;
  position: relative;
  z-index: 40;
  /* above connectors */
  margin-top: 8px;
}

/* For smaller screens we switch to flex-wrap so items flow automatically */
@media (max-width: 991.98px) {
  .process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.hex {
  width: var(--hex-w);
  height: var(--hex-h);
  -webkit-clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
  background: var(--white);
  box-shadow: 6px;
  position: relative;
  overflow: hidden;
  transition: transform var(--anim);
  min-width: 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

.hex-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 18px;
  text-align: center;
  pointer-events: none;
}

.step-number img {
  margin-bottom: 8px;
  transition: transform var(--anim);
}

.process-grid .icon {
  width: 34px;
  margin: 10px 0;
  transition: transform var(--anim);
}

.process-grid .title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--secondary);
  transition: transform var(--anim);
}

.process-grid .overlay {
  position: absolute;
  inset: 0;
  background: var(--tertiary);
  color: #fff;
  transform: translateX(-110%);
  transition: transform var(--anim);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.process-grid .overlay .desc {
  padding: 20px 15px;
  transform: translateX(-8px);
  transition: transform var(--anim);
}

.process-grid .overlay .desc p {
  text-align: center;
  color: var(--white);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.hex:hover,
.hex.active {
  transform: translateY(-6px);
}

.hex:hover .step-number,
.hex.active .step-number {
  transform: translateX(-28px);
}

.hex:hover .icon {
  transform: translateX(-22px);
}

.hex:hover .title,
.hex.active .title {
  transform: translateX(22px);
}

.hex:hover .overlay,
.hex.active .overlay {
  transform: translateX(0%);
}

.hex:hover .overlay .desc,
.hex.active .overlay .desc {
  transform: translateX(0);
}


.connector {
  position: absolute;
  height: 16px;
  z-index: 30;
  pointer-events: none;
  object-fit: cover;
  transform-origin: 0 50%;
}



/* connector start -> 01 */
#conn-start {
  left: 0;
  top: 28%;
  width: auto;
  transform: translate(126px, 13%) rotate(193deg);
  height: 120px;
}

/* connectors between top items: 01->02, 02->03, 03->04 */
#conn-1-2 {
  left: 25%;
  top: 25%;
  width: auto;
  height: 160px;
  transform: translate(35px, -49%) rotate(260deg);
}

#conn-2-3 {
  left: 49.5%;
  top: 36%;
  width: auto;
  height: 160px;
  transform: translate(-34px, -109%) rotate(30deg);
}

#conn-3-4 {
  left: 71%;
  top: 25%;
  width: auto;
  height: 160px;
  transform: translate(35px, -49%) rotate(260deg);
}


#conn-4-5 {
  left: 71%;
  top: 25%;
  width: auto;
  height: 200px;
  transform: translate(152px, 53%) rotate(-2deg);
}


#conn-7-6 {
  left: 58%;
  top: 58%;
  height: 150px;
  transform: translate(51px, 60%) rotate(-95deg);
  width: auto;
}

#conn-6-5 {
  left: 32%;
  top: 58%;
  height: 180px;
  transform: translate(58px, 4%) rotate(40deg);
  width: auto;
}

@media screen and (max-width: 1399px) {
  :root {
    --hex-w: 210px;
    --hex-h: 280px;
  }

  #conn-start,
  .start-badge {
    display: none;
  }

  .process-grid .overlay .desc p {
    font-size: 14px;
  }
}

/* responsive tweaks you will almost certainly want to adjust */
@media screen and (max-width: 1199px) {
  :root {
    --hex-w: 190px;
    --hex-h: 220px;
  }

  .process-grid .overlay .desc p {
    font-size: 12px;
  }

  .step-number img {
    width: 32px;
  }

  .process-grid .icon {
    width: 28px;
  }

  .process-grid .title {
    font-size: 14px;
  }

  /* tweak connectors */
  #conn-1-2,
  #conn-2-3,
  #conn-3-4,
  #conn-4-5,
  #conn-7-6,
  #conn-6-5 {
    display: none;
  }


}

@media screen and (max-width: 768px) {

  .connector {
    display: none;
  }

  .start-badge {
    left: 8px;
    top: 42px;
    transform: rotate(-18deg) scale(.95);
  }
}

/* helper: grid placement for items on large screens */
@media (min-width: 992px) {

  /* place 1..4 in top row columns 1..4 */
  .hex.item-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .hex.item-2 {
    grid-column: 2;
    grid-row: 1;
  }

  .hex.item-3 {
    grid-column: 3;
    grid-row: 1;
  }

  .hex.item-4 {
    grid-column: 4;
    grid-row: 1;
  }

  /* bottom row: put 7,6,5 in columns 2,3,4 respectively so 4 hangs above 5 */
  .hex.item-7 {
    grid-column: 2;
    grid-row: 2;
  }

  .hex.item-6 {
    grid-column: 3;
    grid-row: 2;
  }

  .hex.item-5 {
    grid-column: 4;
    grid-row: 2;
  }

  /* center the bottom three items (5,6,7) as a group while keeping their visual order
     We shift them left by half a hex width so the trio sits centered under the top row.
     Using relative left keeps hover translateY transforms unaffected. */
  .hex.item-5,
  .hex.item-6,
  .hex.item-7 {
    position: relative;
    left: calc(-0.7 * var(--hex-w));
  }
}

/* on small screens, just let DOM order flow (we use original order 1..7) */
@media (max-width: 991.98px) {

  .hex.item-1,
  .hex.item-2,
  .hex.item-3,
  .hex.item-4,
  .hex.item-5,
  .hex.item-6,
  .hex.item-7 {
    grid-column: auto;
    grid-row: auto;
  }
}

/* hide connectors on very small screens (optional) */
@media (max-width:480px) {
  .connector {
    display: none;
  }
}



/* Pricing Package  */


.pricing_card {
  background: var(--white);
  padding: 20px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  transition: all .4s ease;
}

.pricing_card:hover {
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
  transform: translateY(-10px);
}

.pricing_card .header {
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #0D99FF 48.08%, rgba(102, 102, 102, 0) 100%);
  border-image-slice: 1;
  margin-bottom: 20px;
}


.pricing_card .header .title {
  font-size: 32px;
  color: var(--header);
}

.pricing_card .header .price {
  font-size: 42px;
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  margin: 15px 0;
}

.pricing_card .header .desc {
  font-size: 15px;
  line-height: 1.4;
  color: var(--font);
}

.pricing_card .features_list li {
  display: flex;
  align-items: top;
  gap: 10px;
  margin-bottom: 10px;
}

.pricing_card .features_list li i {
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: 5px;
}

.pricing_card .features_list li.yes {
  color: var(--header);
}

.pricing_card .features_list li.yes i {
  color: var(--primary);
}

.pricing_card .features_list li.no i {
  color: var(--font);
}

.pricing_card.popular {
  border: 2px solid var(--primary);
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
  position: relative;
}

.pricing_card.popular .popular_badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 0 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}


.single_gallery_slider .item img {
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: all .3s ease;
}

.single_gallery_slider .item .link {
  display: inline-block;
  position: relative;
}

.single_gallery_slider .item .link .label {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 8px 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: 0 6px 0 6px;
  font-size: 15px;
}

.single_gallery_slider .item .link:hover img {
  opacity: .8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary);
}



.video_services .service_features_v1 {}

.video_services .service_features_v1 .item {
  background: rgba(253, 236, 239, 1);

  padding: 50px;
  min-height: 80dvh;

  top: 0 !important;

}

.video_services .service_features_v1 .item.two {
  background: rgba(234, 244, 251, 1);
}

.video_services .service_features_v1 .item.three {
  background: rgba(232, 246, 243, 1);
}

.video_services .service_features_v1 .item.four {
  background: rgba(247, 247, 247, 1);
}

.video_services .service_features_v1 .item.five {
  background: rgba(255, 244, 230, 1);
}

.video_services .service_features_v1 .item.five {
  background: rgba(255, 244, 230, 1);
}

.video_services .service_features_v1 .item.six {
  background: rgba(232, 246, 243, 1);
}

.video_services .service_features_v1 .item .item_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;

  max-width: 1500px;
  margin: 0 auto;
}

.video_services .service_features_v1 .item .left .service_title {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  padding: 15px 50px;
  border: 1px solid var(--white);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

.video_services .service_features_v1 .item .left .service_title h4 {
  font-size: 34px;
  margin-bottom: 0;
  line-height: 1.5;
}

.video_services .service_features_v1 .item .left .service_title h4 {
  font-size: 34px;
  margin-bottom: 0;
  line-height: 1;
}

.video_services .service_features_v1 .item .left .service_title h4 span {
  color: var(--primary);
}

.video_services .service_features_v1 .item .left .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.video_services .service_features_v1 .item .left .tags .tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 6px;
}

.video_services .service_features_v1 .item .right video {
  max-width: 100%;
}



.video_services .service_features_v1 .item.two .left,
.video_services .service_features_v1 .item.four .left,
.video_services .service_features_v1 .item.six .left {
  text-align: right;
}

.video_services .service_features_v1 .item.two .left .tags,
.video_services .service_features_v1 .item.four .left .tags,
.video_services .service_features_v1 .item.six .left .tags {
  justify-content: flex-end;
}

@media screen and (max-width: 991px) {
  .video_services .service_features_v1 .item {
    padding: 50px 20px;
  }

  .video_services .service_features_v1 .item .item_inner {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .video_services .service_features_v1 .item.two .item_inner,
  .video_services .service_features_v1 .item.four .item_inner,
  .video_services .service_features_v1 .item.six .item_inner {
    flex-direction: column;
  }

  .video_services .service_features_v1 .item .left .tags,
  .video_services .service_features_v1 .item.two .left .tags,
  .video_services .service_features_v1 .item.four .left .tags,
  .video_services .service_features_v1 .item.six .left .tags {
    justify-content: center;
  }

  .video_services .service_features_v1 .item.two .left,
  .video_services .service_features_v1 .item.four .left,
  .video_services .service_features_v1 .item.six .left {
    text-align: center;
  }
}


/* Pricing Page  */

.service-tabs .nav {
  background: var(--bg-primary-light);
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid var(--primary);
}

.service-tabs .nav-pills .nav-link {
  color: var(--primary);
}

.service-tabs .nav-pills .nav-link.active {
  color: var(--white);
  background-color: var(--primary);
}

.page-tabs .nav {
  gap: 10px;
}

.page-tabs .nav .nav-link {
  padding: 6px 10px;
  border: 1px solid var(--tertiary);
  border-radius: 6px;
  color: var(--tertiary);
}

.page-tabs .nav .nav-link.active {
  background: var(--tertiary);
  color: var(--white);
}

.custom_pricing .requirements_card {
  position: relative;
  background-color: var(--bg-primary-light);
  background-image: linear-gradient(162deg, rgba(14, 175, 255, 0.3) 8%, rgba(78, 168, 215, 0) 47%, rgba(3, 169, 255, 0) 80%, rgba(0, 162, 246, 0.4) 100%, var(--primary));
  padding: 40px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

.custom_pricing .requirements_card>h4 {
  font-size: 42px;
  margin-bottom: 5px;
}

.custom_pricing .requirements_card>p {
  font-size: 16px;
  color: var(--header);
}

.custom_pricing .requirements_card .items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  /* position: relative; */
}

.custom_pricing .requirements_card .items .left {
  flex: 0 0 50%;
}

.custom_pricing .requirements_card .items .left li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.custom_pricing .requirements_card .items .left li .count {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
}

.custom_pricing .requirements_card .items .right img {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 350px;
  max-width: 100%;
}

.custom_pricing .feature_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.custom_pricing .feature_row .item {
  flex: 0 0 48%;
  background-color: var(--bg-primary-light);
  background-image: linear-gradient(162deg, rgba(14, 175, 255, 0.3) 8%, rgba(78, 168, 215, 0) 47%, rgba(3, 169, 255, 0) 80%, rgba(0, 162, 246, 0.4) 100%, var(--primary));
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
  height: 100%;
  min-width: 250px;
}

.custom_pricing .feature_row .item .icon {
  width: 60px;
  margin-bottom: 15px;
}

.custom_pricing .feature_row .item h4 {
  font-size: 24px;
  margin-bottom: 5px;
}

.custom_pricing .form_card {
  background-color: var(--bg-primary-light);
  background-image: linear-gradient(162deg, rgba(14, 175, 255, 0.3) 8%, rgba(78, 168, 215, 0) 47%, rgba(3, 169, 255, 0) 80%, rgba(0, 162, 246, 0.4) 100%, var(--primary));
  padding: 40px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
}

.custom_pricing .form_card .header {
  margin-bottom: 20px;
}

.custom_pricing .form_card .header .title {
  font-size: 48px;
  margin-bottom: 10px;
}

.custom_pricing .form_card .header .desc {
  font-size: 15px;
  line-height: 1.5;
}

.custom_pricing .form_card form .form-label {
  margin-bottom: 5px;
}

.custom_pricing .form_card form input,
.custom_pricing .form_card form textarea {
  font-size: 15px;
}


@media screen and (max-width: 1199px) {
  .custom_pricing .requirements_card .items .right img {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .custom_pricing .requirements_card {
    padding-bottom: 200px;
  }

  .custom_pricing .requirements_card .items .right img {
    right: calc(50% - 125px);
    bottom: 0;
  }

  .custom_pricing .requirements_card .items {
    flex-direction: column;
    margin-top: 30px;
  }

  .custom_pricing .requirements_card .items .left {
    width: 100%;
  }
}

@media screen and (max-width: 574px) {
  .custom_pricing .feature_row {
    flex-direction: column;
    gap: 20px;
  }

  .custom_pricing .feature_row .item {
    width: 100%;
  }
}


.why_us .grid_service_card img {
  width: 60px;
}

.extended_services_box {
  border-width: 4px 16px 3px 4px;
  border-style: solid;
  border-color: var(--primary);
  border-radius: 10px;
  padding: 30px;
}

.extended_services_box_inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 0;
}

.extended_services_box_inner .item {
  flex: 0 0 20%;
  padding: 0 10px;
}

.extended_services_box_inner .item h4 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
}

.extended_services_box_inner .item ul {
  list-style: disc;
  padding-left: 20px;
}

.extended_services_box_inner .item ul li {
  font-size: 16px;
  list-style: disc;
  line-height: 1.5;
  margin-bottom: 10px;
}

.extended_services_box_inner .item ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
  .extended_services_box_inner .item {
    flex: 0 0 33%;
  }
}

@media screen and (max-width: 767px) {
  .extended_services_box_inner .item {
    flex: 0 0 50%;
  }
}

@media screen and (max-width: 574px) {
  .extended_services_box_inner .item {
    flex: 0 0 100%;
  }
}





.team_members .team_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: ; */
  grid-column-gap: 40px;
  grid-row-gap: 40px;

  margin-top: -200px;
}

.team_members .team_items .item {
  position: relative;
  max-width: 280px;
  overflow: hidden;
  border-radius: 10px;
}

.team_members .team_items .item img {
  border-radius: 10px;
  transition: all .3s ease;
}

.team_members .team_items .item .details {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  background: var(--bg-primary-light);
  border-radius: 10px;
  padding: 10px 0;
  border: 2px solid rgba(140, 170, 255, 1);
  transition: all .3 ease;
}

.team_members .team_items .item:hover img {
  transform: scale(1.1);
}

.team_members .team_items .item .name {
  color: rgba(1, 71, 107, 1);
  font-size: 20px;
}

.team_members .team_items .item .designation {
  color: var(--primary);
}

@media screen and (max-width: 1199px) {
  .team_members .team_items {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}


@media screen and (min-width: 1200px) {
  .team_members .team_items .item.one {
    grid-area: 1 / 1 / 2 / 2;
  }

  .team_members .team_items .item.two {
    grid-area: 2 / 1 / 3 / 2;
  }

  .team_members .team_items .item.three {
   grid-area: 2 / 3 / 3 / 4; 
  }

  .team_members .team_items .item.four {
    grid-area: 3 / 4 / 4 / 5;
  }

  .team_members .team_items .item.five {
    grid-area: 4 / 1 / 5 / 2;
  }

  .team_members .team_items .item.six {
    grid-area: 3 / 2 / 4 / 3;
  }

  .team_members .team_items .item.seven {
    grid-area: 3 / 3 / 4 / 4;
  }

  .team_members .team_items .item.eight {
    grid-area: 4 / 2 / 5 / 3;
  }
  .team_members .team_items .item.new {
   grid-area: 2 / 2 / 3 / 3;
  }
  .team_members .team_items .item.new2 {
    grid-area: 3 / 1 / 4 / 2;
  }
 

  .team_members .section_desc {
    max-width: 300px;
    margin-left: auto;
    margin-right: 0;
  }
}




.team_testimonial_box {}

.team_testimonial_box .item {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--bg-primary-light);
  background-image: linear-gradient(162deg, rgba(14, 175, 255, 0.3) 8%, rgba(78, 168, 215, 0) 47%, rgba(3, 169, 255, 0) 80%, rgba(0, 162, 246, 0.4) 100%, var(--primary));
  padding: 30px;
  border-radius: 10px 70px 10px 40px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.12);
  margin-bottom: 20px;

  display: flex;
  gap: 30px;
}

.team_testimonial_box .item .img {
  flex: 0 0 auto;
}

.team_testimonial_box .item .img img {
  width: 200px;
  border-radius: 6px;
}


.team_testimonial_box .item .details {
  background: var(--white);
  padding: 15px;
  border-radius: 20px 15px;
}

.team_testimonial_box .item .details .quote {
  width: 30px;
  margin-bottom: 5px;
}

.team_testimonial_box .item .details .name {
  font-size: 20px;
  margin-bottom: 6px;
}

.team_testimonial_box .item .details .designation {
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--font);
}

.team_testimonial_box .item .details .desc {
  font-size: 15px;
  color: var(--font);
}

.team_testimonial_box .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 150px;
}


.team_testimonial_box .owl-carousel .owl-nav button.owl-next,
.team_testimonial_box .owl-carousel .owl-nav button.owl-prev {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  margin-bottom: -35px;

  transition: all .3s ease;
}

.team_testimonial_box .owl-carousel .owl-nav button.owl-next:hover,
.team_testimonial_box .owl-carousel .owl-nav button.owl-prev:hover {
  background: var(--primary);
  color: var(--white);
}

.team_testimonial_box .owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px;
}

@media screen and (max-width: 767px) {
  .team_testimonial_box .item {
    flex-direction: column;
    align-items: center;
  }
}



/* Back to top  */

#backToTop {
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  cursor: pointer;
}

#backToTop:hover {
  opacity: .7;
  background-image: var(--primary);
}

#backToTop:active {
  background-image: var(--primary);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}


@media screen and (max-width: 991px) {
  #backToTop{
    display: none;
  }
}

/* About Page  */

.about-image-block .image-box {
  position: relative;
  display: block;
  padding-right: 35px;
  margin-right: 20px;
  padding-bottom: 130px;
}

.about-image-block .image-box .pattern-layer {
  background-image: url('../img/shape-1.png');
  position: absolute;
  top: 0px;
  right: 0px;
  width: 35px;
  height: 100%;
  background-repeat: repeat-y;
  animation: slide 60s linear infinite;
  -webkit-animation: slide 60s linear infinite;
}

.about-image-block .image-box .image-1 {
  position: relative;
  display: block;
}

.about-image-block .image-box .image-1 img {
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.about-image-block .image-box .image img {
  width: 100%;
}

.about-image-block .image-box .image .archie {
  width: 70px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-image-block .image-box .image-2 {
  position: absolute;
  right: 35px;
  bottom: 0px;
}

.about-image-block .image-box .image-2 img {
  width: 380px;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.about-image-block .image-box .image-2:before {
  background: var(--primary);
  position: absolute;
  content: '';
  left: 0px;
  top: -20px;
  width: calc(100% - 20px);
  height: 20px;
}

.about-image-block .image-box .image-3 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  width: 160px;
  height: 160px;
  line-height: 160px;
  text-align: center;
  transition: all 500ms ease;
}

.about-image-block .image-box .image .logo {
  position: absolute;
  left: 48px;
  bottom: 44px;
  width: 70px;
  height: 70px;
  text-align: center;
  transition: all 500ms ease;
}

.about-image-block .image-box .image-3 i {
  background: -webkit-linear-gradient(-45deg, var(--grad-dark), var(--grad-light) 100%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes slide {
  from {
    background-position: 0 1920px;
  }

  to {
    background-position: 0 0;
  }
}

@-webkit-keyframes slide {
  from {
    background-position: 0 1920px;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes rotateme {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes rotateme {
  from {
    -o-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(360deg);
  }
}

.rotate-me {
  animation-name: rotateme;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: rotateme;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: rotateme;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: rotateme;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: rotateme;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}



a.video-btn {
  position: relative;
  display: inline-block;
  padding: 0px 0px 0px 78px;
  font-size: 18px;
  line-height: 28px;
  color: #1e1e2a;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}


a.video-btn i {
  position: absolute;
  left: 0px;
  top: 2px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  font-size: 20px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 5px rgb(11, 91, 201, .2);
}

a.video-btn i:after {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.btn-box a {
  float: left;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 10px rgb(11, 91, 201, .1);
    box-shadow: 0 0 0 10px rgb(11, 91, 201, .1);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(11, 91, 201, .1);
    box-shadow: 0 0 0 0 rgb(11, 91, 201, .1);
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 10px rgb(11, 91, 201, .1);
    box-shadow: 0 0 0 10px rgb(11, 91, 201, .1);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(11, 91, 201, .1);
    box-shadow: 0 0 0 0 rgb(11, 91, 201, .1);
  }
}



.services_gallery .item {
  display: block;
  transition: all .3s ease;
  padding-top: 10px;
}

.services_gallery .item:hover {
  transform: translateY(-5px);
}

.services_gallery .item img {
  border-radius: 30px;
}

.services_gallery .owl-theme .owl-dots {
  position: relative;
  top: -50px;
}



.privacy_policy .item {
  margin-bottom: 40px;
}

.privacy_policy .item .sub_title {
  font-size: 32px;
  margin-bottom: 10px;
}

.privacy_policy .item ul {
  margin-top: 10px;
}

.privacy_policy .item ul li {
  list-style: disc;
  margin-left: 30px;
}