:root {
  --bg-body: #050505;
  --bg-card: #0F0F0F;
  --primary: #D4AF37;
  --primary-dark: #b5902c;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --border: rgba(255,255,255,0.08);
  --glass: rgba(10, 10, 10, 0.9);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: var(--bg-body);
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

.material-symbols-outlined {
  vertical-align: middle;
  font-size: 20px;
  color: #d4af37;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.top-bar {
  background-color: #000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 8px 0;
  font-size: 12px;
  color: #888;
  position: relative;
  z-index: 1002;
  display: block;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 20px;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.top-contact a:hover {
  color: var(--primary);
}

.top-contact span.material-symbols-outlined {
  font-size: 16px;
  color: var(--primary);
}

.top-social {
  display: flex;
  gap: 15px;
}

.top-social a:hover {
  color: var(--primary);
}

.header-main {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  transition: 0.3s;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 1px;
  white-space: nowrap;
  margin-right: 20px;
}

.logo span {
  color: var(--primary);
}

.desktop-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  transition: 0.3s;
}

.lang-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.lang-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lang-dropdown:hover .lang-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.lang-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  font-size: 13px;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lang-content a:last-child {
  border-bottom: none;
}

.lang-content a:hover {
  background: #1a1a1a;
  color: var(--primary);
}

.btn-whatsapp-theme {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-whatsapp-theme:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1005;
  padding: 5px;
  width: 35px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  display: block;
  border-radius: 2px;
}

.hamburger:hover span {
  background: var(--primary);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #080808;
  z-index: 1004;
  padding: 80px 30px 30px;
  transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid #222;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  overflow-y: auto;
}

.mobile-overlay.active {
  right: 0;
}

.offcanvas-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.offcanvas-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-link {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #1a1a1a;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-link .material-symbols-outlined {
  color: var(--primary);
  font-size: 22px;
}

.mobile-link:hover {
  color: var(--primary);
  padding-left: 10px;
  border-color: var(--primary);
}

.offcanvas-contact {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid #222;
}

.offcanvas-title {
  font-size: 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #aaa;
  font-size: 14px;
}

.contact-row .material-symbols-outlined {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1003;
  display: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.backdrop.active {
  display: block;
}

section {
  padding: 100px 0;
  width: 100%;
}
.page-content-wrapper {
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.hero {
  padding-top: 80px;
  padding-bottom: 100px;
  background: radial-gradient(circle at 70% 30%, #1a1505 0%, #050505 60%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.7;
}

.highlight-text {
  background-color: #1a1a1a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid #333;
}

.dual-btn-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: fit-content;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-left {
  background: #111;
  color: #fff;
  padding: 16px 40px 16px 25px;
  border-radius: 6px 0 0 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #333;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-left:hover {
  background: #222;
}

.white {
  color: #ffffff;
}


.btn-right {
  background: #EF4444;
  color: #fff;
  padding: 16px 25px 16px 40px;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #EF4444;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-right:hover {
  background: #dc2626;
}

.btn-or-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  border: 4px solid #050505;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-slider-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  width: 100%;
}

.hero-slider-box img {
  width: 100%;
  height: auto;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 15px;
  color: #fff;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  padding: 0 10px;
}

.section-tag {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 25px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  background: #111;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--border);
}

.service-icon .material-symbols-outlined {
  font-size: 32px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.about-img img {
  border-radius: 16px;
  border: 1px solid var(--border);
  width: 100%;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-weight: 500;
  font-size: 14px;
}

.about-item span {
  color: var(--primary);
  font-size: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 100%;
}

.why-card {
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.why-card:hover {
  border-color: var(--primary);
}

.why-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.why-card h3 span {
  color: var(--primary);
  font-size: 24px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-container {
  background: #080808;
  border-radius: 24px;
  padding: 60px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.process-step {
  display: flex;
  gap: 20px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--primary);
  line-height: 0.8;
  opacity: 0.4;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}

.step-content p {
  color: var(--text-muted);
  font-size: 14px;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  width: 100%;
}

.software-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: 0.4s;
}

.software-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.7);
}

.software-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.4);
}

.software-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.sw-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.sw-info span {
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.sw-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fbbf24;
  transition: 0.3s;
}

.software-card:hover .sw-btn {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

footer {
  background: #020202;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about {
  color: var(--text-muted);
  max-width: 350px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #151515;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  color: #444;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-header {
  padding-top: 50px;
  padding-bottom: 65px;
  background: radial-gradient(circle at center, #151515 0%, #050505 70%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumb {
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumb span {
  color: #D4AF37;
}

.section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.service-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  width: 80%;
  align-items: center;
  margin: 0 auto;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-row.reverse .service-content {
  order: 2;
}

.service-row.reverse .service-image {
  order: 1;
}

.service-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.service-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 16px;
  width: 90%;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
  font-size: 15px;
}

.feature-item .material-icons {
  color: var(--primary);
  font-size: 20px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.tech-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.tech-card .material-icons-outlined {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.tech-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 13px;
}

.content-section {
  padding: 100px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-box {
  background: #0a0a0a;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
}

.info-text p,
.info-text a {
  font-size: 14px;
  color: var(--text-muted);
}

.info-text a:hover {
  color: var(--primary);
}

.contact-form {
  background: #0a0a0a;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  padding: 15px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  background: #151515;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.submit-btn {
  background: var(--primary);
  color: #000;
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

.cust-sl-wrapper {
  display: block;
  width: 100%;
}

.sl-mod-container {
    width: 100%;
}
.sl-mod-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sl-mod-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.5;
}
.sl-mod-item:last-child {
    margin-bottom: 0;
}
.sl-mod-icon {
    color: #fbbf24;
    font-size: 24px;
    min-width: 24px;
    margin-top: 3px;
}
.sl-mod-content strong {
    color: #ffffff;
    font-weight: 700;
    margin-right: 5px;
}

@media (max-width: 1024px) {
  .top-contact {
    display: none;
  }
  .top-bar-inner {
    justify-content: center;
  }
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .dual-btn-wrapper {
    margin: 30px auto;
    justify-content: center;
  }
  .btn-left, .btn-right {
    width: auto;
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .service-row.reverse .service-content {
    order: 1;
  }
  .service-row.reverse .service-image {
    order: 2;
  }
  .service-features {
    text-align: left;
  }
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info-box {
    margin-bottom: 30px;
  }
}

.form-container {
    background: #080808;
    border-radius: 24px;
    padding: 60px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.form-adim {
    display: flex;
    gap: 20px;
}

.adim-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary);
    line-height: 0.8;
    opacity: 0.4;
    font-weight: 700;
    flex-shrink: 0;
}

.adim-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}

.adim-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.cust-sl-wrapper {
    width: 100%;
}
.cust-sl-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cust-sl-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.5;
}
.cust-sl-item:last-child {
    margin-bottom: 0;
}
.cust-sl-icon {
    color: #fbbf24;
    font-size: 24px;
    min-width: 24px;
    margin-top: 3px;
}
.cust-sl-content strong {
    color: #ffffff;
    font-weight: 700;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .services-grid, .software-grid, .process-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .about-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-about {
    margin: 0 auto;
  }
  .footer-links a {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .dual-btn-wrapper {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 300px;
  }
  .btn-left {
    border-radius: 6px 6px 0 0;
    width: 100%;
    border: 1px solid #333;
    padding: 15px;
  }
  .btn-right {
    border-radius: 0 0 6px 6px;
    width: 100%;
    border: 1px solid #ef4444;
    padding: 15px;
  }
  .btn-or-circle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -18px auto -18px;
    z-index: 5;
  }
  .process-container {
    padding: 30px 20px;
  }
  .header-actions {
    gap: 10px;
  }
  .page-header {
    padding-top: 140px;
  }
  .page-title {
    font-size: 36px;
  }
  .service-features {
    grid-template-columns: 1fr;
  }
  .service-detailed-grid {
    width: 95%;
    margin-left: 14px;
    margin-right: 0;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}