@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.ttf")
    format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf")
    format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Germagont;
  src: url("../fonts/germagont-font-family/germagont-8o290.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Germagont;
  src: url("../fonts/germagont-font-family/germagontbold-na4bp.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Germagont;
  src: url("../fonts/germagont-font-family/germagontlight-blojx.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

.preload * {
  transition: none !important;
  animation: none !important;
}

:root {
  --primary-color: #2c64ab;
  --secondary-color: #1c4374;
  --accent-color: #2c64ab;
  --text-color: #333;
  --muted-text: #555;
  --heading-color: #050505;
  --background-gradient: linear-gradient(
    /* Gradient color */ 135deg,
    rgba(44, 100, 171, 0.03) 0%,
    rgba(44, 100, 171, 0.08) 100%
  );
  --light-bg: #f9f9f9;
}

body {
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.about-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-section h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.services-section h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
  max-width: 50%;
}

.technologies h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.technologies h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-section h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.blog-section h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.agile-section h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-align: left;
}

.agile-section h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 60px;
  color: var(--heading-color);
  font-weight: 700;
  text-align: left;
  max-width: 100%;
}

.potential h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c64ab;
}

@media (max-width: 992px) {
  .agile-section h2,
  .blog-section h2,
  .hero-content h1,
  .potential h2,
  .services-section h2,
  .technologies h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .agile-section h2,
  .blog-section h2,
  .hero-content h1,
  .potential h2,
  .services-section h2,
  .technologies h2 {
    font-size: 2rem;
  }

  .blog-section p,
  .services-intro {
    font-size: 0.95rem;
  }

  .agile-section h1,
  .blog-section h1,
  .services-section h1,
  .technologies h1 {
    font-size: 1.25rem;
  }

  .stat-box h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .agile-section h2,
  .blog-section h2,
  .hero-content h1,
  .potential h2,
  .services-section h2,
  .technologies h2 {
    font-size: 1.8rem;
  }

  .agile-section h1,
  .blog-section h1,
  .services-section h1,
  .technologies h1 {
    font-size: 1.125rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 500;
}

section {
  padding: 60px 5%;
  max-width: 1350px;
  margin: 40px auto;
}

section:first-of-type {
  margin-top: 0;
}

.logo img {
  width: 180px;
}

.site-header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1350px;
  padding: 0 5%;
  margin: 0 auto;
  gap: 40px;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.nav-menu {
  margin-left: auto;
  margin-right: 0;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.nav-menu ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2c64ab;
  transition: width 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #2c64ab;
}

.nav-menu ul li a:hover:after {
  width: 100%;
}

.nav-menu ul li.active a {
  color: #2c64ab;
}

.nav-menu ul li.active a:after {
  width: 100%;
  background-color: #2c64ab;
}

.nav-menu .has-dropdown {
  position: static;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  margin-top: 0;
  border-top: 1px solid #eee;
  transform: translateY(10px);
}

.nav-menu .has-dropdown:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  display: flex;
}

.dropdown-categories {
  flex: 1;
  background-color: #f8f9fa;
  border-right: 3px solid #000;
}

.dropdown-categories h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 12px 25px;
  transition: all 0.2s ease;
  position: relative;
  font-weight: 600;
  color: #333;
  border-radius: 6px;
  margin: 8px 0;
}

.dropdown-categories h3.active {
  background-color: #2c64ab;
  color: #fff;
}

.dropdown-categories h3:hover:not(.active) {
  background-color: #e9ecef;
}

.dropdown-technologies {
  flex: 3;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  border-right: 3px solid #000;
}

