html, body {
    height: 100%;
    font-family: Roboto, sans-serif;
    overflow-x: hidden;
}

*, *::before, *::after {
    font-family: "Roboto", sans-serif;
}



body {
    margin: 0;
    color: #F4F4F4;
    background-color: #090A11;
    gap: 72px;
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.page-transition {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.page-transition.fade-in {
    opacity: 1;
}

.container {
    background-color: #090A11;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background-image: url('assets/zigzag-line.png');
    background-repeat: no-repeat;
    background-position: calc(50% - 370px);
    background-position-y: calc(50% - 550px);
    background-size: 57% auto;
}

.header-container {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(7, 27, 23, 0.85) 80%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(
    to right,
    rgba(72, 245, 150, 0.1) 0%,
    rgba(72, 245, 151, 0.05) 12.5%,
    rgba(72, 245, 151, 0.10) 12.5%,
    rgba(72, 245, 151, 0.10) 25%,
    rgba(72, 245, 151, 0.15) 25%,
    rgba(72, 245, 151, 0.15) 37.5%,
    rgba(72, 245, 151, 0.20) 37.5%,
    rgba(72, 245, 151, 0.20) 50%,
    rgba(72, 245, 151, 0.30) 50%,
    rgba(72, 245, 151, 0.30) 62.5%,
    rgba(72, 245, 151, 0.35) 62.5%,
    rgba(72, 245, 151, 0.35) 75%,
    rgba(72, 245, 151, 0.40) 75%,
    rgba(72, 245, 151, 0.40) 87.5%,
    rgba(72, 245, 151, 0.50) 87.5%,
    rgba(72, 245, 151, 0.50) 100%
  ),
     url('assets/Gradient.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12px;
    gap: 64px;
    height: 88vh;
    overflow: hidden;
}

.header-content {
    padding: 0 20px;
    position: relative;
}

.header-content h1 {
    font-size: clamp(160px, 18vw, 300px);
    font-weight: 600;
    letter-spacing: -2%;
    line-height: 95%;
    margin: 0;
}

.header-content-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    width: 79%;

}

.header-content-text .p-container {
    width: 60%;
}

.header-content-text .p-container p {
    font-size: 32px;
    font-weight: 400;
}

.header-content-text .mouse-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid green;
    border-radius: 50%;
    width: 72px;
    height: 72px;
}

.aa-container {
    position: relative; 
    top: clamp(40px, 7vw, 120px);
    left: clamp(140px, 21vw, 320px);
    width: clamp(80px, 9vw, 140px);
    height: auto;
}

.full-stack-container {
    position: relative; 
    top: clamp(160px, 18vw, 360px);
    left: clamp(16px, 3vw, 80px);
    width: clamp(60px, 7vw, 100px);
    height: auto;
}

.agencies-container {
    position: relative; 
    top: clamp(180px, 21vw, 400px);
    left: clamp(420px, 44vw, 880px);
    width: clamp(90px, 9.5vw, 140px);
    height: auto;
}

@media (max-width: 1024px) {
    .header-content h1 { font-size: clamp(140px, 16vw, 260px); }
    .header-content-text .p-container { width: 60%; }
}

@media (max-width: 768px) {
    .flicker-text {
        animation: flickerDuringSlide 3s ease-in-out infinite alternate !important;
    }
    .header-container { height: 82vh; }
    .header-content h1 { font-size: clamp(96px, 18vw, 200px); }
    .header-content-text { flex-direction: column; align-items: flex-start; gap: 12px; }
    .header-content-text .p-container { width: 100%; }
    .agencies-container { display: none; }   
}

.navbar {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 93%;
    height: 50px;
    padding: 32px 39.61px 0 39.61px;

}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-button {
    background: none;
    border: none;
    color: #F4F4F4;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    cursor: pointer;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: #00FF88;
}

.navbar .contact-us-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 6px 24px;
    width: 174px;
    height: 56px;
    color: #090A11;
    background-color: #F4F4F4;
    border-radius: 100px;
    border: none;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.navbar .contact-us-button:hover {
    background-color: #E0E0E0;
}

.navbar a {
    text-decoration: none;
}

.navbar h2 {
    font-weight: 700;
}




.about-us-container {
    padding: 40px 70px;
    height: 500px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.about-us-text-container {
    width: 224px;
}

.about-us-text-title-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.green-dot {
    width: 12px;
    height: 12px;
    background: #48F597;
    border-radius: 50%;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 70%;
}
.about-us-content-text {
    font-size: 48px;
    font-weight: 400;
    margin: 0
}



.learn-more-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 6px 24px;
    background-color: #48F597;
    width: 11rem;
    height: 52px;
    border-radius: 100px;
    cursor: pointer;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    border: none;
    position: relative;

}

.our-services-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 70px 40px 70px;
    gap: 64px;

}

