/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000003;
    color: #fff;
    font-family: "Geist", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -1%;
}

a {
    text-decoration: none;
    color: white;
}
a:hover {
    color: #b4b4b4;
}
ul {
    list-style-type: none;
}
.container{
    width:1320px;
    margin:0 auto;
}
img{
    width:100%;
    height:auto;
}
/* Navbar styles */
.nav-links{
    background: #141414;
    border-radius: 20px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo span {
    font-size: 28px;
    font-weight: bold;
}
.logo img{
    width:130px;
}
.nav-links ul {
    display: flex;
    gap: 30px;
}

.nav-links li {
    padding: 10px 0px;
    border-radius: 30px;
}

.nav-links a {
    font-size: 18px;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: #fff;
    color: #000003;
}

/* Contact button styles */
.contact-button a {
    padding: 10px 30px;
    background-color: #141414;
    border-radius: 30px;
    font-size: 18px;
    transition: background-color 0.3s ease;
    font-size: 20px;
}

.contact-button a:hover {
    background-color: #fff;
    color: #000003;
}


/* Footer Styling */
.footer {
    padding: 40px 40px;
    background:#0B0B0D;
}

.footer-content {

}
.footer-cta{
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 2em 0 5em;
    align-items: center;
}
.footer-cta-left{
    width: 65%;
}
.footer-cta  .footer-cta-left span.big-text{
    font-weight: 600;
    font-size: 126px;
    line-height: 140px;
    letter-spacing: -2%;

}
.footer-cta .footer-cta-left a{
    font-size: 18px;
    line-height: 28px;
    background: #fff;
    color: #222;
    border-radius: 30px;
    width: 170px;
    padding: 5px 5px 5px 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 12px;
    margin-top:30px;
    position: relative;
}
.footer-cta .footer-cta-left a:before{
    content: '';
    position: absolute;
    right: 7px;
    top: 5px;
    width: 40px;
    height: 100%;
    background: #000000;
    border-radius: 30px;
    height: 40px;
    transition: width 0.2s ease;
}
.footer-cta .footer-cta-left a span{
    z-index: 9;
}
.footer-cta .footer-cta-left a:hover:before{
  width: 148px;
 transition: width 0.2s ease;
}
.footer-cta .footer-cta-left a:hover{
    color: #fff;
}
.footer-cta .footer-cta-left a i{
    width: 40px;
    height: 40px;
    background: #000000;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
        z-index: 9;
}
.footer-cta-right{
    text-align: right;
}
.footer-cta-right li{
    margin-bottom: 5px;
}
.footer-row {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 20px;
    width: 30%;
}
.footer-logo img{
    width:130px;
}
.footer-colummn{
    width:33.33%;
}
.footer-links {
    display: flex;
    gap: 40px;
    width: 70%;
}

.footer-links h4 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;

}

.footer-links ul {
    list-style-type: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
}

.footer-links a:hover {
    color: #ddd;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 40px;
    text-align: center;
}


.footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-socials a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #ddd;
}

/* Banner Styling */
.banner{
padding: 5em 0px;
}
.banner h1{
font-weight: 500;
font-size: 220px;
line-height: 90%;
letter-spacing: -2%;
}
.banner-cta{
    display: flex;
    justify-content: space-between;
    padding-top: 4em;
}
.banner-cta-left{
    display: flex;
    flex-direction: column;
}
.banner-cta-left span{
font-weight: 500;
font-size: 24px;
line-height: 130%;
}
.banner-cta-left a{
font-weight: 400;
font-style: Regular;
font-size: 20px;
line-height: 140%;

}
.banner-cta-right a{
    padding: 16px 30px;
    background-color: #141414;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-size: 20px;
}
.banner-cta-right a:hover{
    background-color: #fff;
    color:#111;
    transition: background-color 0.3s ease;
}
@keyframes caret {
  50% {
    border-color: transparent;
  }
}
.banner-video{
    padding:0 0 4em;
}
.video-container{
    position: relative;
}
.video-container:before{
    content:'';
position:absolute;
top:0px;
left:0px;
background:url(../images/video-bg.png);
    width: 100%;
    height: 100%;
    background-size: cover;

}
/*commitment-section*/
.commitment-section{
        background: #fff;
    padding: 5em 0;
}
.commitment-section .content {
  display: flex;
  justify-content: space-between;
}

.left {
  width:42%;
}

