body{
overflow-x: hidden;
background: #000;
}



html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #F05123;
  border-radius: 10px;
}

a{
    text-decoration: none;
     font-family: "JetBrains Mono", monospace;
}

ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}


h1,h2,h3,h4,h5,h6{
 font-family: "Space Grotesk", sans-serif; 
}



.container{
    max-width: 1440px;
}

.main-title-h1{
    font-size: 75px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 20px;
}



.main-title-h2{
   font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

@keyframes fadeInUpBlur {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.animate-heading{
   opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition: all 0.8s ease-out;
  animation: fireGlow 2s ease-in-out infinite;
}

.animate-heading.animate{
  animation: fadeInUpBlur 0.8s ease-out forwards, fireGlow 2s ease-in-out infinite;
}


.main-title-h3{
 font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
}


.main-title-h4{
 font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.main-title-h5{
   font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
}

.short-title{
  font-family: "JetBrains Mono", monospace;
font-size: 20px;
  line-height: 1.2;
    font-weight: 600;
    color: #F05123;
    display: block;
    margin-bottom: 20px; 
    position: relative;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.short-title.typing::after {
  content: '|';
  animation: blink 1s infinite;
  margin-left: 2px;
}

.tiny-title{
font-family: "Space Grotesk", sans-serif;
font-size: 18px;
line-height: 1.2;
font-weight: 600;
padding: 0 30px;
}

.text-orange{
    color: #F05123;
}
.text-p{
font-family: "Inter", sans-serif;
font-style: normal;
  font-weight: 400;
   font-size: 20px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.p-100{
    padding: 100px 0;
}

.p-50{
    padding: 50px 0;
}

.title-white{
    color: #fff;
}
.title-black{
    color: #000;
}

.primary-btn{
  background: #F05123;
  color: #fff;
  height: 48px;
  font-size: 18px;
  line-height: 43px;
  border-radius: 100px;
  display: inline-block;
  border: 2px solid #F05123;
  padding: 0 20px;
  transition: ease-out 0.5s;
   box-shadow: inset 0 0 0 0 #f47a14;
}


.primary-btn:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #f47a14;
}

.primary-btn:active {
  transform: scale(0.9);
}

/* header css start */


header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
background-color: transparent;
  transition: all 0.3s ease;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
   z-index: 100;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideSticky 0.3s ease forwards;
}

.sticky-header .navbar-brand svg path  {
 fill: #F05123;
}

header .navbar-brand svg{
  height: 35px;
  width: auto;
} 

.sticky-header .get-quote-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

@keyframes slideSticky {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


header .navbar .collapse .navbar-nav .nav-item a{
font-weight: 500;
font-size: 16px;
color: #F05123;
transition: 0.3s ease-in-out;
padding-right: 1.5rem;
padding-left: 1.5rem;
position: relative;
/* font-family: "JetBrains Mono", monospace; */
font-family: "Space Grotesk", sans-serif;
}



header .navbar .collapse .navbar-nav .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F05123;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

/* Show underline on hover */
header .navbar .collapse .navbar-nav .nav-item a:hover::after {
  transform: scaleX(1);
}

header .navbar .collapse .navbar-nav .nav-item a:hover{
    color: #F05123;
}


.custom-dropdown {
  position: relative;
}

.custom-dropdown .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 8px;
  min-width: 180px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.custom-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown .dropdown-list li {
  list-style: none;
}

.custom-dropdown .dropdown-list li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.custom-dropdown .dropdown-list li a:hover {

  color: #fff;
}

header .header-btn{
  background: #F05123;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
  border-radius: 6px;
  margin-left: 15px;
  transition: ease-out 0.5s;
   box-shadow: inset 0 0 0 0 #f47a14;
}

header .header-btn:hover {
  color: white;
  box-shadow: inset 0 -100px 0 0 #f47a14;
}

header .header-btn:active {
  transform: scale(0.9);
}

/* header css end */


/* banner hero start */
.hero-section{
   position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
}

.hero-section:after {
    position: absolute;
    content: "";
    height: 70px;
    width: 370px;
    background: #000;
    bottom: 0;
    right: 0;
}

.hero-section p{
  margin-bottom: 40px;
}

 .video-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: right;
    }

      .content-left {
      position: relative;
      z-index: 2;
    }

/* banner hero end */


/* About us */

.about-us .stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color: #fff;
}

.about-us .stat-box {
  flex: 1 1 200px;
  text-align: center;
  margin: 0 20px;
}

.about-us .counter {
  font-size: 60px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: bold;
  color: #fff;
   opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-us .counter.visible {
  opacity: 1;
  transform: translateY(0);
}

.stats-section .stat-box:nth-child(2),
.stats-section .stat-box:last-child {
  margin-top: 100px;
}

/* About us end */


/* Augmented */

.augmented .augment-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: 100%;
  padding: 35px 30px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transform: scale(1);
  transition: 
    border 0.3s ease-in-out,
    background 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    backdrop-filter 0.3s ease-in-out,
    -webkit-backdrop-filter 0.3s ease-in-out;
}

.augmented .augment-box:hover {
  border: 1px solid #F05123;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 25px rgba(240, 81, 35, 0.2);
  transform: scale(1.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.augmented .augment-box .icon{
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 69, 0, 0.1);
  margin-bottom: 10px;
}

.augmented .augment-box p{
  margin-bottom: 0;
  color: #9CA3AF;
}

/* Got ai */
.got-ai{
   background-image: url("../images/got-ai-back.png");
   background-position: center;
   background-repeat: no-repeat;
   background-attachment: fixed;
}

/* Services Start */

.services .card-box {
  position: relative;
  height: 100%;
  border-radius: 20px;
  padding: 50px 30px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 2px solid transparent;
  transition: border 0.4s ease, box-shadow 0.4s ease;
}

/* Hover: Border + Glow */
.services .card-box:hover {
  border: 2px solid #F05123;
  box-shadow: 0 0 10px rgba(244, 122, 20, 0.4), 0 0 30px rgba(244, 122, 20, 0.4);
  border-radius: 20px;
}

/* Blur + Zoom layer */
.services .card-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(8px);
  transform: scale(1);
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
  z-index: 0;
  opacity: 1;
    border-radius: 20px;
}

/* Hover: Remove blur + scale in */
.services .card-box:hover::before {
  filter: blur(0);
  transform: scale(1.05);
  opacity: 1;
}

/* Ensure content is above blur layer */
.services .card-box > * {
  position: relative;
  z-index: 1;
}


.services .card-box {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-out;
}

.services .card-box.animate {
  opacity: 1;
  transform: translateY(0);
}


/* .services .card-box .content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.services .card-box:hover .content {
  opacity: 1;
  transform: translateY(0);
} */

.services .card-box.card-1{
  background-image: url("../images/service-1.webp");
  
}

.services .card-box.card-2{
  background-image: url("../images/service-2.webp");
}


.services .card-box.card-3{
  background-image: url("../images/service-3.webp");
}

.services .card-box.card-4{
  background-image: url("../images/service-4.webp");
}

.services .card-box.card-5{
  background-image: url("../images/service-5.webp");
}

.services .card-box.card-6{
  background-image: url("../images/service-6.webp");
}

.services .card-box .content .icon{
  background: #F05123;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.services .card-box .content p{
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin-bottom: 40px;
  color: #fff;
}


.services .card-box .content .services-btn{
    height: 60px;
    line-height: 55px;
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 20px;
    padding: 0 25px;
    border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 🔥 Hover Effects */
.services .card-box .services-btn:hover {
  background: #F05123;
  color: #fff; /* optional: better contrast on yellow */
}

.services .card-box .services-btn:hover svg {
  transform: rotate(45deg);
}

.services .card-box .services-btn:hover svg path {
  stroke: #fff;
}


.services .card-box .content .services-btn svg{
  margin-left: 10px;
  transition: transform 0.4s ease;
}


.services .services-card-slider{
  height: 100%;
}

.services .services-card-slider .swiper-slide.swiper-slide-active .card-box{
  filter: none;
  opacity: 1;
  transform: none;
  border: 2px solid #F05123;
  box-shadow: 0 0 10px rgba(244, 122, 20, 0.4), 0 0 30px rgba(244, 122, 20, 0.4);
} 

.services .services-card-slider .swiper-slide.swiper-slide-active .card-box::before{
  filter: none;
  opacity: 1;
  transform: none;
} 


/* Services Start End */


/* Traditional Css */

.traditional-development .comparison-container-1 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.traditional-development #comparison {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.traditional-development figure {
  position: relative;
  background-image: url("../images/comp-img-1-new.webp"); /* Base image */
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1195 / 672;
  font-size: 0;
  margin: 0;
  z-index: -1;
}

#divisor {
  /* background-image: url("../images/comp-img-2.webp");  */
  /* background-image: url("../images/split-video.mp4");  */
  /* background-size: cover;
  background-repeat: no-repeat; */
  position: absolute;
  width: 50%;
  height: 100%;
  bottom: 0;
  box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.3);
  transition: background-image 0.4s ease-in-out;
}