.our-services-title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.our-services-title-container-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.our-services-content-text {
    font-size: 48px;
    font-weight: 400;
    align-items: center;
}

.our-services-numbers-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.service-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0; 

}

.service-grid .card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 32px;
    box-sizing: border-box;
}

.service-grid .card:nth-child(odd) {
    border-right: 1px solid #383940;
}

.service-grid .card:nth-child(-n+2) {
    border-bottom: 1px solid #383940;
}

 .service-grid-text-wrapper {
    gap: 16px;
    width: 50%;
 }

.our-services-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.discover-more-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #48F597;
    width: 13em;
    height: 52px;
    gap: 12px;
    padding: 6px 6px 6px 24px;
    border-radius: 100px;
    color: #090A11;
    font-weight: 500;
    font-size: 16px;
    font-family: Roboto, sans-serif;
    cursor: pointer;
    border: none;
    position: relative;
}

.how-we-build-container {
    padding: 40px 70px 40px 70px;
    gap: 40px;
    display: flex;
    flex-direction: column;
    height: 500px;
}

.how-we-build-header-text-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.how-we-build-header-text {
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}

.how-we-build-content-container {
    display: flex;
    flex-direction: row;
}

.how-we-build-content-item {
    padding: 24px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    width: 33%;
}

.how-we-build-content-item p {
    margin: 0;
    line-height: 130%;
}

.how-we-build-content-item h1 {
    margin: 0;
}

.icon-wrapper {
    height: 72px;
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.kick-off-container {
    background-image: radial-gradient(#090A1100 0%, #48F5970D 5%),
    url('assets/kick-off-background.png');
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 64px;
    height: 60vh;
    overflow: hidden;
    align-items: center;
    justify-content: start;
    padding: 94px 433px 94px 433px;
    box-sizing: border-box;
    border-top: 1px solid #878C914D;
}

@keyframes panWithPause {
    0% {
      background-position: left center;
    }
    10% {
      background-position: left center; 
    }
    45% {
      background-position: right center;
    }
    55% {
      background-position: right center; 
    }
    90% {
      background-position: left center;
    }
    100% {
      background-position: left center; 
    }
  }

.kick-off-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.kick-off-content-container h1 {
    font-size: 80px;
    margin: 0;
    width: 80%;
}

.flicker-text {
    animation: none;
}

@keyframes flickerDuringSlide {
    0%, 10% { opacity: 1; filter: none; }
    45%, 55% { opacity: 1; filter: none; }
    90%, 100% { opacity: 1; filter: none; }

      26%, 27%, 28%, 29%, 30% { opacity: 0.6; filter: blur(2px); }
      26.5%, 27.5%, 28.5%, 29.5% { opacity: 1; filter: none; }

      71%, 72%, 73%, 74% { opacity: 0.6; filter: blur(2px); }
      71.5%, 72.5%, 73.5% { opacity: 1; filter: none; }
  }
  
  

.kick-off-content-container .get-in-touch-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #48F597;
    height: 52px;
    gap: 12px;
    padding: 6px 6px 6px 24px;
    border-radius: 100px;
    color: #090A11;
    font-weight: 500;
    font-size: 16px;
    font-family: Roboto, sans-serif;
    cursor: pointer;
    border: none;
    position: relative;
}

.consultation-icon {
    position: relative;
    bottom: clamp(80px, 12vw, 155px);
    left: clamp(200px, 32vw, 550px);
    width: clamp(120px, 14vw, 200px);
    height: auto;
}

.min-call-icon {
    position: relative;
    bottom: clamp(160px, 22vw, 285px);
    right: clamp(200px, 32vw, 470px);
    width: clamp(80px, 8vw, 120px);
    height: auto;
}

.footer-container {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 70px 40px 70px;
  background-image: url('assets/footer-background.png');
  background-size: cover;
  
}

.footer-title {
  display: flex;
  flex-direction: column;
  gap: .15em;
  font-size: clamp(48px, 10vw, 220px);
  line-height: 125%;
  letter-spacing: -3%;
  font-weight: 700;
  margin-top: 14%;
  margin-left: 1.5%;
}

.footer-side-label {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 5%;
  line-height: 140%;
  pointer-events: none;         
  height: 24%;
  font-weight: 600;
  color: #A6A8AB;
}

.footer-side-label .footer-side-label-brand {
  color: #48F597;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 48px;
    border-bottom: 1px solid #A6A8AB;
}

.footer-contact .footer-contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.footer-contact .footer-contact-info p {
    margin: 0;
}

.footer-contact .footer-contact-info h2 {
    margin: 0;
    font-weight: 600;
}

.social-media-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.social-media-container .social-media-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    border: 1px solid #F4F4F4;
    cursor: pointer;
}