.tech-section {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-section.active {
  display: block;
  opacity: 1;
  margin-top: 20px;
}

.tech-section h3 {
  font-size: 1.1rem;
  color: #2c64ab;
  margin-bottom: 15px;
  font-weight: 600;
}

.tech-title {
  margin-top: 25px;
}

.solutions-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.solution-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.solution-btn.laravel {
  background-color: #ffecf1;
  color: #ff2e63;
}

.solution-btn.wordpress {
  background-color: #e6f0ff;
  color: #21759b;
}

.solution-btn.vue {
  background-color: #e7f8ed;
  color: #41b883;
}

.solution-btn.progressive {
  background-color: #f0e7ff;
  color: #7952b3;
}

.solution-btn.android {
  background-color: #fdd;
  color: #e94444;
}

.solution-btn.flutter {
  background-color: #fff3dd;
  color: #f9a826;
}

.solution-btn.mobile-design {
  background-color: #e0f7fa;
  color: #00bcd4;
}

.solution-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-category {
  margin-bottom: 10px;
}

.tech-category h4 {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 10px;
  font-weight: 500;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #495057;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.tech-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-item img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dropdown-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.services-badges {
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.services-badges:hover {
  transform: translateY(-5px);
}

.btn-career {
  padding: 10px 30px;
  font-size: 1rem;
  color: #fff;
  background-color: #2c64ab;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-career::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: #225082;
  bottom: -150%;
  left: -150%;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

.btn-career:hover::before {
  transform: scale(1);
}

@media (max-width: 992px) {
  .nav-menu ul {
    gap: 20px;
  }

  .mega-dropdown {
    display: none;
  }

  .dropdown-categories,
  .dropdown-technologies {
    border-right: none;
    padding-right: 0;
  }

  .dropdown-right,
  .dropdown-technologies {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 15px 0;
  }

  .header-container {
    padding: 0 5%;
  }

  .nav-menu {
    display: none;
  }

  .btn-career {
    margin-left: auto;
  }
}

@media (max-width: 576px) {
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 5%;
    gap: 15px;
  }

  .logo img {
    max-height: 40px;
  }
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1350px;
  margin: 40px auto;
  padding: 80px 5%;
  box-sizing: border-box;
  gap: 50px;
  scroll-margin-top: 90px;
}

.hero-content {
  flex: 1;
  min-width: 50%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
}

.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
  text-align: left;
}

.hero-content h1 .highlight {
  color: #2c64ab;
  display: inline-block;
}

.hero-intro {
  text-align: left;
  max-width: 90%;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-text);
  margin-bottom: 30px;
}

.hero-badges {
  display: flex;
  margin-bottom: 2.5rem;
  gap: 20px;
  flex-wrap: wrap;
}

