@media(max-width : 767px) {
  .text-anime-style-3 {
    font-size: 10vw !important;
  }
}

/** about section **/
.rnAboutDark_section {
  /* background: linear-gradient(120deg,#12182a 96%, #232b44 100%); */
  background: white;
  padding: 64px 0 44px 0;
}

.rnAboutDark_wrapper {
  display: flex;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  gap: 56px;
  padding: 0 18px;
  flex-wrap: wrap;
}

.rnAboutDark_left {
  flex: 1 1 370px;
  min-width: 260px;
}

.rnAboutDark_icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #0e77ac 70%, #062c5d 100%);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  box-shadow: 0 2px 15px #39b7f798;
}

.rnAboutDark_title {
  font-size: 1.36rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 13px;
}

.rnAboutDark_desc {
  color: #000000;
  font-size: 1.03rem;
  margin-bottom: 22px;
  line-height: 1.65;
}

.rnAboutDark_list {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
  color: #000000;
  font-size: 1rem;
  line-height: 1.66;
}

.rnAboutDark_list li {
  margin-bottom: 8px;
}

.rnAboutDark_right {
  flex: 1 1 280px;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rnAboutDark_imgWrap {
  /* background: #192241; */
  /* border-radius: 19px; */
  /* box-shadow: 0 7px 27px #39b7f726, 0 2px 8px #0052b226; */
  padding: 36px;
  max-width: 400px;
}

.rnAboutDark_img {
  width: 100%;
  max-width: 700px;
  border-radius: 4px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 4px #39b7f780);
}

@media (max-width:900px) {
  .rnAboutDark_wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
  }

  .rnAboutDark_left,
  .rnAboutDark_right {
    min-width: 0;
    width: 100%;
  }

  .rnAboutDark_imgWrap {
    padding: 18px;
    max-width: 300px;
    margin: 0 auto;
  }

  .rnAboutDark_img {
    max-width: 250px;
  }

  .rnAboutDark_title {
    font-size: 1.09rem;
  }

  .rnAboutDark_icon {
    font-size: 1.5rem;
    width: 34px;
    height: 34px;
  }
}

@media (max-width:540px) {
  .rnAboutDark_section {
    padding: 26px 20px 13px 20px;
  }

  .rnAboutDark_wrapper {
    gap: 13px;
    padding: 0 6px;
  }

  .rnAboutDark_title {
    font-size: 1.5rem;
  }

  .rnAboutDark_desc {
    font-size: .93rem;
  }
   .rnAboutDark_imgWrap {
    padding: 18px;
    max-width: 280px;
    margin: 0 auto;
  }
 .rnAboutDark_img {
    max-width: 240px;
  }
  .rnAboutDark_list {
    font-size: .89rem;
  }
}

/*** feature section **/
.rn-features {
  padding: 90px 7%;
  background: linear-gradient(135deg, #f1f6ff, #e8f0ff);
}

.rn-features-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #03133e;
  margin-bottom: 10px;
}

.rn-features-subtitle {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  color: #444;
  font-size: 18px;
  line-height: 1.7;
}

/* ---- Grid ---- */
.rn-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ---- Feature Card ---- */
.rn-feature-card {
  background: rgba(255, 255, 255, 0.70);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  border: 1.4px solid rgba(140, 170, 255, 0.3);
  box-shadow: 0px 10px 30px rgba(0, 50, 255, 0.12);
  transition: 0.4s ease;
  cursor: pointer;
}

/* Hover Animation */
.rn-feature-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 50, 255, 0.18);
}

/* ---- Icon ---- */
.rn-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066ff, #2b8bff);
  margin: 0 auto 18px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0px 8px 20px rgba(0, 80, 255, 0.3);
}

/* ---- Text ---- */
.rn-feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #061a43;
  margin-bottom: 10px;
}

.rn-feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* ---- Scroll Reveal ---- */
.f-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.7s ease-out;
}

.f-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Mobile Responsive ---- */
@media(max-width: 800px) {
  .rn-features-title {
    font-size: 26px;
  }

  .rn-feature-card {
    padding: 28px;
  }

  .rn-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .rn-features {
    padding: 20px 20px;
  }

  .rn-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

/*** why choose us **/
/* New Why Choose Us Section */
.why-us-new {
  padding: 90px 0;
  background: linear-gradient(135deg, #4b2bbf, #1e82ff);
  color: white;
}

.why-container {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Left text */
.why-left {
  flex: 1 1 40%;
}

.why-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-left p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Right floating cards */
.why-right {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  position: relative;
}

/* Glassmorphism Cards */
.why-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Hover Animation */
.why-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 26px;
  }
}

/*** technologies we use ***/

.tech-section {
  background: #00122c;
  padding: 60px 20px;
  text-align: center;
}

.tech-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #fffefe;
  margin-bottom: 10px;
}

.tech-section-subtitle {
  font-size: 16px;
  color: #ebe8e8;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ---- Tech Grid ---- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
}

.tech-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.tech-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}

