@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background-color: #fff;
  padding: 22px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.navbar {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links li a {
  font-size: 16px;
  font-weight: 600;
  color: #0b1c39;
  padding-bottom: 8px;
  position: relative;
  transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #1aa0e8;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 4px;
  background-color: #1aa0e8;
  border-radius: 3px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #0b1c39;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 0 5%;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .navbar.active {
    max-height: 400px;
    padding: 20px 5%;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links li a.active::after,
  .nav-links li a:hover::after {
    width: 45px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background-color: #fff;
  padding: 22px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.navbar {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links li a {
  font-size: 16px;
  font-weight: 600;
  color: #0b1c39;
  padding-bottom: 8px;
  position: relative;
  transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #1aa0e8;
}

.nav-links li a.active::after,
.nav-links li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 4px;
  background-color: #1aa0e8;
  border-radius: 3px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #0b1c39;
  border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 57, 0.22);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  max-width: 950px;
  color: #fff;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.18;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-dots .dot.active {
  background: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 0 5%;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .navbar.active {
    max-height: 400px;
    padding: 20px 5%;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links li a.active::after,
  .nav-links li a:hover::after {
    width: 45px;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-content h1 {
    font-size: 2.7rem;
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 18px 0;
  }

  .logo img {
    height: 42px;
  }

  .hero-slider {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    max-width: 95%;
  }

  .hero-dots {
    bottom: 20px;
  }

  .hero-dots .dot {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 440px;
  }

  .hero-content h1 {
    font-size: 1.55rem;
  }
}

.home-services {
  padding: 80px 0;
  background: #f5f7f9;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: #1c6a83;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: #1aa0e8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}

.service-card {
  text-align: left;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  width: 45px;
}

.service-card h3 {
  font-size: 26px;
  color: #1c6a83;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7b88;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-services {
    padding: 60px 0;
  }
}

.home-solutions {
  padding: 80px 0;
  border-top: 1px solid #e6e9ed;
}

.section-title p {
  margin-top: 20px;
  color: #444;
  font-size: 16px;
}

.solutions-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.solution-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.solution-icon img {
  width: 42px;
}

.solution-card h3 {
  font-size: 20px;
  color: #1c6a83;
  margin-bottom: 8px;
  font-weight: 600;
}

.solution-card span {
  color: #6b7b88;
  font-size: 14px;
  line-height: 1.6;
  display: block;
}

/* responsive */
@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

.home-industries {
  padding: 80px 0;
  border-top: 1px solid #e6e9ed;
}

.industries-grid {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.industry-card {
  position: relative;
  display: block;
  height: 230px;
  border-radius: 4px;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 35, 0.42);
  transition: 0.3s ease;
}

.industry-card h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
  z-index: 2;
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-card:hover .industry-overlay {
  background: rgba(7, 20, 35, 0.52);
}

@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    height: 220px;
  }

  .industry-card h3 {
    font-size: 22px;
  }
}

.site-footer {
  background: #eef3f6;
  color: #1c2b36;
  padding-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-logo img {
  width: 220px; /* bigger logo */
}

.footer-address {
  text-align: center; /* center address */
}

.footer-contact {
  text-align: right; /* push contact right */
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  color: #1c2b36;
}

.footer-col p {
  color: #5f6f7a;
  line-height: 1.7;
  font-size: 15px;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid #dde5ea;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #7a8a95;
}

/* responsive */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-logo img {
    margin: auto;
  }
}

.inner-page-banner {
  background: #174c67;
  padding: 22px 0;
}

.inner-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.inner-page-banner h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.service-details-section {
  padding: 55px 0 70px;
  background: #fff;
}

.service-details-content {
  max-width: 1450px;
}

.service-point {
  margin-bottom: 34px;
}

.service-point h3 {
  position: relative;
  padding-left: 22px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #7e7e7e;
}

.service-point h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: #25a9e0;
  border-radius: 50%;
}

.service-point p {
  margin-left: 22px;
  color: #7e7e7e;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .inner-banner-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-details-section {
    padding: 45px 0 60px;
  }

  .service-point p {
    margin-left: 0;
    font-size: 16px;
  }

  .service-point h3 {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .inner-page-banner h1 {
    font-size: 21px;
  }

  .breadcrumb {
    font-size: 14px;
    flex-wrap: wrap;
  }

  .service-point p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.professional-services-section {
  padding: 35px 0 80px;
  background: #fff;
}

.professional-services-content {
  max-width: 1280px;
  color: #7e7e7e;
}

.professional-services-content p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 10px;
  color: #7e7e7e;
}

.professional-list {
  margin: 10px 0 8px 0;
  padding: 0;
  list-style: none;
}

.professional-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
  font-size: 17px;
  color: #7e7e7e;
}