#divisor::before,
#divisor::after {
  content: '';
  position: absolute;
  right: -2px;
  width: 4px;
  height: calc(50% - 25px);
  background: #f05123;
  z-index: 3;
}

#divisor::before {
  top: 0;
  box-shadow: 0 -3px 8px 1px rgba(0, 0, 0, 0.3);
}

#divisor::after {
  bottom: 0;
  box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
}

#handle {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

#handle::before,
#handle::after {
  content: '';
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

#handle::before {
  border-right: 6px solid #f05123;
  left: 50%;
  margin-left: -17px;
}

#handle::after {
  border-left: 6px solid #f05123;
  right: 50%;
  margin-right: -17px;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: transparent;
  width: calc(100% + 50px);
  z-index: 2;
  border: none;
  outline: none;
}

input[type=range]:focus,
input[type=range]:active {
  border: none;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: transparent;
  border: 4px solid #f05123;
  box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.3);
}

input[type=range]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 100%;
  background-color: transparent;
  position: relative;
  outline: none;
}

.background-video {
  width: 100%;  /* Ensure video covers full area */
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



/* Our Portfolio */
.our-portfolio .portfolio-box{
  background: #111112;
  border-radius: 20px;
  padding: 30px 25px;
}

.our-portfolio .portfolio-box .main-content{
  display: flex;
  column-gap: 30px;
  margin-bottom: 20px;
}

.our-portfolio .stats-box{
  margin-bottom: 30px;
}

.our-portfolio .stats-box .num{
font-size: 26px;
display: block;
color: #fff;
font-family: "Space Grotesk", sans-serif;
}

.our-portfolio .stats-box .text{
  font-size: 26px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.our-portfolio .stats-box .divider {
  width: 40px;
    height: 1px;
    background-color: #fff;
    margin: 10px 0px;
}

.our-portfolio .portfolio-box .slider-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our-portfolio .portfolio-box .slider-bottom svg{
  transition: 0.3s ease-in-out;
}

.our-portfolio .portfolio-box .slider-bottom svg:hover{
  transform: rotate(45deg);
} 

button.custom-prev, button.custom-next{
    background: transparent;
    border: 0;
}

.our-portfolio  .portfolio-nav{
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
}


/* Testimonials */
.testimonials .test-box{
background: linear-gradient(142.13deg, rgba(254, 248, 255, 0.21) 1.8%, rgba(254, 248, 255, 0) 99.75%);
backdrop-filter: blur(75.695px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 30px;
padding: 40px 30px;
text-align: center;
}

.testimonials .test-box p{
  height: 182px;
}

.testimonials .test-box .icon{
  margin-bottom: 20px;
}

.testimonials .test-box .name{
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 22px;
  display: block;
}

.testimonials .test-box .detail{
  font-family: "Space Grotesk", sans-serif;
  color: #B6BCCC;
  font-size: 22px;
}
.testimonials  .portfolio-nav{
  display: flex;
  justify-content: end;
  margin-bottom: 20px;
}


/* Testimonials End */


/* Experience dev */
.experience-dev{
   background-image: url("../images/experince-dev.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.experience-dev .dev-slider {
  height: 320px; /* or any appropriate height */
}

.experience-dev .dev-box{
background: linear-gradient(180deg, #1A1A1A 0%, #000000 50%, #1A1A1A 100%);
border: 1px solid #1A1A1A;
box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
border-radius: 6px;
padding: 20px 10px;
margin-bottom: 20px;
}

.experience-dev .dev-box .main-flex{
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.experience-dev .dev-box p{
  margin-bottom: 0;
  font-size: 18px;
}

/* Experience dev End */



/* Ambition Start */
.ambition{
  background-image: url("../images/ambition-dev.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
/* Ambition End */


/* Awards Start */
.awards{
   background-image: url("../images/awards-back.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.awards .main-awards{
  display: flex;
  flex-wrap: wrap;
  row-gap: 70px;
  justify-content: center;
  text-align: center;
}
.awards .main-awards .awards-item {
    flex: 0 0 33.33%;
}
.awards .main-awards .awards-item p{
  font-size: 18px;
  margin-bottom: 0;
  color: #9CA3AF;
}
/* Awards End */


/* Packages Start */
.packages .package-box{
background: #191919;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
height: 100%;
padding: 45px 0;
transition: border 0.3s ease-in-out, background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.packages .package-box:hover{
border: 1px solid #F05123;
  transform: translateY(-5px); /* Optional: adds a lift effect */
  background: #1f1f1f; /* Optional: slightly brighter background on hover */
}

.packages .package-box h3{
  text-align: center;
  height: 67px;
  padding: 0 10px;
}

.packages .package-box .package-num{
  background: #2C2C2C;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 20px;
}

.packages .package-box .scroll-list{
  height: 210px;
  overflow-y: scroll;
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #F05123 #000; /* thumb color, track color */
}


/* For Chrome, Edge, Safari */
.packages .package-box .scroll-list::-webkit-scrollbar {
  width: 8px;
}

.packages .package-box .scroll-list::-webkit-scrollbar-track {
  background: #F05123;
  border-radius: 4px;
}

.packages .package-box .scroll-list::-webkit-scrollbar-thumb {
  background: #F05123;
  border-radius: 4px;
}

.packages .package-box ul{
  margin-bottom: 20px;
  padding: 0 30px;
}

.packages .package-box ul li{
  font-family: "Inter", sans-serif;
  color: #D1D5DB;
  font-size: 16px;
  line-height: 30px;
}

.packages .package-box ul li svg{
  margin-right: 7px;
}

.packages .package-box .avial-now-btn{
   font-family: "JetBrains Mono", monospace;
   font-size: 18px;
  background: #000;
border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F05123;
  border-radius: 6px;
  padding: 0 20ox;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  width: 85%;
  margin: 0 auto;
}

.packages .package-box .avial-now-btn:hover{
  background: #F05123;
  color: #fff;
  border: 1px solid #F05123;
}

/* Packages End */


/* Form Sec Start */
.form-sec .form{
  max-width: 750px;
  padding: 50px 30px;
  background: #000;
  border-radius: 15px;
  margin-left: auto;
  border: 1px solid #F05123;
}

.form-sec .form p{
  margin-bottom: 0;
}

.form-sec .form .form-group.from_item{
  margin-bottom: 20px;
} 

.form-sec .form .form-group.from_item input {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    border-bottom: 2px solid #fff !important;
    color: #fff;
    height: 60px;
    line-height: 60px;
    padding: 0;
    width: 100%;
    background: transparent;
    border: none;
    /* margin-bottom: 20px; */
}

.form-sec .form .form-group.from_item input::placeholder , .form-sec .form .form-group.from_item textarea::placeholder {
   font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #fff;
}

.form-sec .form .form-group.from_item textarea {
   border-bottom: 2px solid #fff !important;
    color: #fff;
    background: transparent;
    border: none;
    height: 60px;
    line-height: 50px;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.form-control:focus{
  outline: none;
  box-shadow: none;
}

.form-sec .form .btn_submit {
    background: #F05123;
    border: 2px solid #F05123;
    border-radius: 50px;
    color: #fff;
    display: block;
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    line-height: normal;
    margin: 30px auto 30px;
    text-align: center;
    text-transform: capitalize;
    width: 100%;
    transition: 0.3s ease-in-out;
}

.form-sec .form .btn_submit:hover {
  color: #fff;
  background: transparent;
}


/* Contact Page Start */

/* .contact-section{
  padding: 100px 0 50px 0;
} */

.contact-section.form-sec .form{
  border: none;
}

.global-offices .global-box{
background: linear-gradient(260.8deg, #171717 -2.68%, #030303 19.35%, #030303 87.86%, #171717 105.87%);
border-radius: 30px;
padding: 60px 40px;
}
.global-offices .country-details .contact{
    margin-top: 50px;
}
.global-offices .country-details .para{
  height: 52px;
}

.global-offices .country-details .contact a{
    transition: 0.3s ease-in-out;
}

.global-offices .country-details .contact a:hover{
    color: #F05123;
}


/* footer start */
.footer{
    background: #000;
    padding-bottom: 0  !important;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: space-between;
}

.footer-section .footer-item {
    margin-top: 30px;
}


.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
   font-size: 18px;
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
}

.footer a:hover,
.footer .highlight {
  color: #F05123;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 20px;
}

.footer-section ul li a {
  color: white;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 5px;
  transition: color 0.3s ease, transform 0.3s ease;
  font-family: "Space Grotesk", sans-serif;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #F05123;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-section ul li a:hover {
  color: #F05123;
}

.social-icons ul {
  display: flex;
  column-gap: 20px;
  margin-top: 10px;
}

.social-icons ul li a svg{
    transition: 0.3s ease-in-out;
    padding-bottom: 5px;
}

.social-icons ul li a:hover svg path {
fill: #F05123;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding: 20px 0 30px 0;
  font-size: 0.9rem;
  color: white;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
 color: white;
 position: relative;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  line-height: 1.2;
    transition: color 0.3s;
    padding-bottom: 5px;
    font-family: "Space Grotesk", sans-serif;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #F05123;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}


.footer-links a:hover {
  color: #F05123;
}

/* footer end */



header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 999;
background-color: transparent;
  transition: all 0.3s ease;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: slideSticky 0.3s ease forwards;
}

.sticky-header .get-quote-btn {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}

@keyframes slideSticky {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.back-height{
  height: 100vh;
  align-items: center;
}

.pricing{
    overflow: hidden;
    background: #000;
} 

.pricing .cta-box{
border: 1px solid #434343;
border-radius: 20px;
padding: 60px 40px; 
}


.pricing .pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(circle at center, #F05123 100%, #000 100%);
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  filter: blur(40px);
  animation: blinkGlow 3s ease-in-out infinite;
}


@keyframes blinkGlow {
  0%, 100% {
    opacity: 0.2;
    filter: blur(30px);
  }
  50% {
    opacity: 0.5;
    filter: blur(40px);
  }
}


.pricing-box {
  position: relative;
  border-radius: 24px;
  padding: 50px 30px;
  border: 1px solid #434343;
  z-index: 1;
  overflow: hidden;
}

.pricing .cta-box .cta-flex .content{
  flex: 0 0 70%;
} 

.pricing .cta-box .cta-flex .btn{
  flex: 0 0 30%;
  text-align: right;
} 

.pricing .cta-box .cta-flex{
  display: flex;
  align-items: center;
}

.pricing .cta-box .cta-flex .content p{
  margin-bottom: 0;
}