@charset "utf-8";
/* CSS Document */

/******************************/
/*******common css*************/


/******* fonts *********/
@import url('../fonts/stylesheet.css');
/******* fonts *********/

::-webkit-scrollbar {
  background: #000000;
  height: 3px;
  width: 3px;
}

::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 2px #E03800; */
}

::-webkit-scrollbar-thumb {
  background: #E03800;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #E03800;
}

html {
  overflow-x: hidden;
}

body {
  font-family: 'Inter Tight' !important;
  overflow-x: hidden;
  color: #616161;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
}

#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}

/* =====PRELOADER STYLES======== */
#preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000; 
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
  will-change: transform;
}

#preloader.exiting {
  transform: translateY(-100%);
  transition-delay: 0.8s;
}

/* Character-by-character container */
.scramble-text {
    font-size: clamp(2.5rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 50px;
    display: flex;
    color: #fff;
    font-family: 'Inter Tight', sans-serif; 
}

.char { 
    display: inline-block; 
    width: 0.8em; 
    text-align: center; 
    color: #333; /* Dimmed color for unscrambled letters */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.exiting .char {
    transform: translateY(-40px);
    opacity: 0;
}

/* Staggered delay for letters exiting */
#preloader.exiting .char:nth-child(1) { transition-delay: 0.00s; }
#preloader.exiting .char:nth-child(2) { transition-delay: 0.03s; }
#preloader.exiting .char:nth-child(3) { transition-delay: 0.06s; }
#preloader.exiting .char:nth-child(4) { transition-delay: 0.09s; }
#preloader.exiting .char:nth-child(5) { transition-delay: 0.12s; }
#preloader.exiting .char:nth-child(6) { transition-delay: 0.15s; }
#preloader.exiting .char:nth-child(7) { transition-delay: 0.18s; }
#preloader.exiting .char:nth-child(8) { transition-delay: 0.21s; }

/* Loading Group */
.loader-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 320px; /* As requested */
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

#preloader.exiting .loader-group {
    transform: translateY(10px);
    opacity: 0;
    transition-delay: 0.4s;
}

.loading-label {
    font-family: monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    margin-bottom: 12px;
}

/* Longer Ping-Pong Line */
.loader-track { 
    width: 100%; 
    height: 1px; 
    background: rgba(255,255,255,0.1); 
    position: relative; 
    overflow: hidden; 
}

.loader-bar { 
    position: absolute; 
    width: 80px; 
    height: 100%; 
    background: #E03800; /* Using your brand orange for the loader bar */
    left: -80px; 
    animation: loader-ping-pong 1.5s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes loader-ping-pong {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(430px);
  }
}


/* ============================================================
   MAIN CONTENT REVEAL (The Rise Transition)
   ============================================================ */