.landing-badge {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.landing-badge:hover {
  transform: translateY(-5px);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-btn {
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 220px;
}

.hero-btn:hover::before {
  transform: scale(1);
}

.hero-btn:hover::after {
  width: 300%;
  height: 300%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero-btn:hover {
  color: #fff;
  text-decoration: none;
}

.hero-form {
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
  position: relative;
}

.hero-form::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #2c64ab;
  border-radius: 0;
  z-index: -1;
  box-sizing: border-box;
}

.hero-form h3 {
  font-size: 24px;
  color: #1a237e;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 700;
}

.hero-form .form-group {
  margin-bottom: 15px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 15px;
  color: #555;
}

.iti {
  width: 100%;
}

.iti-container {
  width: 100%;
}

.phone-input input {
  padding-left: 90px !important;
}

.textarea-container {
  position: relative;
}

.textarea-container i {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #2c64ab;
  z-index: 1;
}

.textarea-container textarea {
  padding-left: 40px !important;
  resize: none;
  min-height: 100px;
}

.textarea-container textarea::placeholder {
  line-height: 18px;
}

.select-container select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.select-container::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #2c64ab;
  pointer-events: none;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  padding-left: 40px !important;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #2c64ab;
  font-size: 16px;
  z-index: 1;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background-color: #2c64ab;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #225082;
}

.form-disclaimer {
  margin-top: 15px;
  font-size: 12px;
  color: #777;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .hero-section {
    gap: 40px;
    padding: 60px 5%;
  }

  .hero-content {
    max-width: 55%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-btn {
    min-width: 200px;
    padding: 12px 25px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    gap: 30px;
    padding: 50px 5%;
  }

  .hero-content,
  .hero-form {
    max-width: 100%;
    min-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-content,
  .hero-form {
    min-width: 100%;
  }

  .hero-content h1 {
    text-align: left;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-intro {
    max-width: 100%;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 30px 5%;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-badges {
    flex-direction: row;
    align-items: flex-start;
  }

  .landing-badge img {
    max-height: 50px;
  }
}

@media (max-width: 375px) {
  .hero-section {
    padding: 20px 3%;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-form::after {
    display: none;
  }
}

.about-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  gap: 0px;
  max-width: 1350px;
  margin: 0 auto;
  margin-top: 60px;
  box-sizing: border-box;
  scroll-margin-top: 90px;
}

.about-content {
  flex: 1;
  max-width: 55%;
}

.about-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #050505;
  font-weight: 700;
}

.about-content h2 span {
  color: #2c64ab;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
  font-weight: 500;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 50%;
  min-width: 288px;
}

.stat-box {
  padding: 40px 25px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid rgba(44, 100, 171, 0.2);
  background: linear-gradient(
    135deg,
    rgba(44, 100, 171, 0.03) 0,
    rgba(44, 100, 171, 0.08) 100%
  );
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: #2c64ab;
  background: linear-gradient(
    135deg,
    rgba(44, 100, 171, 0.05) 0,
    rgba(44, 100, 171, 0.12) 100%
  );
  box-shadow: 0 10px 25px rgba(44, 100, 171, 0.1);
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c64ab;
  margin-bottom: 15px;
}

.stat-box p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  .about-section {
    gap: 60px;
  }
}

@media screen and (max-width: 992px) {
  .about-section {
    flex-direction: column;
    padding: 60px 5%;
  }

  .about-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .stats-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-box {
    padding: 30px 20px;
  }

  .stat-box h3 {
    font-size: 2.5rem;
  }
}

.image-one {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  margin: 40px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  font-size: 0;
}

.image-one img {
  width: 33.334%;
  height: auto;
  object-fit: cover;
  margin: 0;
  padding: 0;
  display: block;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .image-one {
    flex-wrap: nowrap;
  }

  .image-one img {
    width: 33.334%;
  }
}

@media (max-width: 600px) {
  .image-one {
    flex-direction: column;
  }

  .image-one img {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .about-section {
    flex-direction: column;
    padding: 60px 5%;
  }

  .about-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .stats-container {
    width: 100%;
  }

  .about-content h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 40px 5%;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

.services-section {
  padding: 80px 5%;
  max-width: 1350px;
  margin: 40px auto;
  box-sizing: border-box;
  scroll-margin-top: 90px;
}

.services-section h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.services-section h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
  max-width: 50%;
}

.services-section p {
  max-width: 50%;
}

.services-heading {
  display: flex;
  margin-bottom: 60px;
}

.services-section h2 .highlight {
  color: #2c64ab;
}

.services-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-text);
  margin-bottom: 30px;
  font-weight: 500;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: linear-gradient(to right, #f8f9fc, #e7f0fc);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  color: #2c64ab;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card h4 {
  color: #2c64ab;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

.service-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-card li {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.service-card li:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE CODE FOR OUR SERVICES SECTION */

@media (max-width: 992px) {
  .services-section {
    padding: 60px 5%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .services-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-section h2 {
    font-size: 32px;
  }

  .service-card {
    padding: 29px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 40px 5%;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .services-heading {
    flex-direction: column;
  }

  .services-section h2 {
    font-size: 28px;
    max-width: 100%;
  }

  .services-section p {
    max-width: 100%;
  }

  .services-intro {
    font-size: 18px;
  }
}

/* CASE STUDIES SECTION */

.case-section {
  padding: 60px 5%;
  max-width: 1350px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
  box-sizing: border-box;
  scroll-margin-top: 90px;
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  width: 100%;
  position: relative;
}

.section-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-align: left;
}

.heading-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.section-header h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #050505;
  font-weight: 700;
  margin-bottom: 0;
  text-align: left;
}

.section-header h2 span {
  color: #2c64ab;
}

.navigation-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.section-header h2 span {
  color: #2c64ab;
}

.nav-button {
  width: 40px;
  height: 40px;
  background-color: #2c64ab;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .heading-nav-container {
    flex-wrap: nowrap;
    align-items: center;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .navigation-buttons {
    margin-bottom: 15px;
  }
}

.slider-container {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  padding: 40px;
}

.slide-content {
  width: 50%;
  padding-right: 40px;
}

.swapwise-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.company-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.slide-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c64ab;
}

.slide-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.slide-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2c64ab;
  display: flex;
  align-items: center;
}

.deliverable {
  margin-bottom: 30px;
}

.deliverable ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.deliverable li,
.deliverable p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 30px;
}

.metric {
  padding: 0 15px;
  position: relative;
}

.metric:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #ccc;
}