.footer-copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}


.italic-text {
    font-style: italic;
}

.gray-text {
    color: #A6A8AB;
    font-weight: 400;
}

.green-text {
    color: #48F597;
}




.number-hover-svg {
    cursor: pointer;
    transition: all 0.3s ease;
}

.number-hover-image {
    opacity: 0;
    width: 480px;
    height: 320px;
    transition: opacity 1s ease, width 1s ease, height 1s ease;
}

.number-hover-svg:hover .number-hover-image {
    opacity: 1;
    width: 350px;  
    height: 384px;
}
.number-stroke-outline {
    transition: opacity 0.1s ease;
}

.number-bg-fill {
    transition: opacity 0.1s ease;
}

.number-hover-svg:hover .number-stroke-outline,
.number-hover-svg:hover .number-bg-fill {
    opacity: 1;
}



.number-2-svg:hover .number-2-hover-image {
    opacity: 1;
    width: 576px;
    height: 384px;
}




.number-3-svg:hover .number-3-hover-image {
    opacity: 1;
    width: 580px;
    height: 420px;
}


.number-4-svg:hover .number-4-hover-image {
    opacity: 1;
    width: 580px;
    height: 420px;
}

.contact-us-button .btn-arrow,
.learn-more-button .btn-arrow,
.get-in-touch-button .btn-arrow,
.discover-more-button .btn-arrow,
.send-message-button .btn-arrow {
  transition: transform .4s ease;
}
.btn-arrow path { fill: none; }
.contact-us-button .btn-arrow path,
.learn-more-button .btn-arrow path,
.get-in-touch-button .btn-arrow path,
.discover-more-button .btn-arrow path,
.send-message-button .btn-arrow path {
  transition: stroke .4s ease;
}
.contact-us-button .btn-arrow .bg,
.learn-more-button .btn-arrow .bg,
.get-in-touch-button .btn-arrow .bg,
.discover-more-button .btn-arrow .bg,
.send-message-button .btn-arrow .bg {
  transition: fill .4s ease;
}
.contact-us-button:hover .btn-arrow,
.learn-more-button:hover .btn-arrow,
.get-in-touch-button:hover .btn-arrow,
.discover-more-button:hover .btn-arrow,
.send-message-button:hover .btn-arrow {
  transform: rotate(+45deg);
}
.navbar .contact-us-button:hover .btn-arrow .bg { fill: #E0E0E0; }
.learn-more-button:hover .btn-arrow .bg { fill: #48F597; }
.discover-more-button:hover .btn-arrow .bg { fill: #48F597; }
.kick-off-content-container .get-in-touch-button:hover .btn-arrow .bg { fill: #48F597; }
.send-message-button:hover .btn-arrow .bg { fill: #48F597; }

.learn-more-button:hover .btn-arrow path,
.discover-more-button:hover .btn-arrow path,
.kick-off-content-container .get-in-touch-button:hover .btn-arrow path,
.send-message-button:hover .btn-arrow path {
  stroke: #090A11;
}

.navbar .contact-us-button:hover .btn-arrow path { stroke: #090A11; }




.nav-button.active {
    color: #48F597;
}




 .about-header-container {
    background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(7, 27, 23, 0.85) 80%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(to right,
      rgb(0, 0, 0) 0%,       
      rgb(0, 0, 0) 10%,      
      rgb(0, 0, 0) 12.5%,    
      rgb(72, 245, 151, 0.2) 25%,     
      rgb(72, 245, 151, 0.5) 37.5%,   
      rgb(72, 245, 151, 0.5) 50%,     
      rgb(72, 245, 151, 0.5) 62.5%,   
      rgb(72, 245, 151, 0.2) 75%,     
      rgb(0, 0, 0) 87.5%,    
      rgb(0, 0, 0) 90%,      
      rgb(0, 0, 0) 100%      
    ),
    url('assets/Gradient.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12px;
    height: 88vh;
    overflow: hidden;
}


.about-header-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.about-header-text-wrapper .about-header-content-text p {
    color: #A6A8AB;
    font-size: 20px;
    line-height: 130%;
    font-weight: 400;
}

.about-header-text-wrapper .about-header-title {
    font-size: clamp(36px, 8vw, 70px);
    font-weight: 600;
    text-align: center;
}

.about-what-we-do-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 40px 70px 40px 70px;
    gap: 40px;
}

.about-what-we-do-container .about-what-we-do-text-wrapper p {
    font-size: 20px;
    line-height: 140%;
}



.services-header-container {
    background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(7, 27, 23, 0.85) 80%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(to right,
      rgb(0, 0, 0) 0%,       
      rgb(0, 0, 0) 10%,      
      rgb(0, 0, 0) 12.5%,    
      rgb(72, 245, 151, 0.2) 25%,     
      rgb(72, 245, 151, 0.5) 37.5%,   
      rgb(72, 245, 151, 0.5) 50%,     
      rgb(72, 245, 151, 0.5) 62.5%,   
      rgb(72, 245, 151, 0.2) 75%,     
      rgb(0, 0, 0) 87.5%,    
      rgb(0, 0, 0) 90%,      
      rgb(0, 0, 0) 100%      
    ),
    url('assets/Gradient.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.services-header-container .services-header-title {
    font-size: clamp(10px, 3vw, 50px);
    margin: 0;
    width: 85%;
    font-weight: 400;
    line-height: 250%;
}

.services-our-services-container {
    padding: 40px 70px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.services-our-services-container .services-our-services-title-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.services-our-services-container .services-our-services-content-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.services-our-services-container .services-our-services-content-container .services-our-services-content-item {
    border-bottom: 2px solid #383940;
    padding: 32px 0px 32px 0px;
    cursor: pointer;
    position: relative;
}

.services-our-services-container .services-our-services-content-container .services-our-services-content-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #48F597;
    transition: width 0.3s ease;
}

.services-our-services-container .services-our-services-content-container .services-our-services-content-item.active::after {
    width: 0%;
    animation: progressBar 5s linear infinite;
}

.services-our-services-container.no-progress-bar .services-our-services-content-container .services-our-services-content-item.active::after {
    animation: none !important;
    width: 0% !important;
}


.services-our-services-container.no-progress-bar .services-mobile-progress {
    opacity: 0;
    transition: opacity 0.3s ease;
}


.services-our-services-container.no-progress-bar .services-mobile-progress-fill {
    animation: none !important;
    width: 0% !important;
}


.services-mobile-controls { display: none; }

@media (max-width: 1024px) {
    
    .services-our-services-container .services-our-services-content-container { display: none; }
    
    .services-our-services-content-container .services-our-services-content-item::after,
    .services-our-services-content-container .services-our-services-content-item.active::after { animation: none !important; width: 0 !important; }
    .services-mobile-controls { display: block; margin-top: 12px; }
    .services-mobile-header { display: flex; align-items: center; justify-content: space-between; }
    .services-mobile-count { font-size: clamp(22px, 5vw, 28px); font-weight: 600; }
    .services-mobile-arrows { display: flex; gap: 16px; }
    .services-mobile-arrows button { background: none; border: none; cursor: pointer; padding: 4px; }
    .services-mobile-progress { margin-top: 12px; height: 6px; background-color: #2A2B33; border-radius: 999px; position: relative; transition: opacity 0.3s ease; }
    .services-mobile-progress-fill { height: 100%; width: 0; background-color: #48F597; border-radius: 999px; }
}

@keyframes mobileProgressBar { from { width: 0%; } to { width: 100%; } }
.services-mobile-progress-fill.animate { animation: mobileProgressBar 5s linear forwards; }

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.services-our-services-container .services-our-services-content-container .services-our-services-content-item h2 {
    color: #878C91;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
}

.services-our-services-container .services-our-services-content-container .services-our-services-content-item.active h2 {
    color: #F4F4F4;
}

.services-our-services-container .services-our-services-list {
    width: 100%;
    gap: 48px;
    display: flex;
    flex-direction: column;
}

.services-our-services-container .services-our-services-list .services-our-services-list-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-our-services-container .services-our-services-list .services-our-services-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #383940;
    padding: 24px 32px 24px 32px;
    cursor: pointer;
}

.services-our-services-container .services-our-services-list .services-our-services-list-item p {
    font-size: 20px;
    color: #878C91;
}

.services-our-services-container .services-our-services-list .services-our-services-list-item h1 {
    font-size: 28px;
    font-weight: 400;
    line-height: 100%;
}

.services-our-services-container .services-our-services-list .services-our-services-list-item.expanded {
    border-bottom: none;
}

.services-our-services-container .services-our-services-list h1 {
    font-size: 56px;
    font-weight: 400;
    line-height: 100%;
}

.services-our-services-container .services-our-services-list p {
    font-size: 20px;
}

.expandable-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    border-bottom: 2px solid #383940;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 0;
}

.expandable-content p {
    color: #A6A8AB;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    margin: 0;
    transition: opacity 0.3s ease-in-out;
}

.services-our-services-list-item .arrow-icon {
    transition: transform 0.3s ease-in-out;
}

.services-our-services-list-item.expanded .arrow-icon {
    transform: rotate(-90deg); 
}

.services-our-services-list-item.expanded + .expandable-content {
    max-height: 200px;
    padding: 1rem;
    opacity: 1;
}
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    width: 70%;
}

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

.tab-content.fade-in {
    opacity: 1;
}


.contact-container {
    background-image: 
        linear-gradient(to bottom, rgba(9, 10, 17, 0.25) 0%, rgba(9, 10, 17, 1) 100%),
        url('assets/contact-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.contact-header-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 12px;
    gap: 224px;
    overflow: hidden;
}

.contact-form-container {
    background-color: #090A11;
    width: 50%;
    border: 1px solid #383940;
    border-radius: 16px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-sizing: border-box;
}

.contact-form-container input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #383940;
    color: #F4F4F4;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    padding: 16px 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form-container input::placeholder {
    color: #F4F4F4;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.contact-form-container input:focus {
    border-bottom-color: #48F597;
}

.send-message-button {
    background-color: #48F597;
    border: none;
    border-radius: 100px;
    color: #090A11;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    padding: 16px 32px 16px 40px;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
}



.phone-input-container {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #383940;
    padding: 16px 0;
    gap: 16px;
}

.country-code-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding-right: 16px;
    border-right: 1px solid #383940;
}

.country-code-dropdown .flag {
    font-size: 18px;
}

.country-code-dropdown .country-code {
    color: #F4F4F4;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.country-code-dropdown .dropdown-arrow {
    margin-left: 4px;
}

.phone-input-container input {
    flex: 1;
    background: transparent;
    border: none;
    color: #F4F4F4;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    outline: none;
    padding: 0;
}

.phone-input-container input::placeholder {
    color: #F4F4F4;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.contact-form-container .phone-input-container:focus-within {
    border-bottom-color: #48F597;
}

.country-code-dropdown {
    position: relative;
}

.country-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: #1A1B23;
    border: 1px solid #383940;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    margin-top: 8px;
}

.country-dropdown-menu.show {
    display: block;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    gap: 12px;
}

.country-option:hover {
    background-color: #2A2B33;
}

.country-option .flag {
    font-size: 16px;
    width: 20px;
}

.country-option .country-name {
    flex: 1;
    color: #F4F4F4;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.country-option .country-code {
    color: #A6A8AB;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.country-code-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #F4F4F4;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1A1B23 0%, #090A11 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-sidebar-content {
    padding: 32px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #383940;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #383940;
}

.mobile-nav-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 32px 0;
    text-decoration: none;
    color: #F4F4F4;
    font-size: 40px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    transition: color 0.3s ease;
    border-bottom: 1px solid #383940;
}

.mobile-nav-item:hover {
    color: #48F597;
}

.mobile-nav-item.active {
    color: #48F597;
}

.mobile-nav-text {
    line-height: 1.2;
}

.mobile-contact-section {
    margin-top: auto;
    padding-top: 32px;
}

.mobile-contact-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: #48F597;
    color: #090A11;
    text-decoration: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    transition: background-color 0.3s ease;
}

.mobile-contact-button:hover {
    background-color: #40E085;
}

.mobile-contact-arrow {
    transition: transform 0.3s ease;
}

.mobile-contact-button:hover .mobile-contact-arrow {
    transform: rotate(45deg);
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 1500px) and (min-width: 1025px) {
    .about-header-text-wrapper {
        padding: 40px;
    }
    
    .about-header-title {
        font-size: clamp(42px, 6vw, 60px);
    }
    
    .about-header-content-text p {
        font-size: 18px;
    }
    
    .about-us-container {
        padding: 40px 50px;
    }
    
    .about-us-content-text {
        font-size: 36px;
        line-height: 130%;
    }
    
    .about-what-we-do-container {
        padding: 40px 50px;
    }
    
    .about-what-we-do-text-wrapper p {
        font-size: 18px;
        line-height: 135%;
    }
    
    .how-we-build-container {
        padding: 40px 50px;
        height: auto;
    }
    
    .how-we-build-header-text {
        font-size: 36px;
    }
    
    .how-we-build-content-container {
        gap: 24px;
    }
    
    .how-we-build-content-item {
        padding: 20px;
    }
    
    .kick-off-container {
        padding: 70px 50px;
    }
    
    .kick-off-content-container h1 {
        text-align: center;
        font-size: 64px;
        width: 90%;
    }
    
    .kick-off-content-container .get-in-touch-button {
        width: 25%;
        gap: 20%;
        min-width: 200px;
    }
    
    .footer-container {
        padding: 40px 50px;
    }
    
    .footer-title {
        font-size: clamp(60px, 12vw, 180px);
        margin-top: 12%;
    }
    
    
    .services-header-container {
        padding: 0px 15px;
        height: auto;
        min-height: 70vh;
    }
    
    .services-header-title {
        text-align: center;
        margin: 0;
        width: 90%;
        line-height: 140%;
    }
    
    .services-our-services-container {
        padding: 40px 50px;
        gap: 32px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .services-our-services-container .services-our-services-content-container .services-our-services-content-item h2 {
        font-size: 24px;
        line-height: 110%;
    }
    
    .tab-content {
        width: 75%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .services-our-services-container .services-our-services-list h1 {
        font-size: 42px;
        line-height: 110%;
    }
    
    .services-our-services-container .services-our-services-list p {
        font-size: 18px;
        line-height: 135%;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item {
        padding: 20px 24px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item h1 {
        font-size: 24px;
        line-height: 110%;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item p {
        font-size: 18px;
    }
    
    .expandable-content {
        padding: 0.8rem;
    }
    
    .expandable-content p {
        font-size: 15px;
        line-height: 135%;
    }
}

@media (max-width: 1024px) {
    .about-us-container {
        padding: 40px 40px;
        flex-direction: column;
        gap: 32px;
        height: auto;
    }
    
    .about-us-content {
        width: 100%;
    }
    
    .about-us-content-text {
        font-size: 36px;
    }
    
    .our-services-container {
        padding: 40px 40px;
    }

    .our-services-title-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .our-services-title-container > div[style] { width: 100% !important; }
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-grid .card {
        border-right: none;
        border-bottom: 1px solid #383940;
        gap: 16px;
    }
    .service-grid .card:nth-child(odd) { border-right: none; }
    .service-grid .card:last-child {
        border-bottom: none;
    }
    .service-grid-text-wrapper { width: 100%; }
    .discover-more-button {
        min-width: 220px;
    }
    
    .how-we-build-container {
        padding: 40px 40px;
        height: auto;
    }
    
    .how-we-build-content-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .how-we-build-content-item {
        width: 100%;
    }
    
    .kick-off-container {
        padding: 60px 40px;
        height: auto;
    }
    
    .kick-off-content-container h1 {
        font-size: 60px;
        width: 100%;
        text-align: center;
    }
    
    .consultation-icon {
        display: none;
    }
    
    .min-call-icon {
        display: none;
    }
    
    .footer-container {
        padding: 40px 40px;
    }
    
    .about-what-we-do-container {
        padding: 40px 40px;
    }
    
    .services-header-container {
        padding: 0px 40px;
        height: auto;
    }
    
    .services-header-title {
        width: 100%;
        text-align: center;
        font-size: clamp(18px, 3.5vw, 36px)
    }
    
    .services-our-services-container {
        padding: 40px 40px;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .services-mobile-wrapper {
        width: 100%;
    }

    .services-title-wrapper {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .tab-content {
        width: 100%;
    }
    
    .services-our-services-container .services-our-services-list {
        gap: 32px;
    }
    
    .services-our-services-container .services-our-services-list h1 {
        font-size: 40px;
        line-height: 115%;
    }
    
    .services-our-services-container .services-our-services-list p {
        font-size: 18px;
        line-height: 130%;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item {
        padding: 18px 24px;
        flex-direction: row;
        gap: 16px;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item h1 {
        font-size: 22px;
        line-height: 115%;
        flex: 1;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item p {
        font-size: 16px;
        min-width: 40px;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item .arrow-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .expandable-content {
        padding: 0.9rem;
    }
    
    .expandable-content p {
        font-size: 16px;
        line-height: 125%;
    }
    
    .contact-header-container {
        height: auto;
        min-height: 60vh;
        padding-bottom: 40px;
    }
    
    .contact-form-container {
        width: 80%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .header-content-text .mouse-container {
        display: none
    }

    .header-content-text .p-container {
        width: 60%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .about-header-container {
        gap: 120px;
        height: auto;
        min-height: 60vh;
        padding-bottom: 40px;
    }
    
    .about-header-text-wrapper {
        padding: 20px;
        text-align: center;
    }
    

    
    .about-header-content-text p {
        font-size: 18px;
    }
    
    .about-us-container {
        padding: 32px 20px;
        gap: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .about-us-content-text {
        font-size: 24px;
        line-height: 140%;
    }
    
    .our-services-container {
        padding: 32px 20px;
    }

    .service-grid .card {
        flex-direction: column;
        align-items: flex-start;
    }
    .our-services-content-text { font-size: 28px; }
    .discover-more-button {
        min-width: 0;
    }
    
    .how-we-build-container {
        padding: 32px 20px;
        gap: 32px;
    }
    
    .how-we-build-header-text {
        font-size: 32px;
    }
    
    .how-we-build-content-item {
        padding: 20px 0;
    }
    
    .kick-off-container {
        padding: 40px 20px;
        animation: panWithPause 3s ease-in-out infinite alternate;
        background-size: 250% auto;
        height: 35vh;
    }

    .kick-off-content-container {
        gap: 100px;
    }
    
    .kick-off-content-container h1 {
        font-size: 40px;
        line-height: 120%;
    }
    
    .kick-off-content-container .get-in-touch-button {
        width: 90%;
        justify-content: space-between;
    }
    
    .footer-container {
        padding: 32px 20px;
    }
    
    .footer-title {
        font-size: clamp(36px, 8vw, 80px);
        margin-top: 8%;
        text-align: center;
    }
    
    .footer-side-label {
        display: none;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-contact-info {
        justify-content: center;
    }
    
    .social-media-container {
        justify-content: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .about-what-we-do-container {
        padding: 32px 20px;
    }
    
    .about-what-we-do-text-wrapper p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .services-header-container {
        padding: 40px 20px;
        gap: 80px;
    }
    
    .services-header-title {
        font-size: clamp(24px, 6vw, 40px);
        line-height: 130%;
        text-align: center;
    }

    .services-mobile-wrapper {
        width: 100%;
    }
    
    .services-our-services-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 32px 20px;
    }
    
    .services-our-services-content-container {
        margin-bottom: 32px;
    }
    
    .services-our-services-container .services-our-services-content-container .services-our-services-content-item h2 {
        font-size: 20px;
    }
    
    .services-our-services-container .services-our-services-list h1 {
        font-size: 32px;
    }
    
    .services-our-services-container .services-our-services-list p {
        font-size: 16px;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item h1 {
        font-size: 20px;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item p {
        font-size: 14px;
    }
    
    
    .contact-header-container {
        padding: 40px 20px;
    }
    
    .contact-form-container {
        width: 100%;
        padding: 32px 20px;
        border-radius: 12px;
    }
    
    .contact-form-container input {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .send-message-button {
        font-size: 16px;
        padding: 16px 24px;
        height: 56px;
    }
    
    .phone-input-container {
        padding: 12px 0;
    }
    
    .country-dropdown-menu {
        width: 100%;
        max-width: 280px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .consultation-visual {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .flicker-text {
        animation: flickerDuringSlide 3s ease-in-out infinite alternate !important;
    }

    .header-container { height: 70vh; }

    .agencies-container { display: none; }
    .header-content-text .mouse-container {
        display: none
    }

    .header-content-text {
        align-items: center;
    }

    .header-content-text .p-container {
        width: 100%;
    }


    .navbar {
        padding: 20px 16px 0 16px;
    }
    
    .navbar img {
        width: 150px;
        height: auto;
    }
    
    .about-header-text-wrapper {
        padding: 16px;
    }
    
    .about-us-container {
        padding: 24px 16px;
    }

    .about-us-content {
        align-items: center;
    }
    
    .about-us-content-text {
        font-size: 20px;
    }
    
    .our-services-container {
        padding: 24px 16px;
    }
    
    .how-we-build-container {
        padding: 24px 16px;
    }
    
    .how-we-build-header-text {
        font-size: 28px;
    }
    
    .kick-off-container {
        padding: 32px 16px;
    animation: panWithPause 3s ease-in-out infinite alternate;

    }
    
    .kick-off-content-container h1 {
        font-size: 32px;
    }
    
    .footer-container {
        padding: 24px 16px;
    }
    
    .about-what-we-do-container {
        padding: 24px 16px;
    }
    
    .services-header-container {
        padding: 32px 16px;
        gap: 60px;
    }
    
    .services-header-title {
        font-size: clamp(20px, 5vw, 32px);
    }
    
    .services-our-services-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 16px;
        gap: 24px;
    }
    
    .services-our-services-container .services-our-services-title-container h1 {
        font-size: clamp(24px, 7vw, 32px);
        margin: 0;
    }
    .services-our-services-container .services-our-services-content-container {
        gap: 8px;
    }
    .services-our-services-container .services-our-services-content-container .services-our-services-content-item h2 {
        font-size: 18px;
        line-height: 120%;
    }
    .services-our-services-container .services-our-services-list > div:first-child h1.green-text {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 120%;
        margin: 0 0 12px 0;
    }
    .services-our-services-container .services-our-services-list > div:first-child p.gray-text {
        font-size: 18px;
        line-height: 145%;
    }
    .services-our-services-container .services-our-services-list .services-our-services-list-item {
        padding: 20px 0;
        border-bottom: 1px solid #383940;
    }
    .services-our-services-container .services-our-services-list .services-our-services-list-item p {
        display: none;
    }
    .services-our-services-container .services-our-services-list .services-our-services-list-item h1 {
        font-size: clamp(18px, 5.5vw, 24px);
        line-height: 130%;
        font-weight: 400;
    }
    .services-our-services-container .services-our-services-list .services-our-services-list-item .arrow-icon {
        width: 32px;
        height: 32px;
    }
    
    .services-our-services-container .services-our-services-content-container .services-our-services-content-item h2 {
        font-size: 18px;
    }

    .services-mobile-wrapper {
        width: 100%;
    }
    
    .services-our-services-container .services-our-services-list h1 {
        font-size: 28px;
    }
    
    .services-our-services-container .services-our-services-list p {
        font-size: 14px;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item h1 {
        font-size: 18px;
    }
    
    .services-our-services-container .services-our-services-list .services-our-services-list-item p {
        font-size: 12px;
    }
    
    .contact-header-container {
        padding: 32px 16px;
    }


    .kick-off-content-container .get-in-touch-button {
        width: 60%;
        justify-content: space-between;
    }
    
    .contact-form-container {
        padding: 24px 16px;
        border-radius: 8px;
    }
    
    .contact-form-container input {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .send-message-button {
        font-size: 14px;
        padding: 14px 20px;
        height: 52px;
    }
    
    .phone-input-container {
        padding: 10px 0;
    }
    
    .country-dropdown-menu {
        width: calc(100vw - 40px);
    }
}