.main-site-content {
    opacity: 0;
    /* Remove transform: translateY(100px); */
    will-change: opacity; 
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-site-content.visible {
    opacity: 1;
    transition-delay: 1.2s;
}

a {
  text-decoration: none;
}

.bg_img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* .section-grain-overlay {
  z-index: 9999;
  opacity: .03;
  pointer-events: none;
  background-image: url(../images/Grain.gif);
  background-position: 0 0;
  background-size: auto;
  position: fixed;
  inset: 0%;
} */

.main_title {
  font-size: 48px;
  color: #323232;
}

.sub_heading {
  font-size: 24px;
  color: #323232;
}

.third_heading {
  font-size: 32px;
  color: #323232;
}

p {
  font-size: 16px;
  color: #3E3E3E;
}

.grey_grad {
  background: linear-gradient(to right, #E1E5E8, #D1D6D9);
}

.text_gradient {
  padding-right: 1px;
  background: linear-gradient(82.93deg, #215CE1 -6.53%, #5DDCFF 78.67%);
  -webkit-background-clip: text;
  background-clip: text;
  color: rgba(0, 0, 0, 0);
}

.fit_content {
  width: fit-content;
}

.sec_padding {
  padding-top: 70px;
  padding-bottom: 70px;
}

.grey_bg {
  background-color: #F2F2F2;
  border-radius: 50px;
}

.rounded_50 {
  border-radius: 50px;
}

.title_tag {
  padding: 5px 14px;
  background-color: #eeeeee;
  border-radius: 30px;
  width: fit-content;
  font-size: 16px;
}

.title_tag .tag_circle {
  height: 10px;
  width: 10px;
  background-color: #E03800;
  border-radius: 100%;
  animation: blink 3s linear infinite;
}

.title_tag.dark_tag {
  background-color: #ffffff33;
  color: #ffffff;
}

.title_tag .green_circle {
  background-color: #00FF08 !important;
}

@keyframes blink {

  0%,
  100%,
  50% {
    opacity: 1
  }

  25%,
  75% {
    opacity: 0
  }
}

.blink {
  -webkit-animation-name: blink;
  animation-name: blink
}

.main_heading {
  font-size: 48px;
  color: #323232;
  font-weight: 500;
}

/* Main btn CSS */
.black_round_btn {
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  border-radius: 100px;
  color: #fff;
  padding: 11px 31px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.white_round_btn {
  background-color: #ffffff;
  color: #000000;
}

.white_round_btn:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.white_round_btn::after {
  content: "";
  background-image: linear-gradient(90deg, #ffffff, #E03800 50%, #ffffff) !important;
}

.black_round_btn .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.black_round_btn .icon i {
  transform: rotate(-45deg);
  transition: all .3s cubic-bezier(.44, 0, .56, 1)0s;
}

.black_round_btn .icon i:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg) translate(-20px, 0px);
}

.black_round_btn .text {
  position: relative;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
}

.black_round_btn .text::after {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  display: block;
  transition: all .3s cubic-bezier(.44, 0, .56, 1)0s;
  ;
  position: absolute;
  content: attr(data-back);
  transform: translateY(100%);
}

.black_round_btn .text::before {
  top: 0;
  left: 0;
  opacity: 1;
  display: block;
  transition: all .3s cubic-bezier(.44, 0, .56, 1)0s;
  ;
  position: relative;
  content: attr(data-front);
  transform: translateY(0);
}

.black_round_btn::after {
  content: "";
  background-image: linear-gradient(90deg, #0a0a0a, #E03800 50%, #0a0a0a);
  position: absolute;
  inset: 0%;
  transform: translate(-100%);
  z-index: -1;
}

.black_round_btn:hover {
  color: #fff;
  background-color: #0a0a0a;
}

.black_round_btn:hover::after {
  animation: btnAnimate 1s;
}

.black_round_btn:hover .icon i:nth-child(1) {
  transform: rotate(-45deg) translate(20px, 0px);
}

.black_round_btn:hover .icon i:nth-child(2) {
  transform: rotate(-45deg) translate(0px, 0px);
}

.black_round_btn:hover .text::after {
  opacity: 1;
  transform: translateY(0%);
}

.black_round_btn:hover .text::before {
  opacity: 0;
  transform: translateY(-100%);
}

@keyframes btnAnimate {
  to {
    transform: translateX(100%);
  }
}

/* Main btn CSS */

/* Menu CSS */
.main_menu {
  padding: 15px 20px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.main_menu::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(3 46 71 / 33%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 100px;
  border: 1px solid rgb(255 255 255 / 30%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand_logo img {
  height: 40px;
  width: auto;
}

.main_menu .navbar-nav {
  gap: 25px;
}

.main_menu .navbar-nav li a {
  font-size: 16px;
  font-weight: 400;
  color: #dedede;
  position: relative;
  transition: 0.4s ease-in-out;
}

.main_menu .navbar-nav li a:hover {
  color: #E03800;
}

.main_menu .navbar-nav li a.active {
  color: #ffffff;
}

.main_menu .navbar-nav li a.active:before {
  position: absolute;
  content: '';
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background-color: #E03800;
  left: -8px;
  top: 17px;
}

.main_menu .black_round_btn {
  padding: 17px 40px;
}

/* Menu CSS */

/* Hero Slider CSS  */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-1 {
  z-index: 0;
}

.hero-bg-2 {
  z-index: 1;
  clip-path: inset(0 100% 0 0);
}

.hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}

.hero-content {
  position: absolute;
  z-index: 2; 
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  left: 80px;
  max-width: 480px;
}

.text-group-1,
.text-group-2 {
  transition: none;
}

.text-group-2 {
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 1rem;
  opacity: 1;
  transform: none;
}

.hero-content p {
  font-size: 24px;
  opacity: 1;
  transform: none;
}

.hero_big_text {
  z-index: 9;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 300px;
  left: 0;
  right: 0;
  bottom: -10px;
  /* This is the final resting point */
  line-height: 1;
  margin-bottom: -50px;
  background: linear-gradient(90deg, #fbffff, transparent);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  /* Prevents text from blocking clicks */
}

.hero_overlay_gradient {
  z-index: 9;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  perspective: 2000px;
  transform-style: preserve-3d;
  animation: rotateGradient 10s linear infinite;
}

.hero_overlay_gradient .overlay-1 {
  width: 50%;
  height: 290px;
  background-image: linear-gradient(130deg, #ff4800ae 21%, #ff4800ad 58%, #ff4800ae 100%);
  background-size: 300% 100%;
  display: block;
  filter: blur(41px);
  transform: rotate(17deg) translate(-100px, 200px);
}

.hero_overlay_gradient .overlay-2 {
  width: 50%;
  height: 290px;
  background-image: linear-gradient(130deg, #ff4800ae 21%, #ff4800ad 58%, #ff4800ae 100%);
  background-size: 300% 100%;
  display: block;
  filter: blur(41px);
  transform: rotate(-7deg) translate(20px, 220px);
}

@keyframes rotateGradient {
  0% {
    transform: rotateZ(0deg) scale3d(1, 1, 1) skewX(0deg);
  }

  10% {
    transform: rotateZ(2deg) scale3d(1.03, 0.97, 1) skewX(-2deg);
  }

  20% {
    transform: rotateZ(4deg) scale3d(1.05, 0.94, 1) skewX(-4deg);
  }

  30% {
    transform: rotateZ(3deg) scale3d(1.04, 0.96, 1) skewX(-3deg);
  }

  40% {
    transform: rotateZ(1deg) scale3d(1.02, 0.98, 1) skewX(-1deg);
  }

  50% {
    transform: rotateZ(0deg) scale3d(1, 1, 1) skewX(0deg);
  }

  60% {
    transform: rotateZ(-2deg) scale3d(1.06, 0.95, 1) skewX(3deg);
  }

  70% {
    transform: rotateZ(-3deg) scale3d(1.08, 0.92, 1) skewX(4deg);
  }

  80% {
    transform: rotateZ(-1deg) scale3d(1.04, 0.97, 1) skewX(2deg);
  }

  90% {
    transform: rotateZ(0deg) scale3d(1.02, 0.99, 1) skewX(1deg);
  }

  100% {
    transform: rotateZ(0deg) scale3d(1, 1, 1) skewX(0deg);
  }
}

.hero-section .social_icon_div {
  z-index: 9;
  right: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
}

.social_icon_div .social_icon {
  height: 35px;
  width: 35px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  opacity: 0.5;
  transition: 0.4s ease-in-out;
}

.social_icon_div .social_icon:hover {
  border: 1px solid #E03800;
  opacity: 1;
}

.social_icon_div .social_icon i {
  color: #ffffff;
  transition: 0.4s ease-in-out;
}

.social_icon_div .social_icon:hover i {
  color: #E03800;
}

.social_icon.dark_icon {
  border: 1px solid #323232;
  opacity: 1;
}

.social_icon.dark_icon i {
  color: #323232;
}

/* rotate circcle css */
.circle_div {
  right: 100px;
  z-index: 99;
  bottom: 180px;
}

.circle_div .circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle_div .logo {
  position: absolute;
  width: 120px;
  height: 120px;
  background: url("../images/rotate_icon.png");
  background-size: cover;
  border-radius: 100%;
  background-position: center;
}

.circle_div .text {
	position: absolute;
	width: 100%;
	height: 100%;
	font-family: consolas;
	color: #ffffff81;
	font-size: 17px;
	animation: textRotation 8s linear infinite;
}


@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}

.circle_div .text span {
	position: absolute;
	left: 50%;
	top: 0;
	font-size: 20px;
	transform-origin: 0 100px;
}

/* rotate circcle css */

/* Hero Slider CSS  */

/* Reveal text CSS */
.text-reveal {
  font-size: 34px;
  font-weight: 500;
  color: #323232;
}

/* Reveal text CSS */

.about_left {
  padding-right: 30px;
  border-right: 1px solid #acacac7d;
}

.ceo_img {
  width: 80px;
  height: 80px;
}

/* stat boxes */
.proj_stat_div h5 {
  font-size: 56px;
  color: #151515;
  font-weight: 400;
}

.proj_stat_div .border_right {
  border-right: 1px solid #d3d3d3;
}

.home_stat_card {
  padding: 30px;
  border-radius: 40px;
  background-color: #030303;
}

.home_stat_card.card_1 {
  background-image: url('../images/stat_bg_1.webp');
  background-size: cover;
}

.home_stat_card.card_2 img {
  height: 180px;
  width: auto;
  right: 10px;
  top: 10px;
}

.large_text {
  font-size: 80px;
  font-weight: 400;
}

.p_large {
  font-size: 18px;
}

/* stat boxes */


/* services cards styles */
.cards-section {
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.cards-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.cards-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 40px !important;
  padding: 0px 60px 0px 80px;
  will-change: transform;
}

.custom-card-content h3 {
  max-width: 280px;
}

.custom_card_img img {
  border-radius: 40px;
}

.service_card {
  flex-shrink: 0;
  width: 450px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  background-color: #F9F9F9;
  border: 1px solid #E5E5E5;
  transition: 0.4s ease-in-out;
}

.service_card:hover {
  background-color: #0a0a0a;
}

.service_card:hover h3 {
  color: #ffffff;
}

.service_card p{
  min-height: 72px;
}

.service_card:hover p {
  color: #aeaeae;
}

/* service cards */

/* arrow btn */
.arrow_button {
  cursor: pointer;
  border: none;
  background: #000000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition:
    background 300ms,
    transform 200ms;
  font-weight: 600;
}

.button__circle {
  position: relative;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-170%, 170%);
}

.arrow_button:hover {
  background: #67745B;
  transform: scale(1.05);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}

a:hover .button__icon {
  color: #ffffff;
}

a:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(170%, -170%);
}

a:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

a:hover .button__circle {
  background: #E03800;
}

/* arrow btn */

.left_polygon {
  left: 30px;
}

.shape_bg_sec {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  /* background-image: url('../images/shape_bg.png'); */
  background-color: #000000;
  border-radius: 50px;
}

.values_row {
  padding-top: 200px;
}

.icon_large {
  height: 55px;
  width: 55px;
}

.text_light {
  color: #aeaeae;
}

.polygon_values {
  top: 20px;
  right: 20px;
  z-index: 1;
}

.polygon_shape {
  height: 470px;
  width: auto;
  transform-origin: center center;
  /* Optional: helps with performance for heavy images */
  will-change: transform;
}

/* marquees */

.marquee {
  display: flex;
  padding: 20px 0;
  margin: 50px 0 90px 0px;
  white-space: nowrap;
  color: #ffffff;
  background: #E03800;
  width: 110%;
  left: -5%;
  /* Centering the oversized width */
  position: relative;
  overflow: hidden;
  /* Important: keeps the animation contained */
}

/* The Fix: This wrapper holds all H2s in a single row */

.marquee-content {
  display: flex;
  will-change: transform;
}

.marquee h2 {
  display: block;
  padding: 0 22px;
  flex-shrink: 0;
  /* Prevents text from squishing */
  font-size: 24px;
}

.marquee span {
  margin-left: 44px;
  opacity: 0.4;
}

.marquee_reverse {
  transform: rotate(3deg);
  background-color: #07223C;
  margin-top: -120px;
}

.marquee_forward {
  transform: rotate(-3deg);
  /* Cleaned up 357deg to -3deg */
}

/* marquee end */

/* portfolio */
/* portfolio */

/* testimonial section */
.client_bg {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 40px;
}

/* Video */
.bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Overlay */
.video_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 55%),
      rgb(0 0 0 / 55%));
  z-index: 2;
}

/* Content above video */
.testi_left_content {
  position: relative;
  z-index: 3;
}

.testi_div {
  background-color: #030303;
  border-radius: 40px;
  padding: 90px 58px 58px 58px;
}

.testi_div img {
  height: 120px;
  width: auto;
}

.swiper {
  overflow: hidden;
}

.testi_swiper {
  /* padding-top: 50px; */
}

.testi_swiper .swiper-slide {
  margin-top: 20px;
  overflow: hidden;
}

.testi_swiper .swiper-button-next,
.testi_swiper .swiper-button-prev {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin-top: 0 !important;
  display: block !important;
}

.testi_swiper .swiper-button-next img,
.testi_swiper .swiper-button-prev img {
  height: 36px;
  width: auto;
  transition: 0.4s ease-in-out;
}

.testi_swiper .swiper-button-next img:hover,
.testi_swiper .swiper-button-prev img:hover {
  opacity: 0.5;
}

.testi_swiper .swiper-navigation-icon {
  display: none !important;
}

.testi_content h6 {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
}

.serv_testi{
  font-size: 19px !important;
}

/* testimonial section */

/* client slider */
.clients-carousel .item,
.clients-carousel .swiper-slide {
  border: 1px solid #F1F1F1;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 15px;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-carousel .item img,
.clients-carousel .swiper-slide img {
  object-fit: contain;
  transition: filter 0.3s ease-in-out;
  /* filter: grayscale(100%); */
  opacity: 1;
  max-width: 100%;
  max-height: 100%;
}

.clients-carousel .item img:hover,
.clients-carousel .swiper-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client_slider_1 .swiper-wrapper,
.client_slider_2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.top_right_gradient{
  height: 700px;
  right: -30px;
  top: -230px;
}
/* client slider */

/* Swiper pagination styles for three_slider */
.three_slider-pagination {
  position: relative;
  margin-top: 25px;
  bottom: 0 !important;
  text-align: center;
}

.three_slider-pagination .swiper-pagination-bullet {
  background: #323232;
  opacity: 0.3;
  width: 10px;
  height: 10px;
  margin: 0 3px !important;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border-radius: 100%;
}

.three_slider-pagination .swiper-pagination-bullet-active {
  background: #E03800;
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

.three_slider .swiper-slide img{
  width: 100%;
}

/* Force the entire pagination container to hide when Swiper locks it on desktop */
.three_slider-pagination.swiper-pagination-lock {
  display: none !important;
}
/* Swiper pagination styles for three_slider */

/* portfolio section */
.web_link {
  color: #a6a6a6;
  font-size: 16px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.web_link:hover {
  color: #E03800;
}

.stack-wrapper {
  padding-bottom: 10vh;
}

.cards-row {
  position: relative;
  width: 100%;
  min-height: 480px;
}

.card-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 40px;
}

.stack_card {
  height: 480px;
  width: 100%;
  background: #1e1e1e;
  border-radius: 30px;
  padding: 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #ffffff;
}

.stack_card .stack_right .bg_img {
  transition: 0.4s ease-in-out;
  background-position: center;
}

.stack_card:hover .stack_right .bg_img {
  scale: 1.1;
}

/* Card indexes */
.card-1 {
  z-index: 1;
}

.card-2 {
  z-index: 2;
}

.card-3 {
  z-index: 3;
}

.card-4 {
  z-index: 4;
}

.card-5 {
  z-index: 5;
}

.card-6 {
  z-index: 6;
}

.stack_left {
  padding: 54px 54px 30px 54px;
}

.portfolio_numb {
  font-size: 100px;
  font-weight: 600;
  color: #3333331a;
  top: -20px;
  left: 20px;
}

.tag_div {
  padding: 8px 30px;
  border-radius: 50px;
  border: 1px solid #d3d3d3;
  font-size: 15px;
  color: #323232;
  font-weight: 500;
}

/* portfolio section */


/* =============================================== */
/* =============================================== */

/* Inner pages CSS Start*/
/* ===============================================  */
/* ===============================================  */

.inner_banner {
  position: relative;
  min-height: 320px;
  background-image: url('../images/inner_banner.webp');
  display: flex;
  align-items: end;
}

.inner_banner.service_banner {
  background-image: none;
  min-height: auto;
}

.service_banner .main_menu::after {
  background-color: rgb(196 196 196 / 33%);
}

.service_banner .main_menu .navbar-nav li a {
  color: #515151;
}

.service_banner .main_menu .navbar-nav li a.active {
  color: #000000;
}

.service_banner .main_menu .navbar-nav li a:hover {
  color: #E03800;
}

.inner_title {
  margin-top: 130px;
}

.inner_title h1 {
  font-size: 54px;
  font-weight: 600;
}

.service_title {
  margin-top: 80px;
}

.service_title h1 {
  font-size: 54px;
  font-weight: 600;
  color: #323232;
}

.about_val_bg {
  border-radius: 50px 50px 0px 0px;
  background-color: #030303;
}

.val_div.border_card {
  padding: 100px 30px 30px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.06);
}

/* .scale-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px; 
} */

.scale-image {
  width: 100%;
  height: auto;
  border-radius: 50px;
  transform-origin: center center;
  object-fit: cover;
  will-change: transform, border-radius;
}

/* accordions */
.accordion-item {
  background-color: #ffffff;
  border: 1px solid rgba(210, 185, 175, 0.35);
  border-radius: 14px !important;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 20px rgba(160, 120, 100, 0.13);
}

.accordion-button {
  background-color: transparent;
  font-size: 20px;
  font-weight: 500;
  color: #323232;
  padding: 22px 24px;
  box-shadow: none !important;
  border-radius: 14px !important;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #2c1f1a;
}

.accordion-button::after {
  display: none;
}

.accordion-button .accordion-toggle-icon {
  flex-shrink: 0;
  color: #3E3E3E;
  font-size: 16px;
  width: 16px;
  text-align: center;
  position: relative;
}

.accordion-button.collapsed .accordion-toggle-icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\2b";
}

.accordion-button:not(.collapsed) .accordion-toggle-icon::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068";
  color: #3E3E3E;
}

.accordion-body {
  font-size: 16px;
  color: #3E3E3E;
  padding: 0 24px 24px 24px;
}

/* accordions */

.career_box {
  padding: 30px;
  background-color: #F9F9F9;
  border: 1px solid #E5E5E5;
  border-radius: 30px;
  transition: 0.4s ease-in-out;
}

.career_box:hover {
  box-shadow: 0 4px 20px rgba(160, 120, 100, 0.13);
}

.line_1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.line_2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line_3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* pagination */
.page_pagination {
  gap: 8px;
}

.page_pagination .page-item .page-link {
  background-color: #ffffff;
  border-radius: 50px;
  color: #000000;
  border: 1px solid #151515;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_pagination .page-item .page-link:hover {
  background-color: #86cce816;
}

.page_pagination .active .page-link {
  background-color: #151515 !important;
  color: #ffffff;
  box-shadow: none;
  border: none;
}

/* pagination */

.custom_ul {
  list-style: none;
  padding-left: 0px;
}

.custom_ul li {
  margin-bottom: 12px;
  padding-left: 1.2em;
  color: #3E3E3E;
  font-size: 16px;
  position: relative;
}

.custom_ul li::before {
  content: '\f111';
  font-family: "FontAwesome";
  font-size: 8px;
  color: #E03800;
  position: absolute;
  left: 0;
  top: 6px;
}

/* form css */
.custom_form label {
  font-size: 15px;
  font-weight: 600;
  color: #323232;
  margin-bottom: 0px;
}

.custom_form .form-control, .custom_form .form-select {
  height: 50px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #323232;
  border-radius: 0px;
  background-color: transparent;
}

/* Contact enquiry custom drop-list */
.contact-enquiry-dropdown {
  position: relative;
}

.contact-enquiry-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-enquiry-trigger {
  width: 100%;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #777777;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #323232;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.contact-enquiry-trigger.has-value {
  color: #323232;
}

.contact-enquiry-trigger:hover,
.contact-enquiry-dropdown.is-open .contact-enquiry-trigger {
  border-color: #e03800;
  background: transparent;
}

.contact-enquiry-trigger:focus-visible,
.contact-enquiry-dropdown.is-open .contact-enquiry-trigger {
  outline: none;
  box-shadow: none;
}

.contact-enquiry-trigger.is-invalid {
  border-color: #dc3545;
  box-shadow: none;
}

.contact-enquiry-trigger i {
  flex-shrink: 0;
  color: #e03800;
  font-size: 12px;
  transition: transform 0.25s ease;
}

.contact-enquiry-dropdown.is-open .contact-enquiry-trigger i {
  transform: rotate(180deg);
}

.contact-enquiry-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: 100%;
  max-height: 280px;
  padding: 8px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(7, 34, 60, 0.14);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.contact-enquiry-dropdown.is-open .contact-enquiry-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.contact-enquiry-option {
  width: 100%;
  padding: 11px 12px;
  color: #323232;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.contact-enquiry-option:hover,
.contact-enquiry-option:focus-visible {
  color: #e03800;
  outline: none;
  background: rgba(224, 56, 0, 0.08);
}

.contact-enquiry-option.is-selected {
  color: #ffffff;
  background: #e03800;
}

.contact-enquiry-dropdown:has(.contact-enquiry-native:disabled) .contact-enquiry-trigger {
  color: #777777;
  background: transparent;
  cursor: not-allowed;
  opacity: 0.75;
  pointer-events: none;
}

/* form css */

.contact_info_links h4 a i {
  color: #39AE41;
}

.contact_info_links h4 a {
  color: #323232;
  transition: 0.4s ease-in-out;
}

.contact_info_links h4 a:hover {
  color: #7d7d7d;
}

.client_box {
  padding: 20px 10px;
  border: 1px solid #F1F1F1;
  background-color: #ffffff;
  border-radius: 20px;
}

.category_tag {
  background-color: #151515;
  font-size: 14px;
  color: #ffffff;
  width: fit-content;
  height: fit-content;
}

.folio_card_logo {
  width: 110px;
  border-radius: 10px;
  padding: 5px;
}

.folio_card {
  padding: 15px;
  background-color: #F9F9F9;
  border: 1px solid #E5E5E5;
  border-radius: 40px;
  transition: 0.4s ease-in-out;
}

.folio_card:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.folio_card h3,
.folio_card p {
  transition: 0.4s ease-in-out;
}

/* .folio_card:hover{
  background-color: #0a0a0a;
}

.folio_card:hover p{
  color: #aeaeae;
} */

.folio_card:hover h3{
  color: #E03800;
}

.folio_img_div {
  background: linear-gradient(to right, #E1E5E8, #D1D6D9);
  padding: 20px;
  border-radius: 30px;
}

.folio_device img {
  height: 280px;
  object-fit: contain;
}

/* tabs css */
.custom_tabs .nav-link {
  color: #3E3E3E;
  border: none;
  opacity: 0.8;
  font-weight: 500;
}

.custom_tabs .nav-link.active {
  border-bottom: 1px solid #323232;
  opacity: 1;
}

/* tabs css */

.read_more_link {
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
  width: fit-content;
}

.read_more_link:hover {
  color: #E03800 !important;
}

/* offcanvas css */
.custom_offcanvas {
  height: 95dvh !important;
  border-radius: 50px 50px 0px 0px;
  background-color: #EEEEEE;
}

.custom_offcanvas .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  height: 30px;
  width: 30px;
  background-color: #E03800;
  opacity: 1;
  background-image: none;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  transition: 0.4s ease-in-out;
  z-index: 9;
}

.custom_offcanvas .btn-close:hover {
  background-color: #151515;
}

.custom_offcanvas .offcanvas-body {
  padding: 60px;
}

.offcanvas_logo img {
  height: 100px;
  width: auto;
}

/* Prevent any body shifting when offcanvas is active with Smoother */
body.offcanvas-open {
  overflow: hidden !important;
}

/* offcanvas css */

/* arrow text button */
.arrow_link .button {
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  color: #323232;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: transparent !important;
}

.arrow_link .button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #323232;
  background-color: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.arrow_link .button:hover .button__icon-wrapper {
  color: #000;
}

.arrow_link .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.arrow_link .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.arrow_link .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* arrow text button */

.award_div img {
  height: 60px;
  width: auto;
}

.app_links img {
  height: 50px;
  width: auto;
  transition: 0.4s ease-in-out;
}

.app_links:hover img {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.bottom_after {
  position: relative;
}

.bottom_after::after {
  content: '';
  height: 20px;
  width: 100%;
  position: absolute;
  background-color: #0A0A0A;
  left: 0;
  bottom: -10px;
  z-index: -1;
}

.case_logo img {
  width: 180px;
  height: 85px;
  object-fit: contain;
}

.case_stat_div {
  padding: 80px 30px 30px 30px;
  border-radius: 40px;
}

.tech_img_div {
  width: 100px;
}

/* ===============================================  */
/* ===============================================  */
/* Inner pages CSS End*/

/* ==============================================  */
/* ==============================================  */

/* footer css */
.footer_top_sec {
  border-radius: 50px 50px 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer_top_sec h3 {
  font-size: 80px;
}

.footer_bottom {
  background-color: #0a0a0a;
  padding-top: 85px;
}

.footer_logo {
  height: 60px;
  width: auto;
}

.footer_main_link {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.footer_link {
  color: #ffffff;
  transition: 0.4s ease-in-out;
}

.footer_link:hover {
  color: #E03800;
  opacity: 1 !important;
}

.footer_row {
  padding-bottom: 80px;
}

.big_marquee h2 {
  line-height: 1;
  font-size: 160px;
  color: #ffffff33;
  white-space: nowrap;
  display: inline-block;
  font-weight: 500;
}

.marquee-content {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}

/* whatsapp link */
.whap_link {
  position: fixed;
  left: 25px;
  bottom: 80px;
  cursor: pointer;
  z-index: 999;
  transition: transform .7s ease-in-out;
}

.whap_link:hover {
  transform: scale(1.1);
}

.whap_link img {
  width: 50px;
}

/* whatsapp link */

/* accessibility icon */
.uwy.userway_p5 .userway_buttons_wrapper {
    top: auto !important;
    right: auto !important;
    bottom: 25px !important;
    left: 21px !important;
}
/* accessibility icon */

.gradient-container {
  width: 500px;
  height: 500px;
  right: 0px;
  bottom: 0px;
}

.orange-blob {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%,
      #E03800 0%,
      #ba2f00 50%,
      rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: rotateGradientFooter 8s linear infinite;
}


@keyframes rotateGradientFooter {
  from {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  to {
    transform: rotate(360deg) scale(1);
  }
}

/* footer css */

/* =========================================== */
/* =========================================== */
/* =========================================== */

/* Custom Cursor */
/* Cursor wrapper (prevents cropping) */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Red dot */
.cursor-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E03800;
  transform: translate(-50%, -50%);
  opacity: 1;
}


#scrollBtn {
  display: none;
  /* Managed by GSAP */
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 50px;
  height: 70px;
  font-size: 13px;
  text-align: center;
  line-height: 70px;
  z-index: 998;
  border: none;
  outline: none;
  background-color: #E03800;
  /* Keeping your primary brand color */
  color: #ffffff;
  cursor: pointer;
  border-radius: 15px;
  /* Your original boxy style */
  transition: background-color 0.3s ease;
}

#scrollBtn i {
  /* Flip the arrow to point UP */
  transform: rotate(180deg) translateY(8px);
  display: inline-block;
  transition: all 300ms ease;
}

#scrollBtn:hover {
  background-color: #000000;
}

#scrollBtn:hover i {
  /* Smooth hover bounce */
  transform: rotate(180deg) translateY(0px);
}

/* Desktop Sub Menu */
.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 130%;
  /* Offset for hover bridge */
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: rgb(3 46 71 / 80%);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  min-width: 200px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Invisible bridge to prevent menu closing when moving mouse down */
.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30%;
}

/* Hover State */
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translateX(-50%) translateY(10px);
}

