/* Prevent default scroll issues */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ensure body doesn't overflow */
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  color: #111 !important;
  text-align: center;
  margin-left: 160px;
}
ction-heading-underline {
  display: inline-block; /* Wraps tightly around text */
  position: relative;
  text-align: left; /* Default: align underline with left edge of text */
}

/* Section Heading Underline Style */
.section-heading-underline,
.section-heading-underline1 {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 18px;
  width: fit-content;
}

.section-heading-underline::after,
.section-heading-underline1::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(1);
  transform-origin: left;
  width: 50%;
  height: 7px;
  background: linear-gradient(to right, #ff000e, #e5d118);
  border-radius: 4px;
  transition: width 0.3s ease; /* Animate width on hover */
}

.section-heading-underline:hover::after,
.section-heading-underline1:hover::after {
  width: 100%; /* Expand to full width on hover */
}

/* Center text for first and last headings */
.section-title:first-of-type .section-heading-underline,
.section-title:last-of-type .section-heading-underline {
  text-align: center; /* Center the text */
}

/* Ensure parent .section-title retains centered text for layout */
.section-title {
  text-align: center;
  font-size: 48px;
  color: #000000;
  margin-bottom: 50px;
}

/* Rest of the existing CSS remains unchanged */
.section.about {
  padding: 60px 20px;
  overflow-x: hidden;
  margin-top: 20px;
}

.section.about h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  font-weight: 600;
}

.about-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.7;
  color: black;
  text-align: center;
  text-align: left;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: 334px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.why-choose-section {
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 150%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 48%, #0b2a6d 48%);
  z-index: -1;
}

.left-title {
  flex: 0 0 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.left-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #e5d118;
  line-height: 1.3;
  text-align: center;
  border-left: 6px solid #0b2a6d;
  padding-left: 20px;
}

.left-title h2 span {
  font-style: 'Montserrat', sans-serif;
  color: #ff000e;
}

.right-content {
  flex: 1;
  padding: 60px 60px;
  color: #fff;
  position: relative;
}

.choose-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.icon-circle1, .icon-circle2, .icon-circle3, .icon-circle4, .icon-circle5 {
  width: 60px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: #0b2a6d;
  font-size: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1;
}

.icon-circle1 { margin-left: 420px; }
.icon-circle2 { margin-left: 250px; }
.icon-circle3 { margin-left: 140px; }
.icon-circle4 { margin-left: 10px; }
.icon-circle5 { margin-left: -90px; }

.text h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #fff;
}

.text p {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 600px;
}

.challenge-solution-layout {
  font-family: 'Montserrat', sans-serif;
  padding: 40px;
  background: #fff;
  text-align: center;
}

.challenge-solution-layout .title {
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #000000;
}

.content-container {
  display: flex;
  justify-content: center;
  gap: 87px;
  flex-wrap: wrap;
}

.challenge-box,
.solution-box {
  border: 1px solid #ddd;
  border-radius: 40px 0 0 0;
  padding: 20px 30px;
  width: 600px;
  position: relative;
  background: #fff;
}

.item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  text-align: left;
}

.circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -48px;
  font-size: 25px;
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
}