.metric h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #2c64ab;
}

.metric p {
  font-size: 0.95rem;
  color: #555;
}

.btn-primary {
  display: inline-block;
  padding: 12px 35px;
  background-color: #2c64ab;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 150px;
  text-align: center;
  margin: 0;
}

.btn-primary::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: #225082;
  bottom: -150%;
  left: -150%;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: scale(1);
}

.btn-primary:hover {
  color: #fff;
  text-decoration: none;
}

.slide-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
}

.slide-image img {
  width: auto;
  border-radius: 0;
  box-shadow: none;
  background: 0 0;
}

.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #2c64ab;
}

@media screen and (max-width: 992px) {
  .case-section {
    padding: 60px 5%;
  }

  .slide {
    flex-direction: column;
    padding: 30px 20px;
  }

  .slide-content,
  .slide-image {
    width: 100%;
  }

  .slide-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(3)::before {
    display: none;
  }

  .metric:nth-child(3) {
    grid-column: span 2;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .section-header {
    flex-wrap: wrap;
  }

  .navigation-buttons {
    margin-top: 20px;
  }
}

@media screen and (max-width: 576px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation-buttons {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .btn-primary {
    width: 150px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .metric:not(:first-child)::before {
    display: none;
  }

  .metric {
    padding: 15px 0;
    border-top: 1px solid #ccc;
  }

  .metric:first-child {
    border-top: none;
  }

  .company-logo {
    height: 45px;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }
}

.potential {
  background-color: #eaf2fd;
  max-width: 100%;
  margin-left: calc(-50vw + 50%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-top: 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
  scroll-margin-top: 90px;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1350px;
  padding: 0 5%;
  margin: 0 auto;
}

.text {
  max-width: 50%;
  padding-right: 40px;
}

.potential h2 {
  line-height: 1.3;
  margin-bottom: 30px;
  color: #252a41;
  font-weight: 700;
  text-align: left;
}

.potential .main-title {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 5px;
}

.potential .highlight {
  color: #2c64ab;
}

.potential .with-expert {
  display: block;
  color: #2c64ab;
  font-size: 2.8rem;
}

.potential p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-text);
  margin-bottom: 30px;
  text-align: left;
}

.potential .btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background-color: #2c64ab;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  transition: background-color 0.3s ease;
  width: auto;
  text-align: center;
  margin-left: 0;
}

.image {
  max-width: 48%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 992px) {
  .content {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .image,
  .text {
    max-width: 100%;
  }

  .text {
    margin-top: 30px;
    text-align: left;
  }

  .image {
    text-align: center;
  }

  .potential h2 {
    text-align: left;
  }

  .potential .main-title {
    font-size: 2.4rem;
  }

  .potential .with-expert {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 576px) {
  .potential .main-title {
    font-size: 2rem;
  }

  .potential .with-expert {
    font-size: 2rem;
  }
}

/* Testimonial section */
.testimonial-section {
  padding: 80px 0;
  margin: 40px auto;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
}

.testimonials-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 1350px;
  padding: 0 5%;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-transform: capitalize;
  letter-spacing: 1px;
}

.testimonials-header h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
  max-width: 100%;
}

.testimonials-header h2 .highlight {
  color: var(--primary-color);
}

.testimonial-carousel {
  width: 100%;
  position: relative;
  margin-top: 20px;
  overflow: hidden;
}

.testimonial-row {
  overflow: hidden;
  margin: 30px 0;
  position: relative;
  width: 100%;
}

.scrolling-wrapper {
  display: flex;
  position: relative;
  left: 0;
  transition: left 0.5s ease;
}

.group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

/* Card styling */
.card {
  flex: 0 0 auto;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Width will be set via JavaScript */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Author Image Container */
.author-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #f5f5f5;
  border: 2px solid #f5f5f5;
}

/* The image itself */
.author-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonial-text {
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.author-company {
  font-size: 14px;
  color: #777;
}

/* Hover pause effect */
.testimonial-row:hover .scrolling-wrapper {
  animation-play-state: paused;
}

/* Media Queries for TESTIMONIAL SECTION */
@media (max-width: 992px) {
  .testimonials-header h2 {
    font-size: 2.2rem;
  }
  .card {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 50px 0;
  }
  .testimonials-header h2 {
    font-size: 1.8rem;
  }
  .card {
    font-size: 15px;
    height: 250px;
  }
  .author-title {
    font-size: 15px;
  }
  .author-flag {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .testimonial-section {
    padding: 40px 0;
  }
  .testimonials-header h1 {
    font-size: 1.2rem;
  }
  .testimonials-header h2 {
    font-size: 1.6rem;
  }
  .card {
    font-size: 14px;
    padding: 20px;
    height: 250px;
  }
  .author-title {
    font-size: 14px;
  }
  .author-company {
    font-size: 12px;
  }
}

/* AGILE PROCESS SECTION */
.agile-section {
  padding: 80px 5%;
  max-width: 1350px;
  margin: 40px auto;
  box-sizing: border-box;
  background: #fff;
  text-align: center;
  scroll-margin-top: 90px;
}

.agile-section h2 .highlight {
  color: #2c64ab;
}

.agile-section img {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0;
}

@media (max-width: 992px) {
  .agile-section {
    padding: 60px 5%;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .agile-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .agile-section h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .agile-section {
    padding: 40px 5%;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .agile-section h2 {
    font-size: 28px;
  }
}

.hero {
  background: linear-gradient(to right, #eaf2fd, #d9e8fc);
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 12px;
  scroll-margin-top: 90px;
}

.hero .container {
  text-align: center;
  max-width: 800px;
  z-index: 2;
}

.hero h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  line-height: 1.3;
}

.hero .highlight {
  color: #2c64ab;
  display: inline;
  margin-left: 8px;
}

.hero .btn-primary {
  background-color: #2c64ab;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  border: none;
  transition: background-color 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: #225082;
}

.hero::after,
.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px dashed rgba(0, 102, 204, 0.1);
  border-radius: 50%;
}

.hero::before {
  top: -150px;
  left: -100px;
}

.hero::after {
  bottom: -150px;
  right: -100px;
}

.hero .circle-top-right {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  top: -100px;
  right: 20%;
}

.hero .circle-bottom-left {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px dashed rgba(0, 102, 204, 0.1);
  border-radius: 50%;
  bottom: -50px;
  left: 30%;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }

  .hero .highlight {
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 24px;
  }
}

.technologies {
  padding: 80px 5%;
  max-width: 1350px;
  margin: 40px auto;
  box-sizing: border-box;
  background: #fff;
  scroll-margin-top: 90px;
}

.technologies h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-align: left;
}

.technologies h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 40px;
  color: var(--heading-color);
  font-weight: 700;
  text-align: left;
}

.technologies h2 span3 {
  color: var(--primary-color);
}

.type {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.category {
  display: flex;
  flex-direction: column;
}

.category h3 {
  font-size: 1.25rem;
  color: #212529;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.tool-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid #eaeaea;
  transition: all 0.2s ease;
}

.item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

@media (max-width: 992px) {
  .technologies {
    padding: 60px 5%;
  }

  .technologies h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .type {
    grid-template-columns: 1fr;
  }

  .technologies h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .technologies {
    padding: 40px 5%;
  }

  .technologies h2 {
    font-size: 24px;
  }

  .item {
    font-size: 0.9rem;
    padding: 6px 14px;
  }
}

.blog-section {
  padding: 80px 5%;
  max-width: 1350px;
  margin: 40px auto;
  box-sizing: border-box;
  scroll-margin-top: 90px;
}

.blog-header-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blog-header-left {
  max-width: 54%;
}

.blog-header-right {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.blog-section h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c64ab;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.blog-section h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
}

.blog-section h2 .highlight {
  color: #2c64ab;
}

.blog-header-right p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-text);
  margin-bottom: 20px;
  font-weight: 500;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  min-height: 480px;
}

