  
/* ================================
   Base styles & CSS variables
   ================================ */

:root {
  /* Core palette */
  --bg: #020617;              /* Main background */
  --bg-elevated: #050816;     /* Cards, header */
  --bg-muted: #020617;        /* Muted sections */
  --surface-soft: #0b1120;    /* Soft surfaces */

  /* Accent colors */
  --accent: #22d3ee;          /* Primary teal */
  --accent-soft: rgba(34, 211, 238, 0.18);
  --accent-strong: #06b6d4;   /* Stronger teal */

  /* Supporting colors */
  --accent-alt: #6366f1;      /* Indigo secondary */
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --border-subtle: #1f2937;
  --danger: #fb7185;

  /* Radius / shadows */
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.6);
  --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.4);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.28s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

/* Typography reset for headings */
h1, h2, h3, h4 {
/*   margin: 0 0 0.5em; */
  line-height: 1.2;
}

/* Containers & layout */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: radial-gradient(circle at top left, var(--bg-elevated), var(--bg));
  padding: 5rem 0;
}

/* Skip link for accessibility */

.skip-link {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -150%);
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translate(-50%, 12px);
}

/* ================================
   Header & navigation
   ================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.97),
    rgba(2, 6, 23, 0.92),
    rgba(2, 6, 23, 0)
  );
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 0 0, var(--accent), transparent 60%),
    radial-gradient(circle at 100% 100%, var(--accent-alt), transparent 60%);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0b1120;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.9);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Navigation */

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e2e8f0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Mobile nav open state */
.site-header.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ================================
   Buttons
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color var(--transition-med),
    color var(--transition-med),
    border-color var(--transition-med),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-primary {
  background: radial-gradient(circle at 10% 0, var(--accent-strong), var(--accent));
  color: #0b1120;
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(34, 211, 238, 0.45);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: rgba(30, 64, 175, 0.55);
  color: #e5e7eb;
  border-color: rgba(129, 140, 248, 0.7);
}

.btn-small {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

/* ================================
   Hero section
   ================================ */

.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.85;
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: rgba(99, 102, 241, 0.5);   /* Indigo */
  top: -40px;
  left: 5%;
}
.orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(34, 211, 238, 0.35);  /* Teal */
  bottom: -120px;
  right: 0;
  animation-delay: 3s;
}
.orb-3 {
  width: 220px;
  height: 220px;
  background: rgba(244, 114, 182, 0.25); /* Soft pink */
  top: 10%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes floatOrb {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(20px, -30px, 0) scale(1.1);
  }
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.3vw + 1.6rem, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 32rem;
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-weight: 600;
  font-size: 1.3rem;
}

.meta-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero media card */

.hero-media {
  position: relative;
}

.hero-card {
  position: absolute;
  inset: auto 0 auto auto;
  transform: translate(15%, -18%);
  max-width: 260px;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 0.78)
  );
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.55);
  backdrop-filter: blur(18px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.hero-card-body p {
  font-size: 0.83rem;
  color: #e5e7eb;
  margin-bottom: 0.9rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
}

.hero-pills li {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.75);
  font-size: 0.72rem;
  color: #e0f2fe;
}

.hero-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hero-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(30, 64, 175, 0.9);
  overflow: hidden;
}

.hero-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to right, #22c55e, #22d3ee);
}