.right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 330px;
}
.right p{
color: #000003;
font-weight: 300;
font-size: 28px;
line-height: 38px;
letter-spacing: 0px;
vertical-align: middle;

}
.heading {
  margin-bottom: 20px;
  color:#000003;
font-weight: 300;
font-size: 32px;
line-height: 42px;
letter-spacing: 0px;

}

.subtext {
  color: #000003;
font-weight: 300;
font-size: 20px;
line-height: 30px;
letter-spacing: 0px;

}

.icon-text {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  gap: 12px;
}

.icon {
  font-size: 1.5rem;
  line-height: 1;
}

.right .cta-button {
    border: 1px solid #000;
    padding: 12px 32px;
    border-radius: 999px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -1%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
}

.right .cta-button:hover {
  background: #000;
  color: #fff;
}

.logos {
  margin-top: 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logos img {
  max-height: 32px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
}
/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 44px;
  cursor: pointer;
  color: white;
}

/*Service section*/
.services-section{
    background: #141414;
    overflow: hidden;
    padding: 4em 0;

}
.section-title {
font-weight: 500;
font-size: 24px;
line-height: 36px;
letter-spacing: 0px;
margin-bottom:40px;

}
.service-inner{
    width:85%;float:right;
}
.section-description {
  margin-bottom: 48px;
font-weight: 300;
font-size: 24px;
line-height: 36px;
letter-spacing: 0px;
}

.service-item {
    border-top: 1px solid #2D2D2D;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 35% 65%;
}
.service-item:last-child {
    border-bottom: 1px solid #2D2D2D;
}
.service-title {
  color: #FFFFFF;
  margin-bottom: 8px;
font-weight: 300;
font-size: 32px;
line-height: 42px;

}
.service-title i{
    font-size: 24px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: 10px;
}
.service-desc {
  color: #fff;
font-weight: 200;
font-size: 20px;
line-height: 34px;
text-align: justify;

}
.service-single{
    text-align: center;
}
.service-single h1{
    font-weight: 500;
    font-size: 80px;
    line-height: 100px;
}
.tech-stack{
    background:#0D0D0E;
    padding:4em 0;
}
.tech-stack h2
{
font-weight: 500;
font-size: 48px;
line-height: 80px;
text-align: center;
}
.industry-serve{
background:#fff;
    padding:4em 0;
    color:#000;
}
.industry-serve h3{
font-weight: 400;
font-size: 32px;
line-height: 42px;
margin-bottom: 10px;
}
.serve-col-1 p{
font-weight: 300;
font-size: 20px;
line-height: 30px;
}
.industry-serve-inner{
    display: flex;
    justify-content: space-between;
}
.serve-col-2 ul li{
    margin-bottom: 20px;
}
.serve-col-2 ul li a{
font-weight: 300;
font-size: 24px;
line-height: 100%;
 color:#000;
}
.serve-col-2 ul li a:hover{
 color:#222;
}
.serve-col-1{
    width:40%;
}
.serve-col-2{
    width: 40%;
    display: flex;
    justify-content: space-between;
}
.development-process{
   padding:4em 0; 
}
.development-process h2{
font-weight: 500;
font-size: 48px;
line-height: 120%;
   margin-bottom: 30px;
}
.development-process  p{
font-weight: 300;
font-size: 24px;
line-height: 120%;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top:60px;
}

.step {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: start;
  border-top: 1px solid #222;
  padding-top: 1.2rem;
}

.step-number {
font-weight: 500;
font-size: 40px;
line-height: 120%;

}
.step-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.step-content h3 {
font-weight: 300;
font-size: 32px;
line-height: 100%;
letter-spacing: 0%;
    width: 40%;
}

.step-content p {
font-weight: 200;
font-size: 20px;
line-height: 34px;
    width: 50%;
}
.what-we-do {
  padding: 4em 0;
  background-color: #0D0D0E;
}
.what-we-do h2 {
  font-size: 28px;
  margin-bottom: 30px;
  width: 40%;
font-weight: 500;
font-size: 48px;
line-height: 80px;
}
.service-box-inner{
    display: flex;
    justify-content: space-between;
}
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  width: 50%;
}
.service-box img{
width:140px;
}
.service-box {
  background-color: #1e1e1e;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.service-box:hover {
  background-color: #252525;
}

.service-box i {
  font-size: 80px;
  margin-bottom: 20px;
  color: #fff;
}