.tech-card h3 {
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

/* ---- Hover / Animation ---- */
.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/*** Responsive ***/
@media (max-width: 480px) {
  .tech-card {
    width: 100px;
    padding: 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 2fr));
    gap: 20px;
    justify-items: center;
  }

  .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fffefe;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 16px;
    color: #ebe8e8;
    max-width: 600px;
    margin: 0 auto 40px;
  }
}

/** work process **/
.work-process-section {
  background: linear-gradient(135deg, #f9f9fb, #e8eaf0);
  padding: 60px 20px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: #111;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}

/* Timeline Styles */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-fill {
  position: absolute;
  left: 30px;
  width: 6px;
  height: 0;
  background: linear-gradient(to bottom, #ff6b6b, #4f46e5, #00c6ff);
  border-radius: 3px;
  transition: height 0.6s ease;
  z-index: 0;
}

.timeline-step {
  position: relative;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.timeline-step .timeline-dot {
  background: linear-gradient(45deg, #ff6b6b, #f7b42c);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: absolute;
  left: 15px;
  top: 0;
  animation: pulse 2s infinite;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-step.active .timeline-dot {
  transform: scale(1.2);
  box-shadow: 0 0 20px 6px rgba(79, 70, 229, 0.5);
}

.timeline-content {
  margin-left: 70px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
}

.timeline-step.active .timeline-content {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.timeline-content ul {
  padding-left: 20px;
  margin-top: 10px;
}

.timeline-content ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px 8px rgba(255, 107, 107, 0.3);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-fill {
    left: 15px;
  }

  .timeline-step .timeline-dot {
    left: 0;
  }

  .timeline-content {
    margin-left: 60px;
  }
}

@media (max-width: 480px) {
  .timeline-content {
    margin-left: 50px;
    padding: 20px;
  }
}

/*** why us ***/
.why-choose-section {
  padding: 70px 5vw 60px 5vw;
  background: linear-gradient(135deg, #061757 80%, #262657 100%);
  color: #fff;
  text-align: center;
}

.why-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 11px;
  letter-spacing: 0.5px;
}

.why-subtitle {
  font-size: 1rem;
  color: #b0bbcf;
  margin-bottom: 42px;
  letter-spacing: 0.2px;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.why-us-card {
  position: relative;
  min-height: 250px;
  padding: 0;
  border-radius: 22px;
  cursor: pointer;
  background-image: var(--bg), linear-gradient(#252a3f 70%, #1a1f2c 100%);
  background-size: cover;
  background-position: center;
  transition: transform 0.38s cubic-bezier(.39, .53, .52, .86), box-shadow 0.45s cubic-bezier(.39, .53, .62, .93);
  box-shadow: 0 4px 18px #000a2e55;
  overflow: hidden;
  border: 1.5px solid rgba(125, 146, 255, 0.08);
}

.why-us-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 20, 45, 0.60) 60%, rgba(42, 52, 85, 0.62));
  z-index: 1;
  transition: background 0.35s;
  pointer-events: none;
}

.why-card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 36px 24px 28px 24px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: color 0.28s;
}

.why-us-card h3 {
  font-weight: 700;
  font-size: 1.19rem;
  margin: 0 0 11px 0;
  color: #91b3fa;
  text-shadow: 0 1.5px 9px #242c4e4a, 0 0.5px 2px #181b34;
  letter-spacing: 0.3px;
}

.why-us-card p {
  margin: 0;
  font-size: 0.98rem;
  color: #f9fafb;
  letter-spacing: 0.01em;
  line-height: 1.54;
  text-shadow: 0 1.5px 14px #222b5144;
}

/* Hover/Lift Card Animation */
.why-us-card:hover,
.why-card:focus {
  transform: translateY(-17px) scale(1.045) rotate(-1deg);
  box-shadow: 0 14px 44px #2342b08a;
}

.why-us-card:hover::before {
  background: linear-gradient(100deg, rgba(18, 23, 55, 0.77) 53%, rgba(24, 31, 44, 0.60));
}

/* Click active effect */
.why-us-card:active {
  transform: scale(0.97) rotate(-1deg);
}

/* ----- RESPONSIVE MEDIA QUERIES ----- */
@media (max-width: 900px) {
  .why-choose-section {
    padding: 48px 2vw 46px 2vw;
  }

  .why-card-grid {
    gap: 20px;
  }

  .why-card-content {
    padding: 30px 12px 22px 12px;
  }

  .why-title {
    font-size: 1.36rem;
  }

  .why-subtitle {
    font-size: 0.97rem;
  }
}

@media (max-width: 600px) {
  .why-choose-section {
    padding: 28px 2vw 18px 2vw;
  }

  .why-title {
    font-size: 1.5rem;
  }

  .why-card-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .why-card {
    min-height: 155px;
    border-radius: 14px;
  }

  .why-card-content {
    padding: 18px 7px 10px 12px;
    min-height: 112px;
  }

  .why-card h3 {
    font-size: 1.04rem;
  }

  .why-card p {
    font-size: 0.89rem;
  }
}

/** faq section **/
/* FAQ SECTION */
.rn-faq-section {

  padding: 60px 20px;
  background: #00193d;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 768px) {
  .rn-faq-section {
    padding: 70px 170px;
  }
}

.rn-faq-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

@media (min-width: 768px) {
  .rn-faq-heading {
    font-size: 36px;
  }
}

.rn-faq-subtitle {
  text-align: center;
  color: #fdfafa;
  font-size: 14px;
  margin-bottom: 32px;
}

.rn-faq-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.rn-faq-col {
  flex: 1;
  min-width: 100%;
}

@media (min-width: 768px) {
  .rn-faq-col {
    min-width: 320px;
  }
}

.rn-faq-item {
  background: #fff;
  margin-bottom: 16px;
  border: 1.5px solid #dce1e7;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.rn-faq-item:hover {
  border-color: #b7bec8;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

/* FAQ Question Row */
.rn-faq-question {
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-right: 40px;
}

/* PLUS / MINUS ICON */
.rn-faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #444;
  transition: 0.3s ease;
}

/* When open → show minus */
.rn-faq-item.active .rn-faq-question::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

/* ANSWER BOX */
.rn-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* When open */
.rn-faq-item.active .rn-faq-answer {
  max-height: 350px;
  padding: 16px 20px 20px;
}

/*** testimonial **/
/* === React Native Testimonial Section === */

.rn-testimonials {
  padding: 80px 80px;
  background: #f7f8fb;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.rn-testimonial-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.rn-testimonial-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
}

.rn-testimonial-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.rn-testimonial-card {
  width: 330px;
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.rn-testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #4a88ff;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
}

.rn-testimonial-stars {
  font-size: 20px;
  color: #ffb300;
  margin-bottom: 15px;
}

.rn-testimonial-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.rn-client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rn-client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.rn-client-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.rn-client-info span {
  font-size: 13px;
  color: #777;
}

/* === Responsive === */

@media (max-width: 900px) {
  .rn-testimonials {
    padding: 60px 30px;
  }

  .rn-testimonial-card {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .rn-testimonial-title {
    font-size: 26px;
  }

  .rn-testimonial-subtitle {
    font-size: 14px;
  }
}

/*** 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, #f3f6f9 67%, #f0f4f8 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;
  }
}

/*** service section***/
:root {
  --rn-bg: #f7f9fc;
  --rn-card-bg: #ffffff;
  --rn-primary: #2563eb;
  --rn-primary-soft: #e0ecff;
  --rn-text-main: #111827;
  --rn-text-muted: #6b7280;
  --rn-radius-lg: 18px;
  --rn-radius-pill: 999px;
  --rn-shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.09);
  --rn-transition-fast: 0.25s ease;
}

/* Section wrapper */
.rnservices {
  padding: 80px 16px;
  background: radial-gradient(circle at top left, #e0ecff 0, #f7f9fc 45%, #ffffff 100%);
}

.rnservices-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.rnservices-title {
  text-align: center;
  font-size: 2.1rem;
  color: var(--rn-text-main);
  margin-bottom: 8px;
}

.rnservices-subtitle {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px auto;
  color: var(--rn-text-muted);
  font-size: 0.98rem;
}

/* Grid layout */
.rnservices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Card */
.rnservices-card {
  background: var(--rn-card-bg);
  border-radius: var(--rn-radius-lg);
  padding: 24px 22px 26px;
  box-shadow: var(--rn-shadow-soft);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(18px);
  opacity: 0;
  transition:
    transform var(--rn-transition-fast),
    box-shadow var(--rn-transition-fast),
    background var(--rn-transition-fast),
    opacity 0.45s ease;
}

/* subtle gradient border effect on hover */
.rnservices-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.02));
  opacity: 0;
  transition: opacity var(--rn-transition-fast);
  pointer-events: none;
}

/* Icon circle */
.rnservices-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--rn-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rn-primary-soft);
  color: var(--rn-primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition:
    background var(--rn-transition-fast),
    color var(--rn-transition-fast),
    transform var(--rn-transition-fast);
}

/* Text */
.rnservices-card-title {
  font-size: 1.02rem;
  margin-bottom: 8px;
  color: var(--rn-text-main);
}

.rnservices-card-text {
  font-size: 0.92rem;
  color: var(--rn-text-muted);
  line-height: 1.5;
}

/* Hover / focus */
.rnservices-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  background: linear-gradient(145deg, #ffffff 0, #f3f6ff 45%, #e5edff 100%);
}

.rnservices-card:hover::before {
  opacity: 1;
}

.rnservices-card:hover .rnservices-icon {
  background: var(--rn-primary);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
}

/* Entrance animation class (added by JS) */
.rnservices-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .rnservices {
    padding: 64px 16px;
  }

  .rnservices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .rnservices-title {
    font-size: 1.7rem;
  }

  .rnservices-subtitle {
    font-size: 0.94rem;
    margin-bottom: 28px;
  }

  .rnservices-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rnservices-card {
    padding: 22px 18px 24px;
  }
}

@media (max-width: 480px) {
  .rnservices {
    padding: 48px 14px;
  }

  .rnservices-title {
    font-size: 1.5rem;
  }
}