.blog-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.blog-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 20px 16px;
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: flex-start;
}

.blog-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card .btn-primary {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 0;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 1200px) {
  .blog-container {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .blog-section {
    padding: 60px 5%;
  }

  .blog-section h2 {
    font-size: 2.5rem;
  }

  .blog-header-content {
    flex-direction: column;
  }

  .blog-header-left,
  .blog-header-right {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-section h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding: 40px 5%;
  }

  .blog-section h2 {
    font-size: 1.8rem;
  }
}

.talk-section {
  padding: 0;
  margin: 40px 0;
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: 0;
  margin-bottom: 0;
}

.talk-wrapper {
  background: linear-gradient(to right, #eaf2fd, #d9e8fc);
  height: 300px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.talk-wrapper::before {
  content: none;
}

.talk-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../imgs/lets_talk_section_chat.png"),
    url("../imgs/lets_talk_section_chat.png"),
    url("../imgs/lets_talk_section_chat.png"),
    url("../imgs/lets_talk_section_chat.png"),
    url("../imgs/lets_talk_section_chat.png");
  background-repeat: no-repeat;
  background-position: 10% 20%, 30% 70%, 60% 25%, 85% 65%, 95% 15%;
  background-size: 80px auto, 90px auto, 70px auto, 85px auto, 75px auto;
  opacity: 0.1;
  z-index: 1;
}

.talk-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  margin: auto;
  max-width: 1350px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.talk-container h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--heading-color);
  font-weight: 700;
  text-align: left;
  max-width: 75%;
}