.professional-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2aa9e0;
}

.professional-services-content h2 {
  font-size: 26px;
  color: #06233f;
  margin: 8px 0 12px;
  font-weight: 700;
}

.methodology-note,
.methodology-note-inline {
  color: #2aa9e0;
  font-style: italic;
}

.highlight-link {
  color: #2aa9e0;
}

.methodology-steps {
  margin: 30px auto 10px;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  text-align: center;
  align-items: start;
}

.method-step {
  position: relative;
}

.step-circle {
  width: 30px;
  height: 30px;
  border: 2px solid #ababab;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: #fff;
}

.method-step.active .step-circle {
  border: none;
  background: radial-gradient(circle at 30% 30%, #6ed4ff, #2aa9e0);
  box-shadow: 0 0 10px rgba(42, 169, 224, 0.25);
}

.method-step h4 {
  font-size: 14px;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1.3;
}

.method-step.active h4 {
  color: #3f3f3f;
}

.methodology-line {
  max-width: 760px;
  margin: 0 auto 35px;
  height: 20px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.methodology-line::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  height: 6px;
  background: #eeeeee;
  transform: translateY(-50%);
  border-radius: 30px;
}

.methodology-line span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
  justify-self: center;
}

.methodology-box {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  padding: 36px 55px;
  text-align: center;
}

.methodology-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: #3d3d3d;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.methodology-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #7e7e7e;
  margin: 0;
}

@media (max-width: 991px) {
  .professional-services-content p,
  .professional-list li {
    font-size: 16px;
  }
}

.methodology-tabs {
  margin: 30px auto 10px;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  text-align: center;
  align-items: start;
}

.method-step {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.step-circle {
  width: 30px;
  height: 30px;
  border: 2px solid #ababab;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: #fff;
  transition: 0.3s ease;
}

.method-step.active .step-circle {
  border: none;
  background: radial-gradient(circle at 30% 30%, #6ed4ff, #2aa9e0);
  box-shadow: 0 0 10px rgba(42, 169, 224, 0.25);
}

.method-step h4 {
  font-size: 14px;
  color: #9b9b9b;
  font-weight: 700;
  line-height: 1.3;
  transition: 0.3s ease;
}

.method-step.active h4 {
  color: #3f3f3f;
}

.method-content {
  display: none;
}

.method-content.active {
  display: block;
}

.managed-services-section {
  padding: 40px 0 70px;
  background: #fff;
}

.managed-services-content {
  max-width: 1300px;
}

.managed-services-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #7e7e7e;
  margin-bottom: 22px;
}

.managed-highlight {
  font-weight: 700;
  color: #6f6f6f;
}

.industries-details-section {
  padding: 45px 0 70px;
  background: #fff;
}

.industries-details-content {
  max-width: 1280px;
}

.industry-detail-block {
  margin-bottom: 34px;
}

.industry-detail-block h2 {
  font-size: 24px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 12px;
}

.industry-detail-block p {
  font-size: 17px;
  line-height: 1.7;
  color: #7e7e7e;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .industries-details-section {
    padding: 40px 0 60px;
  }

  .industry-detail-block h2 {
    font-size: 22px;
  }

  .industry-detail-block p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .industry-detail-block h2 {
    font-size: 20px;
  }

  .industry-detail-block p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.about-company-section {
  padding: 45px 0 70px;
  background: #fff;
}

.about-company-content {
  max-width: 1320px;
}

.about-company-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 14px;
}