/* Submenu List Items */
.submenu li a {
  display: block;
  padding: 12px 25px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  font-weight: 400;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.submenu li a:hover,
.submenu li a.active_link {
  color: #ffffff !important;
  /* Brand Orange */
  background: rgba(255, 255, 255, 0.05);
  padding-left: 32px !important;
}

/* Left Accent Line on Hover */
.submenu li a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 12px;
  background-color: #E03800;
  transition: transform 0.3s ease;
}

.submenu li a:hover::before,
.submenu li a.active_link::before {
  transform: translateY(-50%) scaleY(1);
}

/* Desktop Sub Menu */

/* SUCCESS CUSTOM MODAL STYLES */
.custom_modal .modal-dialog {
  max-width: 480px;
}

.custom_modal .modal-content {
  background: #151515 !important;
  border-radius: 30px !important;
  overflow: hidden;
  position: relative;
}

.custom_modal .modal-body {
  position: relative;
}

.custom_modal .modal_icon_div {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}

.custom_modal .modal-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(2, 150, 7, 0.2);
  animation: modalPulse 2s infinite;
}

.custom_modal .modal-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 74px;
  height: 74px;
  background: #029607; /* Brand Orange */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom_modal .success-checkmark,
.custom_modal .fail-cross {
  width: 44px;
  height: 44px;
  display: block;
}