.talk-container .highlight {
  color: #2c64ab;
}

.btn-primary {
  background-color: #2c64ab;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #225082;
}

@media (max-width: 992px) {
  .talk-wrapper {
    height: 180px;
  }

  .talk-container h2 {
    font-size: 28.8px;
    max-width: 65%;
  }

  .talk-wrapper::after {
    background-image: url("../imgs/lets_talk_section_chat.png"),
      url("../imgs/lets_talk_section_chat.png"),
      url("../imgs/lets_talk_section_chat.png");
    background-position: 10% 20%, 60% 25%, 85% 65%;
    background-size: 70px auto, 65px auto, 75px auto;
  }
}

@media (max-width: 768px) {
  .talk-wrapper {
    height: auto;
  }

  .talk-container {
    flex-direction: column;
    padding: 40px 5%;
    align-items: flex-start;
  }

  .talk-container h2 {
    font-size: 28.8px;
    max-width: 100%;
    margin-bottom: 25px;
    text-align: left;
  }

  .talk-wrapper::after {
    background-image: url("../imgs/lets_talk_section_chat.png"),
      url("../imgs/lets_talk_section_chat.png");
    background-position: 20% 30%, 75% 60%;
    background-size: 65px auto, 70px auto;
  }
}

@media (max-width: 576px) {
  .talk-container h2 {
    font-size: 24px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .talk-wrapper::after {
    background-image: url("../imgs/lets_talk_section_chat.png");
    background-position: 50% 50%;
    background-size: 60px auto;
  }
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-logo {
  margin-bottom: 30px;
  text-align: left;
}

.footer-logo .logo {
  max-width: 180px;
  height: auto;
}

.footer-separator {
  height: 1px;
  background-color: #adb5bd;
  margin: 30px 0;
  width: 100%;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  font-size: 18px;
  display: inline-block;
}

.contact-details p {
  margin: 0 0 5px;
  opacity: 0.7;
  font-size: 14px;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  font-size: 14px;
}

.contact-details address {
  font-style: normal;
  opacity: 0.7;
  line-height: 1.5;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  opacity: 0.7;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  background-color: transparent;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-links a:first-child .social-icon,
.social-links a:nth-child(2) .social-icon,
.social-links a:nth-child(3) .social-icon,
.social-links a:nth-child(4) .social-icon,
.social-links a:nth-child(5) .social-icon {
  background-color: transparent;
}

.social-links a:hover .social-icon {
  opacity: 0.8;
}

@media (max-width: 992px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer {
    padding: 40px 0 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-form {
    margin-top: 20px;
  }

  .nav-menu ul {
    display: none;
  }
}

@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-form {
    margin-top: 20px;
  }

  .nav-menu ul {
    display: none;
  }

  .about-section {
    flex-direction: column;
  }

  .blog-container {
    grid-template-columns: 1fr;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 20px;
  }

  .testimonial-card {
    width: 250px;
    height: 130px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .about-content h2,
  .blog-section h2,
  .services-section h2 {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }
}

.btn-primary {
  background-color: #2c64ab;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  width: 300%;
  height: 300%;
  background: #225082;
  bottom: -150%;
  left: -150%;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: scale(1);
}

.btn-primary:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .agile-section h2,
  .blog-section h2,
  .hero-content h1,
  .potential h2,
  .services-section h2,
  .technologies h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .agile-section h2,
  .blog-section h2,
  .hero-content h1,
  .potential h2,
  .services-section h2,
  .technologies h2 {
    font-size: 2rem;
  }

  .blog-section p,
  .services-intro {
    font-size: 0.95rem;
  }

  .agile-section h1,
  .blog-section h1,
  .services-section h1,
  .technologies h1 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .agile-section h2,
  .blog-section h2,
  .hero-content h1,
  .potential h2,
  .services-section h2,
  .technologies h2 {
    font-size: 1.8rem;
  }

  .agile-section h1,
  .blog-section h1,
  .services-section h1,
  .technologies h1 {
    font-size: 1.125rem;
  }

  .stat-box h3 {
    font-size: 2rem;
  }
}

.blog-post-container {
  max-width: 1350px;
  margin: 40px auto;
  padding: 40px 5%;
  box-sizing: border-box;
}

.blog-post-container h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.blog-post-image {
  width: 100%;
  max-width: 1350px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted-text);
  max-width: 1350px;
  margin: 0 auto;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-cta {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 40px;
}

.blog-post-cta .btn-primary {
  padding: 14px 35px;
  font-size: 1.1rem;
  min-width: 288px;
}

@media (max-width: 768px) {
  .blog-post-container h1 {
    font-size: 2rem;
  }

  .blog-post-content {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .blog-post-container h1 {
    font-size: 1.8rem;
  }
}

.agile-section h2,
.blog-section h2,
.hero-content h1,
.potential h2,
.services-section h2,
.technologies h2,
h1,
h2 {
  font-family: Germagont, Montserrat, Arial, sans-serif;
  letter-spacing: -0.02em;
}

.about-content h1,
.agile-section h1,
.blog-section h1,
.services-section h1,
.technologies h1 {
  font-family: Germagont, Montserrat, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.stat-box h3 {
  font-family: Germagont, Montserrat, Arial, sans-serif;
  font-weight: 700;
}

.nav-menu ul li a {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
}

.btn-career,
.btn-primary,
.btn-submit,
.hero-btn {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-intro,
.testimonial-text,
p {
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 400;
}

.blog-card h4,
.service-card h3,
.testimonial-card h3 {
  font-family: Germagont, Montserrat, Arial, sans-serif;
}

.footer-column h3 {
  font-family: Germagont, Montserrat, Arial, sans-serif;
  font-weight: 400;
}

.slides {
  transition: transform 0.5s ease-in-out;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.slide {
  transition: opacity 0.3s ease;
}

/* General Button Classes CSS */

.btn-career,
.btn-primary,
.hero-btn {
  position: relative;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s ease;
}

.btn-career::after,
.btn-primary::after,
.hero-btn::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 50%;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
}

.btn-career::before,
.btn-primary::before,
.hero-btn::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 50%;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 50%;
  transition: transform 0.6s ease;
  transform: scale(0);
  z-index: -1;
}

.btn-career:hover::before,
.btn-primary:hover::before,
.hero-btn:hover::before {
  transform: scale(4);
}

/* SCROLL TO TOP BUTTON CSS */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color); /* Changed to a nice blue color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: white;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* CSS FOR HAMBURGER MENU / MOBILE MENU DROPDOWN */

/* Improved Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  margin-left: auto;
  position: relative;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #2c64ab;
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
  transform-origin: center;
}

/* X transformation for hamburger menu */
.hamburger-menu.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger-menu.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* Enhanced Mobile Menu Animation */
.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 280px;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 99;
  border: 1px solid #eee;
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile menu - hidden by default */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 280px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border: 1px solid #eee;
  border-top: none;
}

/* Media queries for mobile view */
@media (max-width: 992px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .mobile-menu li:last-child {
    border-bottom: none;
  }

  .mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .mobile-menu a:hover {
    color: #2c64ab;
  }

  .mobile-dropdown-toggle {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #2c64ab;
    transition: all 0.3s ease;
    line-height: 24px;
    text-align: center;
    font-size: 19px;
    border: 1px solid rgba(44, 100, 171, 0.2);
  }

  /* Active state styling with contrast colors */
  .mobile-dropdown-toggle.active,
  .has-dropdown .mobile-dropdown-toggle[aria-expanded="true"] {
    background-color: #2c64ab;
    color: white;
    transform: rotate(180deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #2c64ab;
  }

  /* Hover effect for better user experience */
  .mobile-dropdown-toggle:hover {
    background-color: #eaeaea;
    color: #225082;
  }

  .mobile-dropdown-toggle.active:hover,
  .has-dropdown .mobile-dropdown-toggle[aria-expanded="true"]:hover {
    background-color: #225082;
    color: white;
  }

  /* Mobile submenu (Services) */
  .mobile-submenu {
    display: none;
    background-color: #f8f9fa;
  }

  .mobile-submenu.active {
    display: block;
  }

  /* Mobile categories navigation */
  .mobile-categories {
    display: flex;
    background-color: #f0f4f8;
    border-bottom: 1px solid #ddd;
    padding: 5px 10px;
  }

  .mobile-category-btn {
    display: inline-block;
    padding: 8px 12px;
    background-color: transparent;
    border: none;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    margin-right: 10px;
  }

  .mobile-category-btn.active {
    color: #2c64ab;
  }

  .mobile-category-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: #2c64ab;
  }

  /* Mobile tech sections */
  .mobile-tech-section {
    display: none;
    padding: 15px 20px;
  }

  .mobile-tech-section.active {
    display: block;
  }

  /* Mobile solutions section */
  .mobile-solutions h4,
  .mobile-tech-title {
    color: #2c64ab;
    margin: 15px 0 10px;
    font-size: 16px;
    font-weight: 600;
  }

  /* Mobile solutions buttons */
  .mobile-solution-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .mobile-solution-btn {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-align: left;
    background-color: #f0f7ff;
    color: #2c64ab;
  }

  /* Technology categories */
  .mobile-tech-category {
    margin-bottom: 15px;
  }

  .mobile-tech-category h5 {
    color: #555;
    margin: 12px 0 8px;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-tech-item {
    display: flex;
    align-items: center;
    padding: 5px 8px;
    background-color: white;
    border-radius: 4px;
    border: 1px solid #eee;
    font-size: 12px;
    color: #555;
  }
}

/* Make sure mobile menu takes full width on smaller screens */
@media (max-width: 576px) {
  .mobile-menu {
    width: 100%;
    right: 0;
  }
}