.about-company-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #7e7e7e;
  margin-bottom: 18px;
}

.about-quote {
  text-align: center;
  margin: 35px 0 28px;
}

.about-quote p {
  font-size: 28px;
  font-style: italic;
  color: #8a7d70;
  margin: 0;
}

.about-quote span {
  color: #2aa9e0;
  font-weight: 700;
}

.about-bring h3 {
  font-size: 32px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 18px;
}

.about-bring ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-bring ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.7;
  color: #7e7e7e;
}

.about-bring ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2aa9e0;
}

@media (max-width: 991px) {
  .about-company-section {
    padding: 40px 0 60px;
  }

  .about-company-content h2 {
    font-size: 29px;
  }

  .about-bring h3 {
    font-size: 28px;
  }

  .about-company-content p,
  .about-bring ul li {
    font-size: 16px;
  }

  .about-quote p {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .about-company-content h2 {
    font-size: 25px;
  }

  .about-bring h3 {
    font-size: 24px;
  }

  .about-company-content p,
  .about-bring ul li {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-quote p {
    font-size: 20px;
  }
}

.mission-vision-section {
  background: #3aa0c7;
  padding: 60px 0;
}

.mission-vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.mission-box h2,
.vision-box h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.mission-box p,
.vision-box p {
  color: #fff;
  font-size: 20px;
  line-height: 1.8;
  font-style: italic;
  max-width: 560px;
  margin: auto;
}

/* mobile */
@media (max-width: 768px) {
  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-box h2,
  .vision-box h2 {
    font-size: 28px;
  }

  .mission-box p,
  .vision-box p {
    font-size: 16px;
  }
}

.contact-form-section {
  padding: 50px 0 70px;
  background: #fff;
}

.contact-form-wrapper h2 {
  font-size: 34px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 24px;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 16px;
  color: #7e7e7e;
  margin-bottom: 10px;
  font-weight: 500;
}

.form-group input {
  height: 52px;
  border: 1px solid #cfd7de;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 16px;
  color: #06233f;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus {
  border-color: #3aa0c7;
  box-shadow: 0 0 0 3px rgba(58, 160, 199, 0.12);
}

.form-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.submit-btn {
  background: #2aa9e0;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #1f97cb;
}

.form-message {
  font-size: 15px;
  font-weight: 500;
  min-height: 22px;
}

.form-message.error {
  color: #d93025;
}

.form-message.success {
  color: #1e8e3e;
}

.input-error {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.1);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper h2 {
    font-size: 28px;
  }
}

.solutions-section {
  padding: 45px 0 70px;
  background: #fff;
}

.solutions-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #7e7e7e;
  margin-bottom: 18px;
}

.accordion {
  margin-top: 25px;
}

.accordion-item {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  color: #06233f;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.accordion-header span {
  font-size: 22px;
  color: #06233f;
}

.accordion-content {
  display: none;
  padding: 20px 22px;
  border-top: 1px solid #e3e3e3;
  background: #fff;
}

.accordion-content p {
  margin: 0;
  font-size: 16px;
  color: #7e7e7e;
  line-height: 1.7;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-header {
  background: #86a5ad;
  color: #fff;
}

.accordion-item.active .accordion-header span {
  color: #fff;
}

.cloud-infra-content {
  background: #fff;
}

.cloud-infra-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.cloud-infra-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #7e7e7e;
  margin-bottom: 16px;
}

.cloud-point {
  margin-bottom: 18px;
}

.cloud-point h4 {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #6d6d6d;
}

