@media (max-width : 768px) {
  .text-anime-style-3 {
    font-size: 1.8rem !important;
  }
}

/* html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #bac2cf;
  color: #222;
} */
/* 
.mobile-app-section {
  padding: 5vw 0; */
/* background: linear-gradient(100deg, #4864b7 75%, #326ed5 100%); */
/* background: linear-gradient(120deg, #fefeff 70%, #d4d6d8 100%);
  color: #fff;
  overflow: hidden;
} */
.mobile-app-section {
  padding: 5vw 120px;
  background: linear-gradient(100deg, #b3c0e5 75%, #c4cdf1 100%);
  color: #10719b;
  overflow: hidden;
}

/* MAIN CONTAINER */
.md-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 90vw;
  margin: 0 auto;
  gap: 3vw;
  width: 100%;
  position: relative;
  z-index: 1;
}

.left {
  flex: 1 1 400px;
  min-width: 340px;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.title span {
  background: linear-gradient(90deg, #ffaa00, #1fffa5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desc {
  font-size: 1.14rem;
  margin-bottom: 25px;
  color: #000c1b;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #0ef;
  border-radius: 50%;
  margin-right: 12px;
}

.stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stat-card {
  background: #191d23;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 2px 14px #a7aebf88;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 100px;
  width: max-content;
  margin-bottom: 12px;
  border: 1px solid #23272f;
  transition: transform 0.2s;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 4px 18px #d6e2df65;
}

.stat-title {
  font-size: .93rem;
  color: #99bbbb;
  margin-bottom: 2px;
  line-height: 1.3;
  font-weight: 500;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: #39ffbe;
  line-height: 1.3;
}

/* Right side phone mockups */
.right {
  flex: 1 1 400px;
  min-width: 340px;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Phone Mockup Cards */
.phone-mockup {
  position: relative;
  width: 230px;
  min-width: 170px;
  border-radius: 28px;
  background: #14161b;
  box-shadow: 0 0 64px #d3d8d8aa;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
  gap: 18px;
  z-index: 2;
}

.app-card {
  background: #191f26;
  border-radius: 14px;
  padding: 10px 18px;
  margin: 6px 0;
  font-size: 1.01rem;
  box-shadow: 0 3px 16px #0c3cdb55;
  color: #fff;
  transition: transform 0.32s, box-shadow 0.32s;
  cursor: pointer;
  min-width: 110px;
  max-width: 170px;
  text-align: center;
  word-break: break-all;
  animation: fadeInCard 0.7s;
}

.app-card:hover {
  transform: translateY(-10px) scale(1.04) rotate(-4deg);
  box-shadow: 0 8px 54px #1466ff55, 0 2px 14px #265cff;
}

.app-card.glow {
  box-shadow: 0 0 20px #07b8e4cc, 0 2px 12px #0bb;
}

.app-card.purple {
  background: linear-gradient(92deg, #532dcc 40%, #7541fa 90%);
}

.app-card.teal {
  background: linear-gradient(92deg, #20ecaa 30%, #35b7fd 75%);
}

.app-card:hover {
  transform: translateY(-9px) scale(1.055) rotate(-3deg);
  box-shadow: 0 8px 40px #144fff99, 0 2px 17px #2663ff;
}

.planet-bg {
  position: absolute;
  z-index: 1;
  left: 50px;
  top: 60px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #176fcf33 34%, #111c2c00 60%);
  border-radius: 50%;
  filter: blur(18px);
  animation: planetMove 13s infinite alternate;
}

@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(1.08);
  }

  90% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

@keyframes planetMove {
  0% {
    left: 50px;
  }

  100% {
    left: 0px;
  }
}

@media only screen and (max-width: 900px) {
  .md-container {
    max-width: 98vw;
    padding: 20px 10px 20px 10px;
  }

  .left,
  .right {
    min-width: 240px;
    width: 98%;
  }

  .phone-mockup {
    margin: 34px auto 0;
  }

  .planet-bg {
    left: 10px;
    top: 90px;
  }
}

@media only screen and (max-width: 600px) {
  .md-container {
    max-width: 98vw;
    padding: 20px 10px 20px 10px;
  }

  .left,
  .right {
    min-width: 200px;
    width: 98%;
  }

  .phone-mockup {
    width: 200px;
  }

  .stats {
    gap: 4px;
    flex-wrap: wrap;
  }

  .stat-card {
    min-width: 80px;
  }

  .app-card {
    align-items: center;
  }

  .app-card {
    padding: 11px 5px;
  }
}

/**multi-platform-services**/
.multi-platform-services {
  padding: 52px 120px;
  background: linear-gradient(120deg, #fefeff 70%, #d4d6d8 100%);
  color: black;
}

.mps-container {
  display: flex;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: auto;
  gap: 32px;
  justify-content: center !important;
  align-items: center;
  padding: 0 20px;
}

.left-content {
  flex: 1 1 360px;
  min-width: 280px;
}

.main-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: .4px;
  line-height: 1.18;
}

.left-content p {
  font-size: 1.14rem;
  margin-bottom: 24px;
  color: #067ed9;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-points li {
  margin-bottom: 8px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
}

.service-points li span {
  margin-right: 10px;
  color: #0ef;
  font-size: 1.22rem;
}

.right-platforms {
  flex: 1 1 500px;
  /* min-width: 280px; */
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: flex-end;
}

.platform-card {
  background: #181f2b;
  border-radius: 15px;
  /* min-width: 185px;
  max-width: 198px; */
  padding: 28px 14px;
  text-align: center;
  box-shadow: 0 5px 22px #b2e6d82d;
  margin-bottom: 10px;
  transition: .4s;
  position: relative;
  top: 30px;
  opacity: 0;
  animation: fadeInUp 0.9s forwards;
}

.platform-card img {
  width: 45px;
  height: 45px;
  margin-bottom: 11px;
}

.platform-card h3 {
  font-size: 1.12rem;
  margin: 8px 0 6px;
  color: white;
}

.platform-card span {
  font-size: 0.95rem;
  color: #94e3ff;
}

.platform-card:hover {
  transform: translateY(-12px) scale(1.07) rotate(-3deg);
  box-shadow: 0 13px 44px #9da3bf, 0 0 24px #9ea3ca55;
  background: linear-gradient(107deg, #0e2447cb 60%, #021342a1 30%);
}

/* DELAY ANIMATION */
.platform-card.android {
  animation-delay: 0.2s;
}

.platform-card.ios {
  animation-delay: 0.4s;
}

.platform-card.hybrid {
  animation-delay: 0.6s;
}

.platform-card.enterprise {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    top: 38px;
  }

  80% {
    opacity: 0.85;
    top: 14px;
  }

  100% {
    opacity: 1;
    top: 0;
  }
}

/* ✅ TABLET FIX */
@media (max-width: 900px) {
  .mps-container {
    flex-direction: column;
    padding: 0 16px;
  }

  .right-platforms {
    justify-content: center !important;
    /* ✅ FIXED */
  }
}

/* ✅ MOBILE FIX */
@media (max-width: 600px) {
  .mobile-app-section {
    padding: 20px 10px 20px 10px;
  }

  .mps-container {
    flex-direction: column;
    gap: 20px;
    padding: 12px 6px;
    align-items: stretch;
  }

  .left-content,
  .right-platforms {
    min-width: 0;
    width: 100%;
    flex-basis: 100%;
    margin: 0;
    padding: 4px 8px 5px 5px;
  }

  .right-platforms {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .platform-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 13px 0;
    min-width: unset;
  }

  .main-heading {
    font-size: 8vw;
    margin-bottom: 14px;
    text-align: center;
  }

  .left-content p,
  .service-points li,
  .service-points li span {
    font-size: 0.94rem;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .mps-container {
    padding: 8px 20px 15px 7px;
  }

  .multi-platform-services {
    padding: 12px 0;
  }

  .main-heading {
    font-size: 8vw;
    text-align: center;
  }
}

/***Mobile App Solutions***/

.section-wrapper {
  width: 100%;
  padding: 60px 90px;
  background-color: rgb(218, 218, 232);
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 40px;
  color: #555;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category-card {
  width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: 0.3s;
  border-left: 6px solid transparent;
}

.category-card:hover {
  transform: translateY(-6px);
  border-left: 6px solid #ff6b35;
}

.category-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.category-card p {
  color: #666;
  font-size: 14px;
}

/* Content Section */
.content-box {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}

.content-text {
  flex: 1;
  min-width: 250px;
  /* ✅ fixed overflow issue */
}

.content-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.content-text p {
  color: #555;
  line-height: 1.7;
}

.content-img {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.content-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ✅ TABLET FIX */
@media(max-width: 768px) {

  .section-wrapper {
    padding: 24px 46px 36px 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .category-card {
    width: 48%;
    /* ✅ evenly fits 2 per row */
  }

  .content-text h2 {
    font-weight: bold;
  }

  .content-box {
    flex-direction: column;
    /* ✅ stack content */
    text-align: center;
  }

  .category-card p {
    text-align: center;
  }

  .content-text {
    min-width: 100%;
    /* ✅ full width */
    padding: 0 10px;
  }

  .category-card h3 {
    text-align: center;
  }

  .content-img img {
    width: 85%;
  }
}

/* ✅ MOBILE FIX */

@media (max-width: 480px) {
  .section-wrapper {
    padding: 25px 40px 20px 28px;
  }


  .category-card {
    width: 100%;

  }

  .content-text h2 {
    font-weight: bold;
  }

  .content-box {
    flex-direction: column;
    text-align: center;
  }

  .content-text {
    min-width: 100%;
  }

  .category-card h3 {
    text-align: center;
  }

  .content-img img {
    width: 75%;
  }

  .category-card p {
    text-align: center;
  }

  .section-wrapper {
    padding: 25px 30px 20px 15px;
  }
}

/*** mobile app development why choose section ****/
.mobile-choose-section {
  background: #0d1724;
  padding: 50px 90px;
}

.mobile-section-heading {
  text-align: center;
  color: #fff;
  font-size: 2em;
  margin-bottom: 50px;
  font-weight: 700;
}

.mobile-section-content {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.mobile-side-image {
  flex: 1.2;
  background: url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?q=80&w=2070&auto=format&fit=crop') no-repeat center center;
  background-size: cover;
  min-height: 300px;
  min-width: 340px;
  border-radius: 12px;
  box-shadow: 0 0 40px #15355940;
}

/* card container */
.mobile-cards-row {
  display: flex;
  flex: 2;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  align-items: stretch;
}

/* card box */
.mobile-card {
  background: #1d2531;
  color: #fff;
  border-radius: 20px;
  padding: 28px 21px;
  box-shadow: 0 6px 35px #03091422;
  width: 350px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.8px solid #191e24;
}

/* text styling */
.mobile-card h3 {
  margin-bottom: 12px;
  font-size: 1.19em;
  font-weight: 600;
  color: #f1f5fc;
}

.mobile-card p {
  color: #bbcbe9;
  line-height: 1.7;
}

/* hover effect */
.mobile-card:hover {
  transform: translateY(-6px) scale(1.025);
  border-color: #2666f6;
  box-shadow: 0 10px 40px #2666f699;
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-choose-section {
    padding: 30px 22px 30px 8px;
  }

  .mobile-section-content {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    max-width: 99vw;
  }

  .mobile-side-image {
    min-width: 70vw;
    min-height: 222px;
    width: 80vw;
    margin-bottom: 15px;
  }

  .mobile-cards-row {
    flex-direction: column;
    align-items: center;
  }

  .mobile-card {
    width: 97vw;
    max-width: 250px;
  }

  .mobile-section-heading {
    font-size: 1.3em;
    margin-bottom: 25px;
  }

}

/****============================
 Indutries-we-serve
 ========================== **/

/* Section Base */
.industries-section1 {
  background-color: #142850;
  color: #fff;
  padding: 80px 20px;
  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;
  }
}

/**** process we follow **/


.timeline-process {
  background: #f7fafd;
  /* padding: 62px 0; */
}

.timeline-container {
  max-width: 1060px;
  background: #fff;
  margin: auto;
  border-radius: 25px;
  box-shadow: 0 12px 44px #e7eef79c;
  display: flex;
  gap: 78px;
  align-items: flex-start;
  padding: 0;
  overflow: hidden;
}

.timeline-image {
  flex: 0 0 410px;
  background: #eaf0fa;
  display: flex;
  align-items: center;
  justify-content: center;
   padding: 20px 20px 11px 5px;
  border-right: 2px solid #dde7f2;
  min-height: 770px;
  /* margin-top: 230px; */
}

.timeline-image img {
  width: 800px;
  height: 300px;
  max-width: 100%;
  /* border-radius: 21px; */
  /* box-shadow: 0 8px 34px #b0bedb36; */
  /* border: 4px solid #f3f3fd; */
  padding: 9px 16px 30px 40px;
}

.timeline-content {
  flex: 1;
  padding: 44px 30px;
}

.timeline-content h2 {
  color: #1c2137;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 38px;
  text-shadow: 0 1px 0 #ededff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 19px;
  margin-bottom: 12px;
  background: #f8fafe;
  border-radius: 14px;
  box-shadow: 0 5px 18px #02398dd5;
  padding: 18px 18px 18px 0;
  border-left: 6px solid #1b2350;
  /* Dark accent */
}

.timeline-marker {
  width: 46px;
  height: 46px;
  background: #1b2350;
  color: #fff;
  border-radius: 50%;
  font-size: 1.33rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px #223d82d3;
  margin-right: 10px;
  border: 4px solid #f5f7fc;
  flex-shrink: 0;
}

.timeline-details h3 {
  margin: 0 0 8px 0;
  color: #131728;
  font-weight: 700;
  font-size: 1.11rem;
}

.timeline-details ul {
  margin: 0;
  padding-left: 18px;
  color: #2b3454;
  font-size: 0.98rem;
}

.timeline-details ul li {
  margin-bottom: 3px;
  list-style: disc;
}

.timeline-details p {
  margin: 0;
  color: #3a436b;
  font-size: 1.03rem;
}

/* Responsive */
@media (max-width: 900px) {
  .timeline-container {
    flex-direction: column;
    gap: 0;
    border-radius: 16px;
  }

  .timeline-image {
    border-right: none;
    border-bottom: 2px solid #1b2350;
    min-height: unset;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 0;
  }

  .timeline-content {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .timeline-image {
    padding: 15px;
    justify-content: center;
  }
.timeline-content h2 {
  color: #1c2137;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 38px;
  text-shadow: 0 1px 0 #ededff;
}
  .timeline-image img {
    width: 100%;
    max-width: 260px;
    height: auto;
    padding: 0;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-marker {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/*** 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) {
  @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;
    }
  }

}

/** faq section **/
.mobile-faq-section {
  background: #eef6fd;
  padding: 30px 19px 30px 5px;
}

.mobile-faq-heading {
  text-align: center;
  font-size: 2em;
  color: #05185b;
  font-weight: 700;
  margin-bottom: 44px;
}

.mobile-faq-columns {
  display: flex;
  gap: 54px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-faq-col {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.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;
}

.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;
}

.mobile-faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 1.3em;
  color: #14a2ff;
  font-weight: 700;
}

.mobile-faq-item.open .mobile-faq-question {
  background: #f2f8ff;
}

.mobile-faq-item.open .mobile-faq-question::after {
  content: "-";
  color: #f74e54;
}

.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;
}

.mobile-faq-item.open .mobile-faq-answer {
  max-height: 500px;
  padding: 12px 22px 22px 22px;
}

@media (max-width: 900px) {
  .mobile-faq-columns {
    flex-direction: column;
    gap: 21px;
    max-width: 99vw;
  }

  .mobile-faq-col {
    gap: 14px;
  }

  .mobile-faq-item {
    font-size: 0.98em;
  }

  .mobile-faq-heading {
    font-size: 1.28em;
    margin-bottom: 14px;
  }
}