.custom_modal .success-checkmark-circle,
.custom_modal .fail-cross-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #ffffff;
  fill: none;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.custom_modal .success-checkmark-check,
.custom_modal .fail-cross-path-1,
.custom_modal .fail-cross-path-2 {
  transform-origin: 50% 50%;
  stroke-width: 4;
  stroke: #ffffff;
  fill: none;
}

.custom_modal .success-checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.custom_modal h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-top: 15px;
}

.custom_modal p {
  font-size: 16px;
  color: #a6a6a6;
  line-height: 1.6;
}

.custom_modal .fail_icon .modal-icon {
  background: #dc3545 !important;
}

.custom_modal .fail_icon .modal-pulse {
  background: rgba(220, 53, 69, 0.2) !important;
}

.custom_modal .fail-cross-path-1 {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.custom_modal .fail-cross-path-2 {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Custom modal close button on hover styling */
.custom_modal .btn-close-white {
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.custom_modal .btn-close-white:hover {
  opacity: 1;
  transform: rotate(90deg);
}

@keyframes modalPulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}

/*========================================================================*/
/*========================================================================*/
/*==========================TEKGEEKS (pvt) LTD============================*/
/*=========DESIGN & FRONTEND DEVELOPMENT - G.D.RAVEESHA DEEMANTHI=========*/
/*========================================================================*/
/*========================================================================*/






    /**Custom Swal */
    .swal-custom-popup {
    border: 1px solid rgba(232, 93, 38, 0.25);
    border-radius: 10px !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(232, 93, 38, 0.1);
}

.swal-custom-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #151515 !important;
    letter-spacing: 0.01em;
}

.swal-custom-text,
.swal-custom-text p {
    color: #151515 !important;
}

.swal-custom-btn {
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    text-transform: uppercase;
    font-size: 13px !important;
    box-shadow: none !important;
}

.swal-custom-btn:hover {
    background: #cf4d1a !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232, 93, 38, 0.4) !important;
}

/* Divider line below icon */
.swal2-icon.swal-custom-icon {
    border-color: rgba(232, 93, 38, 0.3) !important;
}

* Fix intl-tel-input with Bootstrap form-floating */
.form-floating .iti {
    display: block;
    width: 100%;
}

.form-floating .iti .iti__selected-dial-code {
    font-size: 13px;
}

.form-floating .iti input.form-control {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    box-shadow: none !important;
    height: calc(3.5rem + calc(var(--bs-border-width) * 2)) !important;
    min-height: calc(3.5rem + calc(var(--bs-border-width) * 2)) !important;
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
}

/* Bottom border on the iti container to match other inputs */
.form-floating .iti {
    border-bottom: 1px solid #666666;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out;
}

.form-floating .iti:focus-within {
    border-color: var(--color-secondary);
}

/* Remove the default intl-tel-input border */
.form-floating .iti--separate-dial-code .iti__selected-country-primary {
    background-color: transparent !important;
}

/* Always float the label when intl-tel-input is initialized to prevent overlapping with country flag/dial code */
.form-floating:has(.iti) label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    opacity: 0.65;
    z-index: 4;
    pointer-events: none;
}