.service-box h3 {
font-weight: 400;
font-size: 32px;
line-height: 100%;
  margin-bottom: 20px;
}

.service-box p {
font-weight: 300;
font-size: 24px;
line-height: 140%;
}

.tech-tabs {
  padding: 0 20px;
  margin-top: 50px;
}

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.tab {
  background: none;
  border: none;
  color: gray;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  padding: 0px 0px;
  transition: all 0.3s;
font-weight: 500;
font-size: 32px;
line-height: 36px;
}

.tab.active {
  color: white;
  border-color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.grid-tab {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  gap: 0px;
}

.tech-item {
  border: 1px solid #222;
  border-radius: 5px;
  padding: 30px 10px;
  text-align: center;
  transition: 0.3s;
}


.tech-item img {
  max-width: 100px;
  margin-bottom: 15px;
}

.tech-item p {
font-weight: 400;
font-size: 32px;
line-height: 100%;

}
.grid-tab-bottom{
        display: flex;
    justify-content: center;
}
.grid-tab-bottom .tech-item{
    width: 25%;
}
/* Projects Section */
.projects {
    padding: 4em 0px;
}
.projects-header{

    margin-bottom: 40px;
}
.projects-header h2 {
font-weight: 500;
font-size: 80px;
line-height: 144px;
padding-left:100px;
}

.project-grid {
    display: flex;
    grid-gap: 20px;
}
.project-3{
    height:680px !important;
    object-fit: cover;
}
.project-item {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom:20px;
}

.project-item img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.projects-footer {
    margin-top: 40px;
}

.projects-footer p {
font-weight: 300;
font-size: 32px;
line-height: 42px;
margin-bottom:20px;
}

.see-works-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #141414;
    color: white;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;

}
.see-works-button i{
    margin-left:10px;
}
.see-works-button:hover {
    background-color: #fff;
    color:#141414;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    margin: 0 auto;
}
.project-footer-for-mobile{
    display:none;
}
.testimonial-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0px;
  background: #000;
  gap: 40px;
}

.testimonial-left {
  flex: 1;
}