.cloud-point h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  background: #2aa9e0;
  border-radius: 50%;
}

.cloud-infra-image img {
  width: 100%;
  display: block;
  border-radius: 2px;
}

@media (max-width: 991px) {
  .cloud-infra-grid {
    grid-template-columns: 1fr;
  }
}

.solutions-block {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.solutions-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #7e7e7e;
}

.solutions-image img {
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .solutions-block {
    grid-template-columns: 1fr;
  }
}

.cmp-features {
  padding: 40px 0 80px;
}

.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cmp-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.cmp-card:hover {
  transform: translateY(-5px);
}

.cmp-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #0e2a47;
}

.cmp-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #7a7a7a;
}

@media (max-width: 992px) {
  .cmp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cmp-grid {
    grid-template-columns: 1fr;
  }
}

.business-solutions-section {
  padding: 45px 0 70px;
  background: #fff;
}

.business-solutions-content {
  max-width: 1320px;
}

.business-intro {
  font-size: 17px;
  line-height: 1.75;
  color: #7e7e7e;
  margin-bottom: 26px;
}

.business-block {
  margin-bottom: 26px;
}

.business-block h2 {
  font-size: 26px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 14px;
}

.business-block p {
  font-size: 17px;
  line-height: 1.75;
  color: #7e7e7e;
  margin: 0;
}

@media (max-width: 991px) {
  .business-solutions-section {
    padding: 40px 0 60px;
  }

  .business-intro,
  .business-block p {
    font-size: 16px;
  }

  .business-block h2 {
    font-size: 23px;
  }
}

@media (max-width: 600px) {
  .business-block h2 {
    font-size: 20px;
  }

  .business-intro,
  .business-block p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.ai-hero-image {
  padding: 20px 0 10px;
  background: #fff;
}

.ai-hero-image img {
  width: 100%;
  display: block;
}

.ai-details-section {
  padding: 20px 0 70px;
  background: #fff;
}

.ai-main-title {
  font-size: 34px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 24px;
}

.ai-text-block p,
.ai-industry-section p {
  font-size: 17px;
  line-height: 1.75;
  color: #7e7e7e;
  margin-bottom: 18px;
}

.ai-industry-section {
  margin-top: 28px;
}

.ai-industry-section h3 {
  font-size: 30px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 16px;
}

.ai-industry-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: #06233f;
  margin: 14px 0 10px;
}

@media (max-width: 991px) {
  .ai-main-title {
    font-size: 28px;
  }

  .ai-industry-section h3 {
    font-size: 26px;
  }

  .ai-industry-section h4 {
    font-size: 22px;
  }

  .ai-text-block p,
  .ai-industry-section p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .ai-main-title {
    font-size: 24px;
  }

  .ai-industry-section h3 {
    font-size: 22px;
  }

  .ai-industry-section h4 {
    font-size: 20px;
  }

  .ai-text-block p,
  .ai-industry-section p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.analytics-dashboards-section {
  padding: 20px 0 70px;
  background: #fff;
}

.analytics-title {
  font-size: 34px;
  font-weight: 700;
  color: #06233f;
  margin-bottom: 24px;
}

.analytics-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #7e7e7e;
  margin-bottom: 18px;
}

.analytics-list {
  margin: 10px 0 0 20px;
  padding-left: 18px;
}

.analytics-list li {
  font-size: 17px;
  line-height: 1.75;
  color: #7e7e7e;
  margin-bottom: 6px;
}

@media (max-width: 991px) {
  .analytics-title {
    font-size: 28px;
  }

  .analytics-content p,
  .analytics-list li {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .analytics-title {
    font-size: 24px;
  }

  .analytics-content p,
  .analytics-list li {
    font-size: 15px;
    line-height: 1.8;
  }
}

.analytics-images {
  padding: 20px 0 60px;
}

.analytics-img img {
  width: 100%;
  display: block;
  border-radius: 4px;
}