/* Make intl-tel-input follow Bootstrap form-control width */
.iti {
    width: 100%;
}

/* Make phone input same height as Bootstrap input */
.iti .form-control {
    width: 100%;
    min-height: calc(1.5em + .75rem + 2px);
}

/* Space for country code */
.iti--allow-dropdown .form-control,
.iti--separate-dial-code .form-control {
    padding-left: 90px !important;
}

.contact_form .iti__country-container {
    top: 15px !important;
}

.uwy.userway_p2 .userway_buttons_wrapper {
    top: 24px !important;
    right: -20px !important;
    left: auto !important;
}

/* SUCCESS CUSTOM MODAL STYLES */
.custom_modal .modal-dialog {
  max-width: 480px;
}
.custom_modal .modal-content {
  background: #151515 !important;
  border-radius: 30px !important;
  overflow: hidden;
  position: relative;
}
.custom_modal .modal-body {
  position: relative;
}
.custom_modal .modal_icon_div {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
.custom_modal .modal-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(2, 150, 7, 0.2);
  animation: modalPulse 2s infinite;
}
.custom_modal .modal-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 74px;
  height: 74px;
  background: #029607; /* Brand Orange */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom_modal .success-checkmark,
.custom_modal .fail-cross {
  width: 44px;
  height: 44px;
  display: block;
}
.custom_modal .success-checkmark-circle,
.custom_modal .fail-cross-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #ffffff;
  fill: none;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.custom_modal .success-checkmark-check,
.custom_modal .fail-cross-path-1,
.custom_modal .fail-cross-path-2 {
  transform-origin: 50% 50%;
  stroke-width: 4;
  stroke: #ffffff;
  fill: none;
}
.custom_modal .success-checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
.custom_modal h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-top: 15px;
}
.custom_modal p {
  font-size: 16px;
  color: #a6a6a6;
  line-height: 1.6;
}
.custom_modal .fail_icon .modal-icon {
  background: #dc3545 !important;
}
.custom_modal .fail_icon .modal-pulse {
  background: rgba(220, 53, 69, 0.2) !important;
}
.custom_modal .fail-cross-path-1 {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
.custom_modal .fail-cross-path-2 {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
/* Custom modal close button on hover styling */
.custom_modal .btn-close-white {
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.custom_modal .btn-close-white:hover {
  opacity: 1;
  transform: rotate(90deg);
}
@keyframes modalPulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}
@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}