.testimonial-left .small-title {
    font-weight: 300;
    font-size: 32px;
    line-height: 117%;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-left h2 {
font-weight: 400;
font-size: 40px;
line-height: 117%;
}

.testimonial-right {
  flex: 2;
  position: relative;
}

.testimonial-text {
font-weight: 400;
font-size: 24px;
line-height: 140%;
    clear: both;
}
.stars {
    font-size: 24px;
    color: #fff;
    margin: 30px 0;
    display: flex;
    gap: 10px;
}
.small-title i{
        background: #fff;
    color: #111;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-icon-top {
 width:180px;
 height:180px;
  background-image: url(../images/qotes.svg);
      float: right;
}
.quote-icon-bottom {
 width:180px;
 height:180px;
  background-image: url(../images/qotes.svg);
      float: left;
}
.project-about{
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}
.project-about h2{margin-top:30px !important;}
.about-right {
    width: 65%;
}
.about-right ul{
    display: flex;
    gap:60px;
}
.about-right ul {
font-weight: 400;
font-size: 20px;
line-height: 48px;
}
.about-right ul b{
font-weight: 600;
font-size: 24px;
line-height: 48px;    display: block;
}
.project-tech {
    display:flex;
    gap:20px;
    margin-top:30px;    flex-wrap: wrap;
}
.project-tech li{
font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    background: #252526;
    display: inline-block;
    width: max-content;
    padding: 10px 30px;
    border-radius: 40px;
    color: #fff;
}
/*Services*/
.collaborate-section {
    background: #fff;
    overflow: hidden;
    padding: 4em 0;
}
.collaborate-section p{
font-weight: 400;
font-size: 48px;
line-height: 69.12px;
color:#0A0B1E;
}

.collaborate-section p span{
color:#fff;
background:#0A0B1E;
}
.experience-section {
overflow: hidden;
    padding: 4em 0;
    background-color: #141414;
    background-image: url(../images/dot-background.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 45%;
}
.experience-section h2 {
    font-weight: 500;
    font-size: 80px;
    line-height: 120%;
}
.experience-inner {
        display: flex;
    gap: 100px;
}

.experience-left {
    width: 50%;
}
.experience-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.count-column span
{
font-weight: 500;
font-size: 67px;
line-height: 72px;}
.count-column h3
{
font-weight: 400;
font-size: 38px;
line-height: 48px;
}
.count-column {
    margin-bottom: 50px;
}
 .service-accordion {
    padding:4em 0;
    }

    .accordion-item {
      border-bottom: 1px solid #282828;
    }
.accordion-item:first-child{
      border-top: 1px solid #282828;
    }
    .accordion-header {
      cursor: pointer;
      padding: 20px;
      font-size: 1.5rem;
      transition: 0.3s;
font-weight: 300;
font-size: 48px;
line-height: 80px;

    }

    .accordion-header:hover {
      color: #fff;
    }

    .accordion-content {
     max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 20px;
    }
 .accordion-content.open {
      padding: 20px;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 30px;
          margin: 20px 0 10px;
    }

    .service-card {
      border-radius: 8px;
      padding: 20px 0;
      border-right: 1px solid #333;    padding-right: 30px;
    }
.service-card:last-child {
      border-right: 0px;
    }
    .service-card h4 {
font-weight: 400;
font-size: 20px;
line-height: 120%;
margin-bottom: 10px;
    }
.service-card img{
        width:40px;
    }
    .service-card p {
font-weight: 300;
font-size: 18px;
line-height: 120%;

    }
.service-banner h1{
font-weight: 500;
font-size: 126px;
line-height: 152px;

}
.service-banner span{
font-weight: 300;
font-size: 24px;
line-height: 36px;
}
.banner-btn
 {
    display: inline-flex;
    padding: 25px 40px;
    background-color: #141414;
    color: white;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 120%;
    position: relative;
    top: -26px;
    align-items: center;
    gap: 20px;

}
.banner-btn img{
width:40px;
}
.banner-btn:hover img {
    filter: brightness(0);
}
.banner-btn:hover {
    background-color: #fff;
    color: #141414;
}
.banner-image {
    margin: 40px 0;
}
.logo-section {
    background: #000003;
    padding:0em 0 2em;
}
.logo-section img{
    filter: brightness(0) invert(1);
}
.logo-section .logos {
    margin-top: 1em;
}

/*Careers*/
.jobs{
    padding-bottom:4em;
}
.job-container {
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 30px 2% ;
}

.job-card {
  background-color: #141414;
  padding: 1.8rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.job-card h2 {
font-weight: 500;
font-size: 40px;
line-height: 120%;

}
.job-card p {
font-weight: 400;
font-size: 18px;
line-height: 140%;
letter-spacing: -1%;

}
.know-more-btn {
  align-self: start;
  background-color: white;
  color: black;
  border: none;
  padding: 12px 60px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
font-weight: 400;
font-style: Regular;
font-size: 18px;
line-height: 140%;
letter-spacing: -1%;
margin-top:20px;
border:1px solid transparent;
}

.know-more-btn i {
  margin-left: 10px;
}

.know-more-btn:hover {
  background:#000;
  color:#fff;
  border:1px solid #fff;
}
.career-contact-section{
    background:#0B0B0D;
    padding:4em 0 2em;
}
.career-contact-content h2{
    margin-bottom:20px;
}
.career-contact{
    display: flex;
    justify-content: space-between;
        align-items: center;
}
.career-contact a{
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;

}
.careers-single h1, .single-page h1{
    font-weight: 500;
    font-size: 80px;
    line-height: 100px;
}
.careers-single .container{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.jobs-details{
    padding-bottom: 4em;
}
.jobs-details h2{
    font-weight: 300;
    font-size: 48px;
    line-height: 80px;
    margin-top: 1em;
    margin-bottom: 30px;
}
.jobs-details p, .jobs-details li, .single-page p{
font-weight: Light;
font-size: 24px;
line-height: 140%;

}
.jobs-details ul{
    padding-left: 30px;
}
.jobs-details li{
    list-style-type: disc;
}
/*Career Form*/
.career-contact-form {
    background:#0D0D0E;
    padding: 4em 0;
}
.career-form{
    display:flex;
}
.career-contact-content{
    width:50%;
    padding-right: 6em;
}
.form-contact{
    width:50%;
}
.career-contact-content h2{
font-weight: 400;
font-size: 32px;
line-height: 42px;

}
.form-contact label{
font-weight: 300;
font-size: 24px;
line-height: 30px;

}
.form-contact form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.form-contact form input {
    width: 100%;
    display: block;
    padding: 20px 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    border: 0;
    border-bottom: 1px solid #868686;
    font-size: 24px;
    color:#fff;
}
.disclaimer{
font-weight: 300;
font-size: 20px;
line-height: 140%;
}
.disclaimer a{

text-decoration: underline;
}
/*Privacy POlicy*/
.back-btn span i{
    margin-right:10px;
}
.policy-content-container {
    display: flex;
    margin-bottom: 4em;
    justify-content: space-between;
}
.policy-title{
    width: 30%;
}
.policy-content{
    width:60%;
}

.policy-content h2{
font-size: 32px;
line-height: 120%;
margin-top:0px;
font-weight: 300;
}
.policy-title span{
font-weight: 300;
font-size: 24px;
line-height: 120%;
}
.policy-content ul{
    margin-top:30px;
}
.policy-content p,.policy-content ul li{
font-weight: 300;
font-size: 24px;
line-height: 140%;

}
/*Blog*/
.filter-buttons {
      display: flex;
      gap: 12px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .filter-buttons button {
      padding: 8px 40px;
      border: none;
      border-radius: 999px;
      background: #252526;
      color: #9E9E9F;
      cursor: pointer;
      transition: background 0.3s;
font-weight: 400;
font-size: 24px;
line-height: 36px;

    }

    .filter-buttons button:hover {
      background: #333;
    }

    .filter-buttons .active, .filter-buttons .active:hover {
      background: #565656;
      color: #fff;
    }

    .card-grid {
      display: grid;
      grid-template-columns: 32% 32% 32%;
      gap: 2%;
    }

    .card-blog {
      background: #252526;
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .card-blog:hover {
      transform: translateY(-5px);
    }

    .card-blog img {
      width: 100%;
      object-fit: cover;
    }

    .card-content {
      padding: 25px;
    }

    .card-meta {
      color: #fff;
      margin-bottom: 30px;
font-weight: 300;
font-size: 20px;
line-height: 140%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .card-title {
      margin-bottom: 20px;
      color: #fff;
font-weight: normal;
font-size: 32px;
line-height: 100%;

    }

    .card-description {
font-weight: 300;
font-size: 24px;
line-height: 140%;
color: #fff;
    }
    .blog-grid{
        padding-bottom: 4em;
    }
    .blog-details{
        padding-bottom: 4em;
    }
    .blog-single{
        padding-bottom: 2em;
    }
    .blog-single h1{
        text-align: center;
    }
   .cat-name {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    display: block;
    width: max-content;
    margin: 0 auto 20px;
    padding: 10px 30px;
    border-radius: 40pc;
    color: #111;

    }
.blog-share {
    width: max-content;
    display: block;
    margin: 20px auto;
font-weight: 300;
font-size: 20px;
line-height: 140%;
text-align: center;

}
.blog-share i{
    margin-right:10px;
}
.blog-content p,.project-details p
 {
font-weight: 300;
font-size: 24px;
line-height: 140%;
    margin: 30px 0;
}
.blog-content h2,.project-details h2{
font-weight: 500;
font-size: 32px;
line-height: 120%;
    margin-top:60px;
}
.blog-meta{
    display: flex;
    justify-content: space-between;
    align-items: center; 
font-weight: 300;
font-size: 20px;
line-height: 140%;
}
.latest-blogs {
    padding: 4em 0;
    background: #0B0B0D;
}
.latestblog-header h2{
font-weight: 500;
font-size: 48px;
line-height: 80px;

}
.latestblog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.latestblog-header i {
    font-size: 24px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    margin-left: 10px;
}
/*contact*/
.contact-faq{
    padding:4em 0 2em;
}
    .faq-left h1 {
      font-size: 48px;
      font-weight: bold;
      line-height: 1;
    }

    .faq-left p {
      color: #ccc;
      margin-top: 20px;
      font-size: 16px;
      line-height: 1.6;
    }

  

    .faq-item {
      border-bottom: 1px solid #333;
      padding: 20px 0;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #fff;
font-weight: 300;
font-size: 24px;
line-height: 30px;

    }

    .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 10px;
    font-size: 15px;
    color: #F3F3F3;
font-weight: 200;
font-size: 24px;
line-height: 30px;

    }

    .faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on answer length */
    opacity: 1;
    margin-top:20px;
    }
    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-question::after {
      content: "-";
    }

    .faq-question::after {
      content: "+";
      font-size: 20px;
      transition: transform 0.3s;
    }
.faq-container{
    display: flex;
}
.faq-left
 {
    width: 50%;
    padding-right: 5em;
}
.faq-right {
    width: 50%;
}
.career-form h2,.contact-faq h2 {
font-weight: 500;
font-size: 80px;
line-height: 100px;
}
.career-form p,.contact-faq p{
font-weight: 300;
font-size: 24px;
line-height: 30px;

}
/*About*/
.vission-mission{
    padding: 2em 0;
    background-color: #0D0D0E;
}
.vission-mission h2{
font-weight: 300;
font-size: 48px;
line-height: 80px;
margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.vission-mission img{
    margin-right:20px;
}
.vission-mission p{
font-weight: 300;
font-size: 24px;
line-height: 140%;
}
.vision-mission-inner{
    margin:4em 0;
}
.vision-mission-inner img{
    width:50px;
}
.about-content{
    margin-top:60px;
}
.about-content h2{
font-weight: 500;
font-size: 48px;
line-height: 64px;
margin-bottom:60px;
}
.about-content p{
font-weight: 300;
font-size: 24px;
line-height: 140%;
}
.about-services{
    margin:50px 0;
}
.about-services li a{
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0px;
    background: #252526;
    padding: 10px 20px;
    border-radius: 40px;
    margin: 10px 15px 10px 0;
    display: inline-block;
}
.about-services li {
    display: inline-block;
}

.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 0px 0px;
  text-align: center;
}

.stat-box {
  flex: 1;
  padding: 0 20px;
  margin-top:30px;
  position: relative;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box h3 {
font-weight: 500;
font-size: 64px;
line-height: 72px;
margin-bottom:20px;
}
.stat-box p {
font-weight: 400;
font-size: 32px;
line-height: 48px;
}
.stat-box:after{
    content: '';
    background: linear-gradient(135deg, #2b2b2b, #ffffff);
    width: 1px;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}
.stat-box:last-child:after{
    display: none;
}
/*Work*/
.work-block{
    margin-bottom:60px;
}
.work-block img{
    margin-bottom:30px;
}
.work-block span
{
font-weight: 400;
font-size: 20px;
line-height: 120%;
}
.work-block p{
font-weight: 400;
font-size: 38px;
line-height: 48px;

}
.project-banner .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#banner-filter-box{
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    padding: 10px 50px 10px 30px;
    border-radius: 40px;
  appearance: none;       /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

 background: #fff url("../images/arrow-down.svg") no-repeat right 20px center; 
}

/* Responsive Styles */
@media (max-width: 1350px) {
.container {
    width: 100%;
}
.banner h1{
    font-size:165px;
}
section,.footer{
    padding-left:20px !important; 
    padding-right:20px !important;
}
.service-item {
    grid-template-columns: 42% 58%;
}
.footer-cta .footer-cta-left span.big-text {
    font-size: 90px;
    line-height: 110px;
}
.service-banner h1 {
    font-size: 100px;
    line-height: 120px;
}
.careers-single h1, .single-page h1,.service-single h1{
     font-size: 80px;
    line-height: 90px;
}
}
@media (max-width: 1023px) {
    .nav-links a {
    font-size: 16px;
    padding: 10px 15px;}
.contact-button a,.banner-cta-right a {
    padding: 10px 25px;
    font-size: 16px;
}
.nav-links ul {
    gap: 20px;
}
.banner h1{
    font-size:105px;
}
    .service-item {
        grid-template-columns: 100%;
    }
.service-inner {
    width: 100%;
    float: none;
}
.projects-header h2 {
    font-size: 60px;
    line-height: 90%;
    padding-left: 0;
}
    .footer-cta .footer-cta-left span.big-text {
        font-size: 60px;
        line-height: 70px;
    }
.project-3 {
    height: 400px !important;
    object-fit: cover;
}
.footer-links h4 ,.job-card h2{
    font-size: 25px;
    line-height: 150%;
}

.footer-links a {
    font-size: 18px;
}
.careers-single h1, .single-page h1,.service-single h1 {
    font-size: 60px;
    line-height: 70px;
}
.policy-content-container {
    margin-bottom: 2em;
    justify-content: space-between;
    flex-direction: column;
}
.policy-title,.policy-content {
    width: 100%;
}
.banner {
    padding: 3em 0px;
}
.service-banner h1 ,.experience-section h2{
    font-size: 60px;
    line-height: 70px;
}
.jobs-details h2,.accordion-header,.count-column h3{
        font-size: 32px;
    line-height: 42px;
}
.career-form{
        flex-direction: column;
}
.form-contact{
    margin-top:30px;
}
.career-contact-content,.form-contact{
    width: 100%;
    padding:0px;
}
.service-banner h1{
    display: flex;
    flex-direction: column;
}
.banner-btn {
        padding: 14px 35px;
        font-size: 22px;
        width: max-content;
        top: 10px;
}
.service-grid{
        grid-template-columns:50% 50%;
}
.experience-inner,.faq-container {
    flex-direction: column;
    gap: 0px;
}
.experience-left,.experience-right,.faq-left,.faq-right{
    width: 100%;
}
.count-column span {
    font-size: 50px;
    line-height: 62px;
}
.collaborate-section p {
    font-size: 38px;
    line-height: 58px;
}
.service-box-inner ,.industry-serve-inner{
    flex-direction: column;
}
.services,.what-we-do h2,.serve-col-1{
    width: 100%;
}
.serve-col-2{
    width: 400px;
    margin-top: 30px;
}
.filter-buttons button {
    font-size: 20px;
    line-height: 30px;
            padding: 8px 30px;
}
.card-grid {
    grid-template-columns: 48% 48%;
    gap: 30px 4% ;
}
.faq-right {
   margin-top:30px;
}
.career-form h2, .contact-faq h2 {
    font-size: 50px;
    line-height: 60px;
}
 .project-tech li {
        font-size: 20px;
        line-height: 30px;
        padding: 8px 30px;
    }
.project-about ,.testimonial-section{
    flex-direction: column;align-items: flex-start;
}
.about-right {
    width: 100%;
}
.about-content h2 ,.vission-mission h2{
    font-size: 32px;
    line-height: 44px;
}
.vision-mission-inner img {
    width: 39px;
}
.stat-box h3 {
    font-size: 50px;
    line-height: 60px;
}
.stat-box p {
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
}
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    height: 36px;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 10px;
  }
/* Initial state (hidden) */
.nav-links {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

/* When toggled (visible) */
.nav-links.show {
  max-height: 500px; /* Adjust based on content */
  opacity: 1;
  transform: translateY(0);
  z-index:99;
}
     .contact-button {
        margin-top: 0px;
        display: flex;
        align-items: center;
        grid-gap: 20px;
    }

  .navbar {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
                position: relative;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    padding:0 20px;        margin: 0;
}
    .nav-links a {
        width: 100%;
        display: inline-block;
        text-align: center;
    }
  .commitment-section .content {
    flex-direction: column;        gap: 30px;
}
.left ,.right{
    width: 100%;
}
.right .cta-button
 {
    width: 300px;
 }
 .commitment-section,.services-section,.projects,.banner {
    padding: 2em 0;
}
.logos {
    margin-top: 2em;}
    .footer-cta
 {
    padding: 0em 0 2em;
}
.footer-row {
        gap: 30px;
    flex-direction: column;
}
.footer-links {
    width: 100%;
}
.job-container {
    grid-template-columns: 100%;
    gap: 30px 0px;
}
    .career-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
.career-contact-content,.step-content h3,.step-content p{
width: 100%;
padding:0px;
}
.step-content {
    flex-direction: column;
}
.tech-item img {
    max-width: 70px;
}
.tech-item p{
    font-size: 24px;
}
.card-title{
        font-size: 25px;
}
.card-description {
    font-size: 20px;
}
.card-meta {
    font-size: 16px;
}
    .filter-buttons button {
        font-size: 18px;
        line-height: 25px;
        padding: 8px 20px;
    }
       .blog-grid,.blog-details{
        padding-bottom: 2em;
    }
#banner-filter-box {
    font-size: 18px;
    line-height: 26px;
    padding: 10px 43px 10px 30px;
    background: #fff url(../images/arrow-down.svg) no-repeat right 16px center;
    background-size: 19px;
}
.project-tech li,.cat-name,.about-services li a {
        font-size: 18px;
        line-height: 25px;
        padding: 8px 20px;
    }

}

@media only screen and (max-width: 639px) {
    body {
        font-size: 16px;
    }
    .banner h1{
        font-size:40px;        line-height: 50px;
    }
    .banner-cta-left span,.section-description,.policy-content p, .policy-content ul li ,.policy-title span,.service-banner span,.jobs-details p, .jobs-details li, .single-page p,.form-contact label,.form-contact form input,.service-box p,.development-process p,.serve-col-2 ul li a,.testimonial-text,.about-content p{
        font-size: 20px;
    }
    .banner-cta-left a,.subtext,.blog-content p, .project-details p ,.blog-meta,.vission-mission p{
        font-size: 16px;
                line-height: 20px;
    }
    .heading ,.right p,.service-title,.policy-content h2,.job-card h2,.career-contact-content h2,.career-contact a,.jobs-details h2,.count-column h3,.collaborate-section p,.accordion-header,.service-box h3,.step-content h3,.tab,.blog-content h2, .project-details h2,.latestblog-header h2,.testimonial-left .small-title,.vission-mission h2,.about-content h2{
        font-size: 24px;
        line-height: 32px;
    }
        .projects-header h2,.footer-cta .footer-cta-left span.big-text,.what-we-do h2,.development-process h2,.tech-stack h2 {
            font-size: 40px;
                    line-height: 50px;
        }
    .project-footer-for-dekstop{
        display:none;
    }
    .project-footer-for-mobile{
        display:block;
    }
    .project-grid {
        flex-direction: column;
    }
        .project-3 {
            height: auto !important;
            object-fit: cover;
        }
        .footer-cta {
            flex-direction: column;        gap: 30px;
        }
    .footer-cta-left{
        width: 100%;
    }
    .footer-cta-right {
        text-align: left;
        width: 100%;
    }
        .footer-links {
            gap:20px;
            flex-direction: column;
        }
    .footer-colummn {
        width: 100%;
    }
    .footer-bottom {
        margin-top: 10px;
        padding-top: 20px;
    }
    .footer {
        padding: 20px 20px;
    }
    .jobs-details {
        padding-bottom: 1em;
    }
    .career-contact-section{
            padding: 2em 0 1em;
    }
    .jobs {
        padding-bottom: 2em;
    }
    .career-contact-form,.experience-section,.collaborate-section,.service-accordion,.development-process,.industry-serve,.tech-stack,.what-we-do{
            padding: 2em 0;
    }
    .experience-section h2{
                font-size: 40px;
            line-height: 50px;
    }
        .count-column span {
            font-size: 30px;
            line-height: 42px;
        }
            .service-grid {
            grid-template-columns: 100%;
        }
        .service-card{
            padding-bottom:20px;
            padding-top:0px;
            border-right:0px;
                border-bottom: 1px solid #333;
        }
        
        .service-card:last-child{
            border-bottom: 0px;
        }
        .tabs{
            margin-bottom: 20px;
        }
        .grid-tab{
                grid-template-columns: 50% 50%;
        }
        .grid-tab-bottom .tech-item{
            width: 50%;
        }
        .serve-col-2{
    width: 100%;
        }
        .banner-video{
        padding:0 0 2em;
        }
            .card-grid {
            grid-template-columns: 100%;
            gap: 30px 0;
        }
    .contact-faq{
    padding:2em 0;
        }
        .career-form p, .contact-faq p,.faq-question,.faq-answer,.about-right ul b {
        font-size: 20px;
        line-height: 30px;
    }
    .career-contact-content h2,.career-form h2, .contact-faq h2,.testimonial-left h2{
            font-size: 34px;
            line-height: 40px;
    }
    .accordion-header,.accordion-content{
        padding-left:0px !important;
        padding-right:0px !important;
    }
    .project-banner .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }
    .work-block p {
        font-size: 30px;
        line-height: 40px;
    }
    .blog-content p, .project-details p {
        margin: 20px 0;
    }
    .project-about{
        margin-top:0px;
    }
    .about-right ul{
        gap:20px;
    }
    .quote-icon-top,.quote-icon-bottom{
        width:40px;
        height:40px;
        background-size:cover;
    }
    .stats-section {
        flex-direction: column;
    }
    .stat-box:after
    {
        background: linear-gradient(135deg, #2b2b2b, #ffffff);
        width: 100%;
        height: 1px;
        display: inline-block;
        position: absolute;
        top: inherit;
        right: 0;
        bottom: -15px;
    }
    .about-content h2{
        margin-bottom: 20px;
    }
    .vision-mission-inner,.about-services{
            margin: 2em 0;
    }
    .about-content {
        margin-top: 20px;
    }
    .service-accordion  .section-title{
        margin-bottom: 20px;
    }
}