.red { background: #eb4c4c; }
.blue { background: #e5d118; }

.footer1 {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 40px 0;
}

.red-bg {
  background: #ff000e;
  color: white;
  padding: 10px 20px;
  font-size: 24px;
}

.footer-icon1, .header-icon1 {
  width: 60px;
  height: 60px;
  border: 2px solid #eb4c4c;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eb4c4c;
  font-size: 22px;
  margin-left: auto;
}

.header {
  background: #e5d118;
  color: #fff;
  padding: 15px 20px;
  border-radius: 0 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
}

.header-icon1 {
  border-color: #2b628c;
  color: #2b628c;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 30px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.benefits-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-left: 10px;
  border-left: 4px solid #0b2a6d;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #ff6f61;
}

.benefit-icon {
  font-size: 2.2rem;
  color: #0b2a6d;
  min-width: 40px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #ff000e;
}

.benefit-card p {
  margin: 0;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.down-arrow-icon {
  font-size: 1.2rem;
  color: #0b2a6d;
  margin: 8px 0;
  display: block;
}

.benefit-item:hover .down-arrow-icon {
  color: #ff6f61;
}

/* Consulting Services Section */
.consulting-section {
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-boxes {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-boxes:hover {
  transform: translateY(-10px);
}

.service-boxes .icon {
  font-size: 40px;
  /* color: #0b2a6d; */
  background: linear-gradient(to right, #ff000e, #e5d118);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; 
  margin-bottom: 15px;
}

.service-boxes h3 {
  font-size: 19px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.service-boxes p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.technologies-section {
  background: linear-gradient(135deg, #0b2a6d, #10316b);
  padding: 80px 40px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: white;
}

.tech-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.tech-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tech-item {
  padding: 15px 30px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 18px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  cursor: default;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.tech-item:hover {
  background: rgba(255,255,255,0.2);
  color: #ffe600;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 95vh;
  margin-top: 60px;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 800;
}

.hero-content .tagline {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-button {
  /* background: #071f3a; */
   background: linear-gradient(to right, #ff000e, #e5d118);
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 700;
}

.services-grid .service-boxes {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  margin-bottom: 0;
}

.services-grid .service-boxes .icon {
  font-size: 40px;
  /* color: #0b2a6d; */
  margin-bottom: 15px;
}

.services-grid .service-boxes h3 {
  font-size: 19px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.services-grid .service-boxes p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Media Queries */
@media (max-width: 667px) {
  .hero {
    height: 60vh;
    min-height: 350px;
  }
  .hero img {
    height: 60vh;
    min-height: 350px;
  }
  .hero-content {
    padding: 10px;
    max-width: 98vw;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content .tagline {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
  .section.about {
    padding: 30px 5px;
  }
  .section.about h2 {
    font-size: 2rem;
  }
  .about-content {
    flex-direction: column;
    gap: 20px;
  }
  .about-image img {
    height: 180px;
  }
  .why-choose-section {
    flex-direction: column;
    min-height: unset;
    padding: 20px 0;
  }
  .left-title {
    padding: 10px;
    flex: unset;
  }
  .left-title h2 {
    font-size: 2rem;
    padding-left: 10px;
    border-left-width: 3px;
  }
  .right-content {
    padding: 20px 10px;
    background-color: navy;
  }
  .choose-box {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .icon-circle1, .icon-circle2, .icon-circle3, .icon-circle4, .icon-circle5 {
    margin-left: 0 !important;
    margin-bottom: 10px;
    font-size: 2rem;
    width: 45px;
    height: 45px;
  }
  .challenge-solution-layout {
    padding: 20px 5px;
  }
  .challenge-solution-layout .title {
    font-size: 2rem;
    margin-left: -3px;
  }
  .content-container {
    flex-direction: column;
    gap: 30px;
  }
  .challenge-box, .solution-box {
    width: 85vw;
    min-width: unset;
    padding: 10px 5px;
    border-radius: 20px 0 0 0;
    margin-left: 33px;
  }
  h4 {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
  .item {
    gap: 10px;
    margin-bottom: 15px;
  }
  .circle {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    margin-left: -20px;
  }
  .footer1 {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    border-radius: 0 0 20px 0;
    font-size: 1.1rem;
  }
  .footer-icon1, .header-icon1 {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .header {
    font-size: 1.1rem;
    padding: 8px 5px;
    border-radius: 0 20px 0 0;
  }
  .benefits-section {
    padding: 30px 5px;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .benefits-list {
    gap: 20px;
  }
  .benefit-card h3 {
    font-size: 1rem;
  }
  .benefit-card p {
    font-size: 0.95rem;
  }
  .consulting-section {
    padding: 30px 5px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-boxes {
    padding: 15px 5px;
    margin-left: 26px;
    width: 85%;
  }
  .service-boxes .icon {
    font-size: 1.5rem;
  }
  .service-boxes h3 {
    font-size: 1rem;
  }
  .technologies-section {
    padding: 30px 5px;
  }
  .tech-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .tech-wrapper {
    gap: 10px;
  }
  .tech-item {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .footer1-container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer1-col {
    min-width: unset !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .footer1-logo img {
    width: 90px;
    height: auto;
  }
  .footer1-bottom {
    font-size: 0.9rem !important;
    padding: 5px 0;
  }
  .section-heading-underline::after,
  .section-heading-underline1::after {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }
  .about-us-left h2.section-heading-underline::after {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    height: 70vh;
  }
  .hero img {
    height: 70vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero-content .tagline {
    font-size: 1.1rem;
  }
  .section.about h2,
  .section-title,
  .tech-title {
    font-size: 2.2rem;
  }
  .about-content {
    flex-direction: column;
    gap: 25px;
  }
  .about-image img {
    height: 200px;
  }
  .why-choose-section {
    flex-direction: column;
    min-height: unset;
    padding: 30px 0;
  }
  .left-title {
    padding: 15px;
  }
  .left-title h2 {
    font-size: 2.2rem;
    padding-left: 12px;
    border-left-width: 4px;
  }
  .right-content {
    padding: 25px 10px;
  }
  .choose-box {
    margin-bottom: 20px;
  }
  .icon-circle1, .icon-circle2, .icon-circle3, .icon-circle4, .icon-circle5 {
    margin-left: 0 !important;
    font-size: 2.2rem;
    width: 48px;
    height: 48px;
  }
  .challenge-solution-layout {
    padding: 25px 10px;
  }
  .challenge-solution-layout .title {
    font-size: 2.2rem;
  }
  .content-container {
    flex-direction: column;
    gap: 35px;
  }
  .challenge-box, .solution-box {
    width: 98vw;
    min-width: unset;
    padding: 15px 8px;
    border-radius: 25px 0 0 0;
  }
  .item {
    gap: 12px;
    margin-bottom: 18px;
  }
  .circle {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-left: -28px;
  }
  .footer1 {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
    border-radius: 0 0 25px 0;
  }
  .footer-icon1, .header-icon1 {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .header {
    font-size: 1.2rem;
    padding: 10px 8px;
    border-radius: 0 25px 0 0;
  }
  .benefits-section {
    padding: 35px 10px;
  }
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  .benefits-list {
    gap: 25px;
  }
  .benefit-card h3 {
    font-size: 1.1rem;
  }
  .benefit-card p {
    font-size: 1rem;
  }
  .consulting-section {
    padding: 35px 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-boxes {
    padding: 18px 8px;
  }
  .service-boxes .icon {
    font-size: 1.7rem;
  }
  .service-boxes h3 {
    font-size: 1.1rem;
  }
  .technologies-section {
    padding: 35px 10px;
  }
  .tech-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  .tech-wrapper {
    gap: 15px;
  }
  .tech-item {
    font-size: 1.1rem;
    padding: 10px 16px;
  }
  .footer1-container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer1-col {
    min-width: unset !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .footer1-logo img {
    width: 110px;
    height: auto;
  }
  .footer1-bottom {
    font-size: 1rem !important;
    padding: 8px 0;
  }
  .section-heading-underline::after,
  .section-heading-underline1::after {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }
  .about-us-left h2.section-heading-underline::after {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    height: 80vh;
  }
  .hero img {
    height: 80vh;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-content .tagline {
    font-size: 1.2rem;
  }
  .section.about h2,
  .section-title,
  .tech-title {
    font-size: 2.5rem;
  }
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  .about-image img {
    height: 250px;
  }
  .why-choose-section {
    flex-direction: column;
    min-height: unset;
    padding: 40px 0;
  }
  .left-title {
    padding: 20px;
  }
  .left-title h2 {
    font-size: 2.5rem;
    padding-left: 15px;
    border-left-width: 5px;
  }
  .right-content {
    padding: 35px 20px;
  }
  .choose-box {
    margin-bottom: 25px;
  }
  .icon-circle1, .icon-circle2, .icon-circle3, .icon-circle4, .icon-circle5 {
    margin-left: 0 !important;
    font-size: 2.5rem;
    width: 54px;
    height: 54px;
  }
  .challenge-solution-layout {
    padding: 35px 20px;
  }
  .challenge-solution-layout .title {
    font-size: 2.5rem;
  }
  .content-container {
    flex-direction: column;
    gap: 40px;
  }
  .challenge-box, .solution-box {
    width: 91vw;
    min-width: unset;
    padding: 20px 12px;
    border-radius: 30px 0 0 0;
    margin-left: 20px;
  }
  .item {
    gap: 15px;
    margin-bottom: 20px;
  }
  .circle {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    margin-left: -36px;
  }
  .footer1 {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
    border-radius: 0 0 30px 0;
  }
  .footer-icon1, .header-icon1 {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .header {
    font-size: 1.5rem;
    padding: 12px 15px;
    border-radius: 0 30px 0 0;
  }
  .benefits-section {
    padding: 40px 15px;
  }
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .benefits-list {
    gap: 30px;
  }
  .benefit-card h3 {
    font-size: 1.2rem;
  }
  .benefit-card p {
    font-size: 1.1rem;
  }
  .consulting-section {
    padding: 40px 15px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-boxes {
    padding: 18px 8px;
  }
  .service-boxes .icon {
    font-size: 1.7rem;
  }
  .service-boxes h3 {
    font-size: 1.1rem;
  }
  .technologies-section {
    padding: 40px 15px;
  }
  .tech-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .tech-wrapper {
    gap: 20px;
  }
  .tech-item {
    font-size: 1.2rem;
    padding: 12px 20px;
  }
  .footer1-container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer1-col {
    min-width: unset !important;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .footer1-logo img {
    width: 120px;
    height: auto;
  }
  .footer1-bottom {
    font-size: 1rem !important;
    padding: 8px 0;
  }
   .section-heading-underline::after,
  .section-heading-underline1::after {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }
  .about-us-left h2.section-heading-underline::after {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #ff000e, #e5d118);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero {
    height: 90vh;
  }
  .hero img {
    height: 90vh;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-content .tagline {
    font-size: 1.3rem;
  }
  .section.about h2,
  .tech-title {
    font-size: 3rem;
  }
  .about-content {
    flex-direction: row;
    gap: 30px;
  }
  .about-image img {
    height: 300px;
  }
  .why-choose-section {
    flex-direction: row;
    min-height: 70vh;
    padding: 50px 0;
  }
  .left-title {
    padding: 30px;
  }
  .left-title h2 {
    font-size: 3rem;
    padding-left: 18px;
    border-left-width: 6px;
  }
  .right-content {
    padding: 40px 30px;
  }
  .choose-box {
    margin-bottom: 30px;
  }
  .icon-circle1, .icon-circle2, .icon-circle3, .icon-circle4, .icon-circle5 {
    margin-left: 0 !important;
    font-size: 2.8rem;
    width: 60px;
    height: 60px;
  }
  .challenge-solution-layout {
    padding: 50px 30px;
  }
  .challenge-solution-layout .title {
    font-size: 3rem;
  }
  .content-container {
    flex-direction: row;
    gap: 50px;
  }
  .challenge-box, .solution-box {
    width: 77vw;
    min-width: 320px;
    padding: 25px 18px;
    border-radius: 35px 0 0 0;
  }
  .item {
    gap: 18px;
    margin-bottom: 22px;
  }
  .circle {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    margin-left: -44px;
  }
  .footer1 {
    flex-direction: row;
    align-items: center;
    padding-top: 20px;
    border-radius: 0 0 40px 0;
  }
  .footer-icon1, .header-icon1 {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  .header {
    font-size: 2rem;
    padding: 18px 24px;
    border-radius: 0 40px 0 0;
  }
  .benefits-section {
    padding: 80px 30px;
  }
  .benefits-list {
    gap: 40px;
  }
  .benefit-card h3 {
    font-size: 1.4rem;
  }
  .benefit-card p {
    font-size: 1.2rem;
  }
  .consulting-section {
    padding: 80px 20px;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  .service-boxes {
    padding: 30px 20px;
  }
  .service-boxes .icon {
    font-size: 2.5rem;
  }
  .service-boxes h3 {
    font-size: 1.4rem;
  }
  .technologies-section {
    padding: 80px 40px;
  }
  .tech-title {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  .tech-wrapper {
    gap: 30px;
  }
  .tech-item {
    font-size: 1.4rem;
    padding: 15px 30px;
  }
}

@media (min-width: 1200px) {
  .hero {
    height: 100vh;
  }
  .hero img {
    height: 100vh;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero-content .tagline {
    font-size: 1.5rem;
  }
  .section.about h2,
  .section-title,
  .tech-title {
    font-size: 3rem;
  }
  .about-content {
    flex-direction: row;
    gap: 40px;
  }
  .about-image img {
    height: 334px;
  }
  .why-choose-section {
    flex-direction: row;
    min-height: 100vh;
    padding: 60px 0;
  }
  .left-title {
    padding: 40px;
  }
  .left-title h2 {
    font-size: 3rem;
    padding-left: 20px;
    border-left-width: 6px;
  }
  .right-content {
    padding: 60px 60px;
  }
  .choose-box {
    margin-bottom: 40px;
  }
  .icon-circle1, .icon-circle2, .icon-circle3, .icon-circle4, .icon-circle5 {
    font-size: 3.2rem;
    width: 70px;
    height: 70px;
  }
  .challenge-solution-layout {
    padding: 60px 40px;
  }
  .challenge-solution-layout .title {
    font-size: 3rem;
  }
  .content-container {
    flex-direction: row;
    gap: 87px;
  }
  .challenge-box, .solution-box {
    width: 600px;
    min-width: 400px;
    padding: 30px 30px;
    border-radius: 40px 0 0 0;
  }
  .item {
    gap: 20px;
    margin-bottom: 25px;
  }
  .circle {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    margin-left: -48px;
  }
  .footer {
    flex-direction: row;
    align-items: center;
    padding-top: 20px;
    border-radius: 0 0 40px 0;
  }
  .footer-icon1, .header-icon1 {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  .header {
    font-size: 2rem;
    padding: 18px 24px;
    border-radius: 0 40px 0 0;
  }
  .benefits-section {
    padding: 80px 30px;
  }
  .section-title {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .benefits-list {
    gap: 40px;
  }
  .benefit-card h3 {
    font-size: 1.4rem;
  }
  .benefit-card p {
    font-size: 1.2rem;
  }
  .consulting-section {
    padding: 80px 20px;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  .service-boxes {
    padding: 30px 20px;
  }
  .service-boxes .icon {
    font-size: 2.5rem;
  }
  .service-boxes h3 {
    font-size: 1.4rem;
  }
  .technologies-section {
    padding: 80px 40px;
  }
  .tech-title {
    font-size: 3rem;
    margin-bottom: 40px;
  }
  .tech-wrapper {
    gap: 30px;
  }
  .tech-item {
    font-size: 1.4rem;
    padding: 15px 30px;
  }
}

@media (max-width: 991.98px) {
  .hero, .hero img {
    overflow-x: hidden;
  }
}