.hero-image {
  width: 100%;
  max-width: 460px;
  border-radius: 22px;
  display: block;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* ================================
   Sections: headers
   ================================ */

.section-header {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ================================
   Services grid
   ================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: radial-gradient(circle at top left, var(--bg-elevated), #020617);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% -10%, var(--accent-soft), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.service-card h3 {
  font-size: 1.03rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.service-card ul {
  list-style: none;
  padding-inline-start: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-card li {
  font-size: 0.78rem;
  color: #e5e7eb;
  background: rgba(31, 41, 55, 0.95);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.9);
}

/* ================================
   Technologies section
   ================================ */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

#industry-new .tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

#stack-overview .tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.tech-column {
  background: rgba(15, 23, 42, 0.98);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(31, 41, 55, 0.95);
}

.tech-column h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.tech-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tech-column p {
 
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tech-column li + li {
  margin-top: 0.35rem;
}

/* ================================
   Clients marquee
   ================================ */

.logo-marquee {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 55, 0.95);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  padding-block: 0.8rem;
}

.logo-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 26s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
}

.logo-item img {
  max-height: 45px;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: filter 0.2s ease-out, opacity 0.2s ease-out, transform 0.2s ease-out;
	border-radius: 10px;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================================
   About section
   ================================ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.about-text p + p {
  margin-top: 0.75rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 1.1rem;
}

.about-list li {
  font-size: 0.9rem;
  color: #e5e7eb;
  position: relative;
  padding-left: 1.1rem;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: var(--shadow-soft);
}

.about-highlight-card {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.75);
  backdrop-filter: blur(14px);
}

.highlight-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.highlight-caption {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ================================
   Testimonials
   ================================ */

.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2.3rem;
  border-radius: 22px;
  background: radial-gradient(circle at top left, var(--accent-soft), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(56, 189, 248, 0.6);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.testimonial-track {
  position: relative;
}

.testimonial-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-med), transform var(--transition-med);
  position: absolute;
  inset: 0;
  padding-right: 2.5rem;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.testimonial-quote {
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

.testimonial-author {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.testimonial-author .name {
  display: block;
  font-weight: 600;
  color: #e5e7eb;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.testimonial-nav:hover {
  background: rgba(30, 64, 175, 0.85);
}

.testimonial-nav.prev {
  left: 0.6rem;
}

.testimonial-nav.next {
  right: 0.6rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
}

.dot.active {
  width: 18px;
  background: var(--accent);
}

/* ================================
   Contact
   ================================ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.contact-info p {
  color: var(--text-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.92rem;
}

.contact-list li + li {
  margin-top: 0.25rem;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: rgba(15, 23, 42, 0.98);
  padding: 1.8rem 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(31, 41, 55, 0.95);
  box-shadow: var(--shadow-subtle);
}

/* Form fields */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.95);
  background: #020617;
  color: var(--text);
  font: inherit;
  padding: 0.65rem 0.7rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.5);
}

.form-status {
  font-size: 0.82rem;
  margin-top: 0.6rem;
  min-height: 1em;
  color: var(--text-muted);
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: #4ade80;
}

/* ================================
   Footer
   ================================ */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.95);
  padding: 1.4rem 0 1.6rem;
  background: #020617;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ================================
   Scroll reveal animations
   ================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   Responsive design
   ================================ */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr);
    gap: 2.5rem;
  }

  .hero-media {
    order: -1;
  }

  .hero-card {
    position: absolute;
    transform: translate(8%, -45%);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-media {
    order: -1;
  }

  .contact-form-wrapper {
    padding: 1.4rem 1.25rem;
  }
	
	.contact-info img{
		width: 100% !important;
	}
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

	#industry-new .tech-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  
}

  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(2, 6, 23, 0.98);
    border-bottom: 1px solid rgba(15, 23, 42, 0.95);
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-med), transform var(--transition-med);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.2rem 1rem;
    gap: 0.9rem;
  }

  .site-header.nav-open .main-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 5.4rem;
  }

  .hero-card {
    display: none;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tech-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.4rem;
  }

  .testimonial-slider {
    padding: 2.1rem 1.6rem 2rem;
  }

  .testimonial-card {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-block: 0.6rem;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-meta {
    gap: 1rem;
  }

  .logo-marquee {
    border-radius: 18px;
  }
}


.mob-menu-right-bg-holder{
	background-color:#050918;
}


#mobmenuright li a{
	color: #fff !important;
	 font-family: var(--font-sans);
	
}

.mob-icon-cancel-1:before {
   
    color: white;
}

.mob-menu-logo-holder{
	background-color: #050918;
}


.section { padding: 64px 0; }
  .container { width: min(1100px, 92%); margin: 0 auto; }

  .section-header { text-align: center; margin-bottom: 22px; }
  .section-header h2 { margin: 0 0 6px; }
  .section-header p { margin: 0; opacity: .75; }

  .project-tabs{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 24px 0 22px;
  }

  .tab-btn{
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    user-select: none;
  }

  .tab-btn:hover{ transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
  .tab-btn.active{ background: #0b1220; color: #fff; border-color: #0b1220; }

  .project-content{ margin-top: 8px; }

  .tab-content{ display: none; }
  .tab-content.active{ display: block; }

  .project-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .project-card{
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    padding: 18px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #fff;
  }

  @media (max-width: 900px){
    .project-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 540px){
    .project-grid{ grid-template-columns: 1fr; }
  }


.white-bg{
	background-color: white;
}


#iframeModalTitle{
	 font-family: var(--font-sans);
}


.contact-list a {
    color: white;
    font-weight: 600;
}