@media(max-width : 600px) {
  .text-anime-style-3 {
    font-size: 9vw !important;
    font-weight: 700 !important;
  }
}

/*About Mobile App Development Section  */
:root {
  --accent: #0b6efd;
  --text: #222;
  --muted: #555;
  --bg: #fff;
}

.about {
  background: var(--bg);
  padding: 80px 5%;
  /* display: flex;
    justify-content: center; */
}

.about-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-img {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-img img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  height: auto;
  transition: transform 0.6s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: bold;
}

.about-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #084dcc;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 600px) {
  .about {
    padding: 20px 30px;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    order: 2;
  }

  .about-img {
    order: 1;
  }

  .about-img img {
    max-width: 300px;
    height: 200px;
  }

  .btn:hover {
    background: #084dcc;
    transform: translateY(-3px);
  }
}

/* Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 300px) {
  .about-container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

/*** services **/
.mobileapp-services-animated {
  padding: 90px 40px 50px 40px;
  background: linear-gradient(110deg, #f7fbfe 75%, #e3f5ff 100%);
}

.mobileapp-services-header-animated {
  max-width: 700px;
  margin: 0 auto 46px auto;
  padding-top: 18px;
  text-align: center;
  position: relative;
}

.service-header-icon {
  display: block;
  font-size: 3.3rem;
  background: linear-gradient(135deg, #84e6fb 55%, #69bdd8 100%);
  color: #065d89;
  border-radius: 50%;
  width: 78px;
  height: 78px;
  margin: 0 auto 12px auto;
  box-shadow: 0 6px 24px #84e6fb32;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobileapp-services-header-animated h2 {
  font-size: 2.2rem;
  color: #196598;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.mobileapp-services-header-animated p {
  color: #3692b4;
  font-size: 1.11rem;
  margin-bottom: 0;
  line-height: 1.62;
  font-weight: 500;
}

.mobileapp-service-cards-animated {
  margin: 0 auto;
  display: grid;
  max-width: 1200px;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 34px;
  padding: 0 18px;
}

.mobileapp-service-card-animated {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  box-shadow: 0 8px 28px #99e2fc33;
  border-top: 5px solid #45caff;
  padding: 32px 21px 23px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .41s cubic-bezier(.4, 0, .2, 1), box-shadow .27s, opacity .7s;
  opacity: 0;
  transform: translateY(33px) scale(0.97);
  will-change: transform, opacity;
}

.mobileapp-service-card-animated.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobileapp-service-card-animated:hover,
.mobileapp-service-card-animated:focus-within {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px #42bcf742, 0 8px 19px #b5eaff38;
  border-top-color: #2297db;
}

.service-card-icon-animated {
  font-size: 2.2rem;
  color: #065675;
  background: linear-gradient(135deg, #7cd6f4 40%, #60d2f7 100%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  box-shadow: 0 4px 16px #60d2f743;
  margin-bottom: 15px;
}

.mobileapp-service-card-animated h3 {
  font-size: 1.13rem;
  font-weight: 700;
  margin: 0 0 9px 0;
  color: #2297db;
  text-align: left;
}

.mobileapp-service-card-animated p {
  font-size: 1.01rem;
  color: #296f99;
  line-height: 1.58;
  margin: 0;
  text-align: left;
}

@media (max-width: 1200px) {
  .mobileapp-service-cards-animated {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:800px) {
  .mobileapp-services-header-animated h2 {
    font-size: 1.2rem;
  }

  .service-header-icon {
    font-size: 2rem;
    width: 55px;
    height: 55px;
  }

  .mobileapp-service-cards-animated {
    gap: 23px 3vw;
  }

  .mobileapp-service-card-animated {
    padding: 14px 6px;
  }

  .service-card-icon-animated {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
  }

  .mobileapp-service-card-animated h3 {
    font-size: 0.91rem;
  }

  .mobileapp-service-card-animated p {
    font-size: 0.92rem;
  }
}

@media (max-width:570px) {
  .mobileapp-services-header-animated h2 {
    font-size: 1.05rem;
  }

  .mobileapp-service-cards-animated {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .mobileapp-services-animated {
    padding: 22px 0 10px 0;
  }
}

/** technologies we use **/
.mobileapp-tech {
  padding: 68px 0 54px 0;
  background: linear-gradient(110deg, #031e38 85%, #003861 100%);
}

.mobileapp-tech-header {
  max-width: 700px;
  margin: 0 auto 38px auto;
  text-align: center;
}

.mobileapp-tech-header h2 {
  font-size: 2.04rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tech-icon {
  display: block;
  font-size: 2.3rem;
  margin: 0 auto 9px auto;
  color: #051a43;
  background: linear-gradient(135deg, #e3f5ff 70%, #b3cef1 100%);
  border-radius: 50%;
  box-shadow: 0 3px 10px #4d7bd633;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobileapp-tech-header p {
  color: #acd2f3;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.58;
}

.mobileapp-tech-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 16px 24px;
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}

.tech-pill {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 20px;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 5px 21px #aecae620;
  letter-spacing: 0.03em;
  transition: transform .19s cubic-bezier(.4, 0, .2, 1), box-shadow .13s;
  justify-content: flex-start;
  cursor: pointer;
}

.tech-pill:hover {
  transform: translateY(-5px) scale(1.03);
  background: #e7f5ff;
  box-shadow: 0 13px 27px #7ebfff31;
}

.pill-icon {
  font-size: 1.37rem;
  padding: 7px 6px 7px 0;
  display: flex;
  align-items: center;
}

/* Brand icon colors */
.android-color i {
  color: #3ddc84;
}

/* Android green */
.apple-color i {
  color: #000;
}

/* Apple black */
.react-color i {
  color: #61dafb;
}

/* React blue */
.js-color i {
  color: #f7df1e;
}

/* JS yellow */
.java-color i {
  color: #e76f00;
}

/* Java orange */
.firebase-color i {
  color: #ffca28;
}

/* Firebase yellow */
.node-color i {
  color: #8cc84b;
}

/* Node.js green */
.cloud-color i {
  color: #4285f4;
}

/* Cloud(blue) */

@media (max-width: 950px) {
  .mobileapp-tech-list {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 12px 7vw;
  }
}

@media (max-width:570px) {
  .mobileapp-tech-header h2 {
    font-size: 1.04rem;
  }

  .mobileapp-tech-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .mobileapp-tech {
    padding: 20px 20px 19px 20px;
  }
}

/** why choose us **/
.kotech-why-android-modern {
  padding: 62px 0 44px 0;
  background: linear-gradient(120deg, #202d63 72%, #176693 100%);
}

.kotech-modern-header {
  max-width: 720px;
  margin: 0 auto 38px auto;
  text-align: center;
  color: #f9f9ff;
}

.android-icon-modern {
  display: inline-block;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #45caff 70%, #1681bd 100%);
  color: #202d63;
  border-radius: 14px;
  box-shadow: 0 9px 32px #1681bd5c;
  padding: 7px 16px 7px 7px;
  margin-bottom: 13px;
  margin-right: 7px;
}

.kotech-modern-header h2 {
  font-size: 2.1rem;
  color: #e9f6ff;
  font-weight: 800;
  margin-bottom: 9px;
  letter-spacing: 1.2px;
}

.kotech-modern-highlight {
  /* background: linear-gradient(90deg, #047cab 35%, #1681bd 65%); */
  color: white;
  padding: 2.5px 13px;
  border-radius: 9px;
  font-weight: 900;
  box-shadow: 0 2px 12px #45caff42;
}

.kotech-modern-header p {
  color: #8edcff;
  font-size: 1.14rem;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 5px;
}

.kotech-modern-cards {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px 40px;
  padding: 0 15px;
}

.kotech-modern-card {
  background: rgba(36, 54, 95, 0.63);
  border-radius: 23px;
  box-shadow: 0 12px 44px #2b70af29, 0 4px 16px #1681bd66;
  border: 1.5px solid #5fbae8;
  padding: 38px 26px 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform .24s cubic-bezier(.4, 0, .2, 1), box-shadow .21s;
  backdrop-filter: blur(7px);
}

.kotech-modern-card:hover,
.kotech-modern-card:focus-within {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 16px 44px #45caff9a, 0 8px 12px #1681bd44;
  border-color: #036187;
}

.kotech-modern-card-icon {
  font-size: 2.42rem;
  margin-bottom: 19px;
  color: #45caff;
  background: linear-gradient(135deg, #026d97 40%, #078edd 100%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 5px 20px #45caff55;
}

.kotech-modern-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 2px 0 8px 0;
  color: #e9f6ff;
  letter-spacing: 0.7px;
}

.kotech-modern-card p {
  font-size: 1.06rem;
  color: #c6e9ff;
  line-height: 1.62;
  margin: 0;
}

@media (max-width: 900px) {
  .kotech-modern-header h2 {
    font-size: 1.2rem;
  }

  .android-icon-modern {
    font-size: 1.5rem;
    padding: 4px 8px;
  }

  .kotech-modern-cards {
    gap: 22px 3vw;
  }

  .kotech-modern-card {
    padding: 17px 8px;
  }

  .kotech-modern-card-icon {
    font-size: 1.4rem;
    width: 31px;
    height: 31px;
  }

  .kotech-modern-card h3 {
    font-size: 0.98rem;
  }

  .kotech-modern-card p {
    font-size: 0.91rem;
  }
}

@media (max-width:600px) {
  .kotech-why-android-modern {
    padding: 20px 20px 12px 20px;
  }

  .kotech-modern-header h2 {
    font-size: 1.07rem;
  }

  .kotech-modern-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/** technologies we use **/
.tech-section {
  position: relative;
  padding: 100px 10%;
  overflow: hidden;
  background: linear-gradient(135deg, #4949a163, #8b93a465);
  color: #000000;
}

.tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('https://images.unsplash.com/photo-1665602878676-219e01293b51?q=80&w=880&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  opacity: 0.1; */
  z-index: 0;
}

.tech-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tech-heading {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.tech-heading span {
  color: #ffffff;
  font-weight: 700;
}

.tech-subtext {
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 60px;
  color: #ffffff;
}

.tech-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.tech-item {
  background: linear-gradient(135deg, #00d4ff, #6a5acd);
  padding: 30px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 3px solid rgb(4, 22, 70);
  box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
  text-align: center;
}

.tech-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.tech-item:hover {
  background: linear-gradient(135deg, #00d4ff, #6a5acd);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tech-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.tech-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eee;
}

@media (max-width: 768px) {
  .tech-wrapper {
    display: flex;
    flex-direction: column;
    /* overflow-x: auto; */
    gap: 20px;
    padding-bottom: 10px;
  }

  .tech-item {
    min-width: 220px;
    flex: 0 0 auto;
  }

  .tech-heading {
    font-size: 2rem;
    font-weight: 700;
  }

  .tech-subtext {
    font-size: 0.95rem;
  }

  .tech-item:hover {
    background: linear-gradient(135deg, #00d4ff, #6a5acd);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }
}

/** work process **/
.workprocess-timeline-simple {
  background: linear-gradient(124deg, #f8fbff 90%, #eaf6ff 100%);
  padding: 64px 0 37px 0;
}

.timeline-header {
  max-width: 650px;
  margin: 0 auto 23px auto;
  text-align: center;
}

.timeline-header-icon {
  display: block;
  font-size: 2.3rem;
  background: linear-gradient(135deg, #3fc9ff 70%, #91b2ff 100%);
  color: #188afc;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  margin: 0 auto 7px auto;
  box-shadow: 0 2px 12px #91b2ff36;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-header h2 {
  font-size: 1.52rem;
  color: #188afc;
  font-weight: 800;
  margin-bottom: 4px;
}

.timeline-header p {
  color: #4386ba;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0;
}

.timeline-wrap {
  max-width: 600px;
  width: 98vw;
  margin: 28px auto 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.timeline-wrap:before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3.5px;
  background: linear-gradient(180deg, #3fc9ff 22%, #eaf6ff 100%);
  border-radius: 9px;
  opacity: 0.23;
  z-index: 0;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 26px;
}

.timeline-dot {
  min-width: 48px;
  min-height: 48px;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px #3fc9ff23;
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #3fc9ff;
  margin-top: 1px;
  color: #3fc9ff;
  position: relative;
  z-index: 2;
}

.step2 {
  color: #8b6af7;
  border-color: #8b6af7;
}

.step3 {
  color: #13deb6;
  border-color: #13deb6;
}

.step4 {
  color: #fba53c;
  border-color: #fba53c;
}

.step5 {
  color: #34ef86;
  border-color: #34ef86;
}

.step6 {
  color: #fd6ec2;
  border-color: #fd6ec2;
}

.timeline-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 18px #278afc0a;
  padding: 13px 17px 10px 17px;
  position: relative;
  min-width: 0;
  width: calc(100% - 70px);
}

.timeline-step-title {
  font-size: 1.06rem;
  font-weight: 700;
  color: #176bb7;
  margin-bottom: 3px;
}

.timeline-step-desc {
  font-size: 0.92rem;
  color: #4386ba;
  margin-bottom: 0;
  line-height: 1.42;
}

@media (max-width:700px) {
  .timeline-wrap {
    gap: 25px;
    max-width: 75vw;
  }

  .timeline-wrap:before {
    left: 19px;
    width: 2px;
  }

  .timeline-dot {
    font-size: 1.17rem;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-width: 2px;
  }

  .timeline-card {
    width: calc(100% - 42px);
    padding: 7px 8px 7px 10px;
  }

  .timeline-step-title {
    font-size: 0.92rem;
  }

  .timeline-step-desc {
    font-size: 0.81rem;
  }
}

@media (max-width:440px) {
  .timeline-header h2 {
    font-size: 0.95rem;
  }

  .timeline-card {
    padding: 5px 5px 5px 6px;
  }
}

/****============================
 Indutries-we-serve
 ========================== **/
/* Section Base */
.industries-section1 {
  background-color: #142850;
  color: #fff;
  padding: 60px 120px;
  text-align: center;
  width: 100%;
}

.industries-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.industries-heading p {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 50px;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}

/* Card Style */
.industry-item {
  background-color: #1b3b6f;
  border: 2px solid #00a8cc;
  border-radius: 15px;
  padding: 25px 15px;
  width: 100%;
  max-width: 250px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.industry-item h3 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.industry-item:hover {
  background-color: #00a8cc;
  border-color: #fff;
  transform: translateY(-5px);
}

.industry-item:hover h3 {
  color: #142850;
}

.industry-item:hover img {
  filter: brightness(1) invert(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .industries-heading h2 {
    font-size: 1.8rem;
  }

  .industries-heading p {
    font-size: 0.9rem;
  }
}

/*** faq section **/
/* FAQ Section Main Wrapper */
.mobile-faq-section {
  background: #eef6fd;
  padding: 40px 20px;
}

/* Heading */
.mobile-faq-heading {
  text-align: center;
  font-size: 2.2em;
  color: #05185b;
  font-weight: 700;
  margin-bottom: 40px;
}

/* Columns Layout */
.mobile-faq-columns {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

/* Single Column */
.mobile-faq-col {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Item */
.mobile-faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 20px #1347ff13;
  border: 1.5px solid #dde6f8;
  overflow: hidden;
  transition: box-shadow 0.20s;
}

/* Question */
.mobile-faq-question {
  font-size: 1.1em;
  color: #02123c;
  padding: 18px 22px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  transition: background 0.19s;
  user-select: none;
}

/* Plus Icon */
.mobile-faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 1.3em;
  color: #14a2ff;
  font-weight: 700;
}

/* Question when opened */
.mobile-faq-item.open .mobile-faq-question {
  background: #f2f8ff;
}

/* Minus Icon */
.mobile-faq-item.open .mobile-faq-question::after {
  content: "-";
  color: #f74e54;
}

/* Answer */
.mobile-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fbff;
  color: #222;
  padding: 0 22px;
  font-size: 1em;
  line-height: 1.7;
  transition: max-height 0.29s, padding 0.23s;
}

/* Answer when opened */
.mobile-faq-item.open .mobile-faq-answer {
  max-height: 500px;
  padding: 12px 22px 22px 22px;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-faq-columns {
    flex-direction: column;
    gap: 22px;
  }

  .mobile-faq-heading {
    font-size: 1.6em;
    margin-bottom: 25px;
  }
}

/****============================
 Indutries-we-serve
 ========================== **/
/* Section Base */
.industries-section1 {
  background-color: #142850;
  color: #fff;
  padding: 60px 120px;
  text-align: center;
  width: 100%;
}

.industries-heading h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.industries-heading p {
  font-size: 1rem;
  color: #d0d0d0;
  margin-bottom: 50px;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
}

/* Card Style */
.industry-item {
  background-color: #1b3b6f;
  border: 2px solid #00a8cc;
  border-radius: 15px;
  padding: 25px 15px;
  width: 100%;
  max-width: 250px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.industry-item h3 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.industry-item:hover {
  background-color: #00a8cc;
  border-color: #fff;
  transform: translateY(-5px);
}

.industry-item:hover h3 {
  color: #142850;
}

.industry-item:hover img {
  filter: brightness(1) invert(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industries-section1 {
    padding: 20px 20px;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .industries-heading h2 {
    font-size: 1.8rem;
  }

  .industries-heading p {
    font-size: 0.9rem;
  }
}

/** client review **/
.client-reviews-badges {
  background: linear-gradient(120deg, #001e44 86%, #183159 100%);
  padding: 64px 0 48px 0;
}

.client-reviews-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

.client-reviews-icon {
  display: block;
  font-size: 2.3rem;
  background: linear-gradient(135deg, #1d83ac 85%, #1b3572 100%);
  color: #bfd5eb;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  margin: 0 auto 9px auto;
  box-shadow: 0 3px 14px #91b2ff33;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-highlight {
  background: linear-gradient(90deg, #ace0f5 22%, #d1daee 75%);
  color: white;
  padding: 2px 10px;
  border-radius: 5px;
  font-weight: 700;
}

.client-reviews-header h2 {
  font-size: 1.52rem;
  color: #edeff1;
  font-weight: 800;
  margin-bottom: 7px;
}

.client-reviews-header p {
  color: #eceff1;
  font-size: 0.99rem;
  margin-bottom: 0;
}

.badges-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 36px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 14px;
}

.badge-review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 44px #3fc9ff17, 0 2px 7px #91b2ff19;
  padding: 33px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-height: 170px;
  border-top: 7px solid #3fc9ff;
  transition: box-shadow .18s, transform .16s;
  z-index: 1;
}

.badge-review-card:hover {
  box-shadow: 0 36px 56px #3fc9ff22, 0 12px 30px #91b2ff29;
  transform: translateY(-6px) scale(1.03);
  border-top-color: #188afc;
}

.badge-circle {
  font-size: 1.15rem;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #fff;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px #3fc9ff1b;
  letter-spacing: 1.2px;
}

.badge1 {
  background: linear-gradient(135deg, #3fc9ff 70%, #188afc 100%);
}

.badge2 {
  background: linear-gradient(135deg, #8b6af7 70%, #5d3dd6 100%);
}

.badge3 {
  background: linear-gradient(135deg, #13deb6 70%, #14b596 100%);
}

.badge4 {
  background: linear-gradient(135deg, #fba53c 70%, #e97600 100%);
}

.badge5 {
  background: linear-gradient(135deg, #34ef86 70%, #23c867 100%);
}

.badge6 {
  background: linear-gradient(135deg, #fd6ec2 70%, #d82fac 100%);
}

.badge-quote {
  font-size: 1.07rem;
  color: #176bb7;
  text-align: center;
  line-height: 1.54;
  margin-bottom: 17px;
  position: relative;
  font-style: italic;
}

.badge-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.badge-name {
  font-size: 1.04rem;
  color: #3fc9ff;
  font-weight: 700;
}

.badge-role {
  font-size: 0.93rem;
  color: #4386ba;
}

/* Mobile friendly styles */
@media (max-width:900px) {
  .badges-reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 19px 13px;
  }

  .badge-review-card {
    padding: 19px 8px 10px 8px;
  }

  .badge-circle {
    font-size: 1rem;
    width: 34px;
    height: 34px;
  }
}

@media (max-width:570px) {
  .client-reviews-header h2 {
    font-size: 1.09rem;
  }

  .badges-reviews-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .badge-review-card {
    min-height: 130px;
  }
}

/*** benefits ***/
.app-benefits-features {
  background: linear-gradient(120deg, #f8fbff 87%, #eaf5ff 100%);
  padding: 62px 0 40px 0;
}

.benefits-header {
  max-width: 650px;
  margin: 0 auto 38px auto;
  text-align: center;
}

.benefits-icon {
  display: block;
  font-size: 2.25rem;
  background: linear-gradient(135deg, #3fc9ff 70%, #91b2ff 100%);
  color: #188afc;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin: 0 auto 8px auto;
  box-shadow: 0 2px 12px #91b2ff42;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-header h2 {
  font-size: 1.45rem;
  color: #188afc;
  font-weight: 800;
  margin-bottom: 7px;
}

.benefits-header p {
  color: #4386ba;
  font-size: 0.99rem;
  margin-bottom: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}

.benefit-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 7px 30px #3fc9ff14, 0 2px 12px #91b2ff1c;
  padding: 29px 16px 21px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .18s, transform .15s;
  border-top: 5px solid #3fc9ff;
  min-height: 175px;
}

.benefit-card:hover {
  box-shadow: 0 18px 42px #3fc9ff24, 0 6px 18px #91b2ff2c;
  transform: scale(1.03);
  border-top-color: #188afc;
}

.feature-card-icon {
  font-size: 2rem;
  border-radius: 50%;
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 11px #3fc9ff28;
  width: 39px;
  height: 39px;
}

/* Unique icon colors for each card */
.feature1 {
  background: linear-gradient(135deg, #ffe158, #ffc151 85%);
  color: #ff9800;
}

.feature2 {
  background: linear-gradient(135deg, #91b2ff 85%, #3fc9ff 100%);
  color: #188afc;
}

.feature3 {
  background: linear-gradient(135deg, #bbe2e8 85%, #65daff 100%);
  color: #188afc;
}

.feature4 {
  background: linear-gradient(135deg, #8bd9ff 80%, #76eebb 100%);
  color: #10cab7;
}

.feature5 {
  background: linear-gradient(135deg, #e1eafd 80%, #f3bafd 100%);
  color: #c159d7;
}

.feature6 {
  background: linear-gradient(135deg, #c9f8c7 80%, #41e495 100%);
  color: #2cb379;
}

.benefit-card h3 {
  font-size: 1.09rem;
  font-weight: 700;
  color: #176bb7;
  text-align: center;
  margin: 0 0 8px 0;
}

.benefit-card p {
  font-size: 0.97rem;
  color: #4386ba;
  text-align: center;
  line-height: 1.54;
  margin: 0;
}

/* Mobile friendly */
@media (max-width:900px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }

  .benefit-card {
    padding: 16px 7px 10px 7px;
  }

  .feature-card-icon {
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
  }
}

@media (max-width:570px) {
  .benefits-header h2 {
    font-size: 1.09rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .benefit-card {
    min-height: 110px;
  }

  .feature-card-icon {
    font-size: 1.15rem;
    width: 18px;
    height: 18px;
  }
}
/*** contact section ***/
/*** contact section ***/
.kotech-service-wrapper {
    position: relative;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    padding: 20px 20px 20px 20px;
}

.kotech-service-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #01274e 67%, #022f5e 100%);
    z-index: 0;
}

.kotech-service-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 68px 3vw 42px 4vw;
    display: flex;
    gap: 52px;
    z-index: 2;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.kotech-label {
    font-size: 0.93em;
    text-align: center;
    color: #2c81e9;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    background: #e5f0fc;
    border-radius: 70px;
    padding: 6px 20px;
    margin-bottom: 17px;
    display: inline-block;
}

.kotech-info-side {
    max-width: 480px;
    flex: 1 1 320px;
    background: #fff;
    border-radius: 27px;
    box-shadow: 0 7px 38px #2c81e91a;
    padding: 44px 32px 32px;
    z-index: 2;
}

.kotech-info-side h1 {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 13px;
    color: #27345d;
    /* line-height: 1.22; */
    text-align: center;
}

.kotech-info-side h1 span {
    color: #298fff;
    letter-spacing: 1.5px;
    font-weight: 900;
}

.kotech-intro {
    font-size: 1.15em;
    color: #3e526e;
    line-height: 1.7;
    margin-bottom: 21px;
    padding: 20px 20px 20px 20px;
}

.cta-highlight {
    color: #1971f7;
    font-weight: 700;
    background: #eaffff6b;
    border-radius: 6px;
    padding: 0 2px;
}

.kotech-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.new-features-list li {
    font-size: 1.07em;
    margin-bottom: 9px;
    color: #2881f8;
    font-weight: 600;
    padding-left: 21px;
    position: relative;
}

.new-features-list li:before {
    content: "★";
    color: #ff9527;
    position: absolute;
    left: 0;
    font-size: 1.09em;
}

.kotech-image-block {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.kotech-image-block img {
    width: 91px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 14px #0002;
}

.kotech-contact-side {
    background: #fff;
    flex: 1 1 340px;
    border-radius: 27px;
    box-shadow: 0 7px 38px #2c81e91a;
    padding: 44px 32px 32px;
    min-width: 320px;
    z-index: 2;
}

.kotech-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kotech-contact-form h2 {
    font-size: 1.43em;
    font-weight: 900;
    color: #1971f7;
    margin-bottom: 10px;
}

.form-row {
    width: 100%;
}

.kotech-contact-form input,
.kotech-contact-form select,
.kotech-contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 9px;
    border: 1.4px solid #c0cacb;
    font-size: 1em;
    margin-bottom: 3px;
    transition: border-color 0.18s;
}

.kotech-contact-form input:focus,
.kotech-contact-form select:focus,
.kotech-contact-form textarea:focus {
    border-color: #1971f7;
    outline: none;
}

.kotech-contact-form button {
    background: linear-gradient(90deg, #1971f7 70%, #26d7e0 100%);
    color: #fff;
    border: none;
    border-radius: 13px;
    font-size: 1.13em;
    font-weight: 700;
    padding: 12px 0;
    cursor: pointer;
    box-shadow: 0 3px 12px #1971f71c;
    margin-top: 5px;
    letter-spacing: 0.4px;
    transition: background 0.17s;
}

.kotech-contact-form button:hover {
    background: #ff792e;
}

.contact-brands {
    display: flex;
    gap: 11px;
    margin: 9px 0 2px 0;
    align-items: center;
    flex-wrap: wrap;
}

/* .contact-brands img {
  width: 65px;
  height: auto;
  background: #f9fcff;
  border-radius: 8px;
  padding: 2.5px 2px;
} */
.info-safe {
    color: #2881f8;
    font-weight: 500;
    font-size: 0.96em;
    margin-bottom: 0;
    margin-top: 10px;
    opacity: 0.67;
}

/* @media (max-width: 900px) {
  .kotech-service-container { flex-direction: column; gap: 23px; padding: 23px 8px;}
  .kotech-info-side,.kotech-contact-side { max-width: 99vw; padding: 25px 12px;}
  .kotech-info-side h1 { font-size: 1.45em;}
}
@media (max-width: 600px) {
  .kotech-info-side,.kotech-contact-side { border-radius: 10px;}
  .kotech-image-block img { width: 60px; }
  .kotech-label { font-size: 0.89em; padding: 4px 13px;}
} */
@media (max-width: 600px) {
    .kotech-service-container {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 11px 2px !important;
        align-items: stretch !important;
        min-width: 0 !important;
        box-sizing: border-box;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .kotech-info-side,
    .kotech-contact-side {
        width: 80% !important;
        max-width: 80vw !important;
        min-width: 0 !important;
        margin: 0 0 14px 0 !important;
        border-radius: 7px !important;
        box-shadow: none !important;
        padding: 12px 5px !important;
        box-sizing: border-box !important;
    }

    .kotech-contact-form,
    .kotech-info-side {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* All form elements full width */
    .kotech-contact-form input,
    .kotech-contact-form select,
    .kotech-contact-form textarea,
    .kotech-contact-form button {
        width: 99% !important;
        min-width: 0 !important;
        font-size: 0.98em !important;
    }

    .form-row {
        width: 99% !important;
    }
}