
:root {
  --primary: #2563eb;
  --primary-soft: #e0edff;
  --accent: #f97316;
  --bg: #f9fafb;
  --card-bg: #ffffff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: rgba(148, 163, 184, 0.4);
  --radius-lg: 14px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* Layout */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary);
  border-color: var(--border-soft);
}

.btn-outline:hover {
  background: #eff6ff;
}

/* Header / Navbar */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.logo span {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo img {
    height: 32px;
  }
  .logo span {
    font-size: 0.78rem;
  }
}

.nav-links {
  display: none;
  gap: 1.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #1f2933;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile menu */

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  padding: 0.7rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mobile-menu-inner a {
  padding: 0.4rem 0;
}

/* Hero (Home) */

.hero {
  background: radial-gradient(circle at top left, #eff6ff, #ffffff);
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
  animation: floatBlob 12s ease-in-out infinite alternate;
}

.hero::before {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.25);
  top: -60px;
  right: -40px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.18);
  bottom: -80px;
  left: -40px;
  animation-delay: 3s;
}

.hero-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(219, 234, 254, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1d4ed8;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  font-size: 2.15rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
}

.hero h1 span {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
}

.hero-image-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 0.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  animation: floatUp 0.9s ease-out both;
}

.hero-image-wrapper img {
  border-radius: 14px;
}

/* Generic section headings */

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}

.section-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 38rem;
}

/* Cards & grids */

.cards-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cards-grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid.columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card ul {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.card ul li {
  margin-bottom: 0.25rem;
}

/* About page layout */

.split-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .split-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

.badge-soft {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

/* Projects */

.projects-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.project-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-body {
  padding: 0.9rem 1rem 1.1rem;
}

.project-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.project-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.tag {
  display: inline-flex;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
}

/* Contact & forms */

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.15rem;
  display: block;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #f9fafb;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: all 0.16s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
  background: #ffffff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* FAQ */

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 0.9rem 1rem;
}

.faq-question {
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Testimonials */

.testimonials-grid {
  display: grid;
  gap: 1.3rem;
  margin-top: 1.8rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-name {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Careers */

.job-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.job-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.1rem;
  font-size: 0.9rem;
}

/* Footer */

footer {
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 2rem 0 2.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-row {
  display: grid;
  gap: 1.4rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-main img {
  height: 40px;
  width: auto;
}

.footer-columns {
  display: grid;
  gap: 1.2rem;
}

.footer-links,
.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a,
.footer-links-column a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-links a:hover,
.footer-links-column a:hover {
  color: var(--primary);
}



/* Utility */

.page-hero {
  background: #ffffff;
  border-bottom: 1px solid var(--border-soft);
  padding: 2.5rem 0;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Floating WhatsApp / Call */

.floating-actions {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 60;
}

.floating-actions a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
  background: #22c55e;
  color: white;
  font-size: 1.3rem;
}

.floating-actions a.call-btn {
  background: #0ea5e9;
}

/* Quotation Modal */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 1rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.35);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.modal-close {
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

@media (max-width: 480px) {
  .modal-dialog {
    max-width: 100%;
    padding: 1rem;
    border-radius: 16px;
  }
}

.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
  animation: floatBlob 12s ease-in-out infinite alternate;
}

.hero::before {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.25);
  top: -60px;
  right: -40px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(249, 115, 22, 0.18);
  bottom: -80px;
  left: -40px;
  animation-delay: 3s;
}

@keyframes floatBlob {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-12px, 10px, 0) scale(1.05); }
  100% { transform: translate3d(8px, -10px, 0) scale(1.08); }
}


.footer-row {
  padding-top: 0.4rem;
}

.footer-columns {
  display: grid;
  gap: 1.2rem;
}

.footer-logo {
  height: 38px;
  max-width: 170px;
  width: auto;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 32px;
    max-width: 150px;
  }
  .modal-dialog {
    max-width: 100%;
    padding: 1rem;
    border-radius: 16px;
  }
}



.footer-row {
  padding-top: 0.4rem;
}

.footer-columns {
  display: grid;
  gap: 1.5rem;
}

.footer-logo {
  height: 38px;
  max-width: 180px;
  width: auto;
}

@media (max-width: 767px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-columns {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 32px;
    max-width: 150px;
  }
}


footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: #020617;
  padding: 2.5rem 0 2.2rem;
  font-size: 0.82rem;
  color: #e5e7eb;
}

.footer-row {
  padding-top: 0.2rem;
}

.footer-columns {
  display: grid;
  gap: 2.5rem;
}

.footer-logo {
  height: 48px;
  max-width: 190px;
  width: auto;
  border-radius: 999px;
  background: #020617;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links-column strong {
  font-size: 0.95rem;
  color: #f9fafb;
  margin-bottom: 0.3rem;
}

.footer-links-column a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-links-column a:hover {
  color: #f97316;
}

.footer-tagline {
  font-size: 0.86rem;
  color: #d1d5db;
  margin-top: 0.6rem;
}

footer .copyright {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.8rem;
}

@media (max-width: 767px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-columns {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    height: 40px;
    max-width: 160px;
  }
}

