:root {
  --primary: #027095;
  --primary-light: #e5f9ff;
  --navy: #24355b;
  --orange: #e3770a;
  --green: #35e38c;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --services-bg: #d2eef8;
  --text-dark: #04181f;
  --text-gray: #6b7280;
  --font: 'Poppins', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #fff; color: var(--text-dark); overflow-x: hidden; }

/* ======= NAVBAR ======= */
.navbar-main {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 88px;
  gap: 0;
}
.nav-logo img { height: 56px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  margin-left: auto;
  list-style: none; padding: 0; margin-bottom: 0;
}
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  text-decoration: none; transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.btn-consultation {
  background: var(--primary);
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn-consultation-secondry {
  color:var(--primary);
  border: solid 1px #025f7e;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn-consultation:hover, .btn-consultation-secondry:hover { background: #025f7e; transform: translateY(-1px); color: #fff !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }
#mobileMenu {
  display: none;
}

/* ======= HERO ======= */
.hero-section {
  background: var(--light-bg);
  padding: 80px 0 0 0;
  min-height: 630px;
  position: relative;
  overflow: hidden;
}
.hero-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
}
.hero-title .saas { color: var(--primary); }
.hero-title .custom { color: var(--orange); }
.hero-subtitle { font-size: 16px; color: var(--text-gray); margin: 20px 0 32px; line-height: 1.6; }
.btn-free-consult {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--primary); color: #fff;
  border: solid 1px var(--primary); 
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 16px; font-weight: 600; font-family: var(--font);
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-free-consult:hover { background: #025f7e; transform: translateY(-2px); color: #fff; }
.btn-free-consult .btn-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: transform 0.3s;
}
.btn-free-consult:hover .btn-icon { transform: rotate(45deg); }

.btn-free-consult-secondry {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; 
  color: var(--primary);
  border: solid 1px var(--primary); 
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 16px; font-weight: 600; 
  font-family: var(--font);
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-free-consult-secondry .btn-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  transition: transform 0.3s;
}
.hero-image-col { display: flex; align-items: flex-end; justify-content: center; }
.hero-illustration { width: 100%; max-width: 700px; display: block; }

/* ======= FORM SECTION (What Are You Looking To Build) ======= */
.form-section { background: #fff; padding: 90px 0; }
.section-heading { font-size: 42px; font-weight: 600; color: var(--navy); text-align: center; line-height: 1.2; }
.section-sub { font-size: 18px; color: var(--text-gray); text-align: center; margin-top: 10px; }
.form-left-img { width: 100%; max-width: 460px; }
.form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-section-label {
  font-size: 11px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 18px; display: block;
}
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field label {
  font-size: 12px; font-weight: 600; color: #374151;
  display: block; margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1.5px solid #e5e7eb; border-radius: 8px;
  padding: 11px 14px; font-size: 14px; font-family: var(--font);
  color: var(--text-dark); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2,112,149,0.12);
}
.form-field input.is-invalid, .form-field select.is-invalid, .form-field textarea.is-invalid {
  border-color: #ef4444;
}
.field-error { font-size: 11px; color: #ef4444; margin-top: 4px; display: none; }
.form-field input.is-invalid + .field-error,
.form-field select.is-invalid + .field-error,
.form-field textarea.is-invalid + .field-error { display: block; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9ca3af; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-field textarea { resize: none; min-height: 90px; }
.btn-submit-main {
  width: 100%; background: var(--primary); color: #fff;
  border: none; border-radius: 8px; padding: 14px;
  font-size: 16px; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
}
.btn-submit-main:hover { background: #025f7e; }
.form-privacy-note {
  font-size: 12px; color: #9ca3af; text-align: center; margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-privacy-note i { color: #6b7280; }

/* ======= ENGINEERING EXCELLENCE (light blue bg) ======= */
.engineering-section { background: var(--services-bg); padding: 80px 0; }
.eng-title { font-size: 42px; font-weight: 600; color: var(--navy); text-align: center; }
.eng-sub { font-size: 17px; color: var(--text-gray); text-align: center; margin-top: 10px; margin-bottom: 50px; }
.eng-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.eng-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.eng-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
  border: solid 1px #C7C6C6;
}
.eng-card-icon img {
  width: 60%;
}
.eng-card h5 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.eng-card p { font-size: 14px; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* ======= TECH STACK ======= */
.tech-section { background: #fff; padding: 80px 0; }
.tech-section .section-heading { text-align: center; }
.tech-section .section-sub { text-align: center; }
.tech-img { width: 100%; max-width: 100%; border-radius: 16px; }

/* ======= REAL RESULTS (CASE STUDIES) ======= */
.cases-section { background: #fff; padding: 80px 0; }
.cases-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; }
.startups-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(2,112,149,0.08); border-radius: 20px;
  padding: 6px 14px; font-size: 13px; font-weight: 600;
  color: var(--primary); margin-bottom: 10px;
}
.cases-title { font-size: 40px; font-weight: 600; color: var(--navy); line-height: 1.2; }
.cases-sub { font-size: 16px; color: var(--text-gray); margin-top: 10px; max-width: 540px; }
.case-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.case-card-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f3f4f6;
}
.case-cat {
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
  background: #e7f9ff;
  border-radius: 10px;
  padding: 0.1rem 0.5rem;
   color: var(--primary); 
}
.case-cat i { font-size: 12px; color: var(--primary); }
.case-card-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.case-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  border-radius: 4px; padding: 3px 10px; margin-right: 6px; margin-bottom: 6px;
}
.case-tag-green { background: rgba(53,227,140,0.12); color: #059669; }
.case-card-body { padding: 20px 24px; }
.case-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.case-label-problem { color: #ef4444; }
.case-label-solution { color: #059669; }
.case-card-body p { font-size: 14px; color: var(--text-gray); line-height: 1.6; margin-bottom: 16px; }
.case-tech-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.case-tech-badge {
  font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 4px;
  border: 1px solid; 
}
.badge-blue { background: rgba(2,112,149,0.08); color: var(--primary); border-color: rgba(2,112,149,0.2); }
.badge-green { background: rgba(5,150,105,0.08); color: #059669; border-color: rgba(5,150,105,0.2); }
.badge-orange { background: rgba(227,119,10,0.08); color: var(--orange); border-color: rgba(227,119,10,0.2); }
.badge-purple { background: rgba(124,58,237,0.08); color: #7c3aed; border-color: rgba(124,58,237,0.2); }
.badge-red { background: rgba(239,68,68,0.08); color: #ef4444; border-color: rgba(239,68,68,0.2); }
.case-weeks { font-size: 12px; color: var(--primary); font-weight: 600; margin-top: 10px; display: flex; align-items: center; gap: 5px; }

/* ======= FROM IDEA TO LAUNCH (Services/Features) ======= */
.idea-section { background: var(--services-bg); padding: 80px 0; }
.idea-title { font-size: 42px; font-weight: 600; color: var(--navy); text-align: center; }
.idea-sub { font-size: 17px; color: var(--text-gray); text-align: center; margin-top: 10px; margin-bottom: 50px; }
.idea-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.idea-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.idea-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.idea-card h5 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.idea-card p { font-size: 14px; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* ======= PROCESS (From Idea to Launch - steps) ======= */
.process-section { background: #fff; padding: 80px 0; }
.process-title { font-size: 42px; font-weight: 600; color: var(--navy); text-align: center; }
.process-sub { font-size: 17px; color: var(--text-gray); text-align: center; margin-top: 10px; margin-bottom: 50px; }
.process-img { width: 100%; max-width: 100%; border-radius: 16px; }

/* ======= TESTIMONIALS ======= */
.testimonials-section { background: #fff; padding: 80px 0; }
.test-title { font-size: 42px; font-weight: 600; color: var(--text-dark); text-align: center; }
.test-sub { font-size: 17px; color: var(--text-gray); text-align: center; margin-top: 10px; margin-bottom: 50px; max-width: 680px; margin-inline: auto; }
.test-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  margin: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}
.test-stars { color: var(--orange); font-size: 16px; margin-bottom: 16px; }
.test-quote { font-size: 15px; color: #374151; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.test-divider { border: none; border-top: 1px solid #f3f4f6; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 50px !important; height: 50px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.test-avatar-placeholder {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.test-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.test-role { font-size: 12px; color: var(--text-gray); margin-top: 2px; }
.test-verified {
  margin-left: auto;
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: #059669;
}
/* Owl dots */
.owl-theme .owl-dots .owl-dot span { background: #d1d5db !important; }
.owl-theme .owl-dots .owl-dot.active span { background: var(--primary) !important; width: 24px !important; border-radius: 4px !important; }

/* ======= FAQ ======= */
.faq-section { background: var(--light-bg); padding: 80px 0; }
.faq-title { font-size: 42px; font-weight: 600; color: var(--navy); text-align: center; margin-bottom: 50px; }
.faq-item {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  padding: 18px 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; font-weight: 600; color: var(--text-dark);
  user-select: none; transition: background 0.2s;
}
.faq-q:hover { background: #f9fafb; }
.faq-chevron {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid #d1d5db;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #6b7280; flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-chevron { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px; font-size: 15px; color: var(--text-gray); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ======= FOOTER ======= */
.footer-main {
  background: var(--navy);
  padding: 50px 0 0 0;
}
.footer-logo img { height: 52px; width: auto; filter: brightness(10); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-links-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-link-list { list-style: none; padding: 0; }
.footer-link-list li { margin-bottom: 10px; }
.footer-link-list a { color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-link-list a:hover { color: #fff; }
.footer-bottom {
  background: #04181f;
  padding: 20px 0;
  margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ======= ORBIT ANIMATION ======= */
.orbit-section { background: var(--light-bg); padding: 80px 0; overflow: hidden; }
.orbit-wrap { position: relative; width: 480px; height: 480px; margin: 0 auto; }
.orbit-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 180px; height: 100px;
  background: #fff;
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 5; text-align: center; padding: 16px;
}
.orbit-center-title { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.orbit-center-sub { font-size: 11px; color: var(--text-gray); }
.orbit-center-badge {
  display: flex; align-items: center; gap: 6px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 6px; padding: 5px 10px; margin-top: 8px;
  font-size: 11px; font-weight: 600; color: #059669;
}
.orbit-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(2,112,149,0.2);
}
.r1 { width: 240px; height: 240px; animation: spin 18s linear infinite; }
.r2 { width: 380px; height: 380px; animation: spinR 28s linear infinite; }
.r3 { width: 480px; height: 480px; animation: spin 38s linear infinite; }

@keyframes spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes spinR { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(-360deg); } }

.orbit-dot {
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  font-size: 9px; font-weight: 700; color: var(--text-dark);
  text-align: center; flex-direction: column;
  transition: transform 0.2s;
  cursor: pointer;
}
.orbit-dot:hover { transform: translate(-50%,-50%) scale(1.15) !important; }
.orbit-dot i { font-size: 18px; margin-bottom: 2px; }
/* Counter-rotate so dots stay upright */
.r1 .orbit-dot { animation: spinR 18s linear infinite; }
.r2 .orbit-dot { animation: spin 28s linear infinite; }
.r3 .orbit-dot { animation: spinR 38s linear infinite; }

/* Tech dot colors */
.dot-react { color: #61DAFB; }
.dot-laravel { color: #FF4433; }
.dot-node { color: #539E4B; }
.dot-aws { color: #FF9900; }
.dot-openai { color: #10A37F; }
.dot-docker { color: #0db7ed; }
.dot-mysql { color: #00758F; }
.dot-redis { color: #DC382D; }
.dot-ts { color: #3178C6; }
.dot-vue { color: #41B883; }
.dot-nextjs { color: #000; }

/* Positioning on r1 (r=120) */
.d-r1-0 { transform: translate(calc(-50% + 120px), -50%); }
.d-r1-1 { transform: translate(calc(-50% - 120px), -50%); }
/* Positioning on r2 (r=190) */
.d-r2-0 { transform: translate(calc(-50% + 190px), -50%); }
.d-r2-1 { transform: translate(calc(-50%), calc(-50% - 190px)); }
.d-r2-2 { transform: translate(calc(-50% - 190px), -50%); }
.d-r2-3 { transform: translate(calc(-50%), calc(-50% + 190px)); }
/* Positioning on r3 (r=240) */
.d-r3-0 { transform: translate(calc(-50% + 240px), -50%); }
.d-r3-1 { transform: translate(calc(-50% + 170px), calc(-50% - 170px)); }
.d-r3-2 { transform: translate(calc(-50%), calc(-50% - 240px)); }
.d-r3-3 { transform: translate(calc(-50% - 170px), calc(-50% - 170px)); }
.d-r3-4 { transform: translate(calc(-50% - 240px), -50%); }

/* ======= MARQUEE ======= */
.marquee-section { background: #fff; padding: 40px 0; overflow: hidden; border-top: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6; }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(90deg,#fff,transparent); z-index: 2; }
.marquee-wrap::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 80px; background: linear-gradient(-90deg,#fff,transparent); z-index: 2; }
.marquee-track { display: flex; gap: 16px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-chip {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid #e5e7eb; border-radius: 100px;
  padding: 10px 20px; font-size: 14px; font-weight: 600;
  color: var(--text-dark); white-space: nowrap; background: #fff;
  transition: border-color 0.2s;
}
.marquee-chip:hover { border-color: var(--primary); }
.marquee-chip i { font-size: 18px; }

/* ======= AOS & UTILS ======= */
.text-primary-c { color: var(--primary) !important; }
.bg-primary-c { background: var(--primary) !important; }


.services-wrapper{
  width:100%;
  background-color: #F5F6FA;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.service-card{
  background:#fff;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.04),
    0 2px 8px rgba(0,0,0,0.03);
  transition:0.3s ease;
}

.service-card:hover{
  transform:translateY(-5px);
}

.icon-box{
  width:58px;
  height:58px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:22px;
}

.service-title{
  font-size:30px;
  font-weight:700;
  color:#13233d;
  margin-bottom:12px;
}

.underline{
  width:55px;
  height:4px;
  border-radius:10px;
  margin-bottom:18px;
}

.service-desc{
  color:#6b7280;
  font-size:16px;
  line-height:1.7;
  margin-bottom:24px;
}

.service-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.service-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-radius:12px;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
  cursor:pointer;
}

.service-item:hover{
  transform:translateX(4px);
}

.left{
  display:flex;
  align-items:center;
  gap:10px;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
}

/* Frontend */
.frontend .icon-box{
  background:#eef4ff;
  color:#4f7cff;
}

.frontend .underline{
  background:#4f7cff;
}

.frontend .service-item{
  background:#f7faff;
  color:#4f7cff;
  border:1px solid #dbe8ff;
}

.frontend .dot{
  background:#4f7cff;
}

/* Backend */
.backend .icon-box{
  background:#ecfff3;
  color:#27c56d;
}

.backend .underline{
  background:#27c56d;
}

.backend .service-item{
  background:#f5fff8;
  color:#27c56d;
  border:1px solid #d8f7e5;
}

.backend .dot{
  background:#27c56d;
}

/* DevOps */
.devops .icon-box{
  background:#fff6ea;
  color:#f59e0b;
}

.devops .underline{
  background:#f59e0b;
}

.devops .service-item{
  background:#fffaf2;
  color:#f59e0b;
  border:1px solid #ffe8bf;
}

.devops .dot{
  background:#f59e0b;
}

/* AI */
.ai .icon-box{
  background:#fff1f2;
  color:#ff4d5e;
}

.ai .underline{
  background:#ff4d5e;
}

.ai .service-item{
  background:#fff7f8;
  color:#ff4d5e;
  border:1px solid #ffd6db;
}

.ai .dot{
  background:#ff4d5e;
}

@media(max-width:768px){
  .service-title{
    font-size:26px;
  }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1199px) {
  .hero-title { font-size: 48px; }
  .orbit-wrap { width: 380px; height: 380px; }
  .r1 { width: 190px !important; height: 190px !important; }
  .r2 { width: 300px !important; height: 300px !important; }
  .r3 { width: 380px !important; height: 380px !important; }
  .d-r1-0 { transform: translate(calc(-50% + 95px), -50%) !important; }
  .d-r1-1 { transform: translate(calc(-50% - 95px), -50%) !important; }
  .d-r2-0 { transform: translate(calc(-50% + 150px), -50%) !important; }
  .d-r2-1 { transform: translate(-50%, calc(-50% - 150px)) !important; }
  .d-r2-2 { transform: translate(calc(-50% - 150px), -50%) !important; }
  .d-r2-3 { transform: translate(-50%, calc(-50% + 150px)) !important; }
  .d-r3-0 { transform: translate(calc(-50% + 190px), -50%) !important; }
  .d-r3-1 { transform: translate(calc(-50% + 134px), calc(-50% - 134px)) !important; }
  .d-r3-2 { transform: translate(-50%, calc(-50% - 190px)) !important; }
  .d-r3-3 { transform: translate(calc(-50% - 134px), calc(-50% - 134px)) !important; }
  .d-r3-4 { transform: translate(calc(-50% - 190px), -50%) !important; }
}
@media (max-width: 991px) {
  .hero-title { font-size: 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: none; flex-direction: column; gap: 2px; background: #fff; border-top: 1px solid #f3f4f6; padding: 16px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { display: block; padding: 10px 14px; font-size: 15px; font-weight: 600; color: var(--text-dark); text-decoration: none; border-radius: 8px; }
  .mobile-menu a:hover { background: #f3f4f6; }
  .orbit-wrap { width: 320px; height: 320px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 32px; }
  .section-heading, .eng-title, .idea-title, .process-title, .test-title, .faq-title, .cases-title { font-size: 28px; }
  .hero-section { padding: 60px 0 0; }
  .form-row-grid, .form-row-grid-3 { grid-template-columns: 1fr; }
  .cases-header { flex-direction: column; gap: 20px; }
}