/* GenZova - Pure HTML/CSS/JS - No React, No Wix */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #2563eb;
  --primary-foreground: #FFFFFF;
  --secondary: #0f172a;
  --secondary-foreground: #FFFFFF;
  --accent: #3b82f6;
  --background: #ffffff;
  --foreground: #1e293b;
  --muted-grey: #64748b;
  --destructive: #E53935;
  --card-bg: #f8fafc;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.logo-circle {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

.logo-img {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-name-img {
  height: 5.46rem;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: -1.5rem;
}

.logo-name-wrap {
  display: flex;
  flex-direction: column;
}

.logo-name-wrap .logo-subtitle {
  display: block;
  font-size: 0.65rem;
  color: var(--muted-grey);
  letter-spacing: 0.15em;
  margin-top: -0.25rem;
  padding-left: 0.15rem;
  text-align: center;
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-grey);
  opacity: 0.9;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.125rem;
  }
}

/* Dropdown menus */
.nav-dropdown {
  position: relative;
}

.nav-dropdown.dropdown-open {
  z-index: 60;
}

.nav-dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  background: #fcfcfd;
  border-radius: 0.75rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  padding: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 50;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown-menu-wide {
  min-width: 22rem;
  max-height: 80vh;
  overflow-y: auto;
}

/* Modern Thin Scrollbar */
.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

.dropdown-search {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  background: #f1f5f9;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.dropdown-search svg {
  color: #64748b;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.dropdown-search input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 0.875rem;
  color: #1e293b;
  outline: none;
  padding: 0.25rem 0;
}

.dropdown-search input::placeholder {
  color: #94a3b8;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
  color: #090a0c;
  text-decoration: none;
  border-radius: 10rem;
  transition: all 0.2s ease;
  line-height: 1.5;
}

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

.dropdown-item:hover {
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary);
  padding-left: 1.25rem;
}

.nav-link {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--foreground);
  border-radius: 9999px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.nav-link.active {
  color: #2563eb;
  background: #eff6ff;
  /* Soft blue pill background */
  font-weight: 600;
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: white;
}

.btn-white-outline:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  transform: translateY(-2px);
}

.btn-blue-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-blue-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Light text/links on dark backgrounds */
.link-light {
  color: rgba(255, 255, 255, 0.95) !important;
}

.link-light:hover {
  color: var(--accent) !important;
}

.menu-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--background);
  padding: 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

/* Page containers */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* Hero sections */
.hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 35%, #1e3a8a 70%, #172554 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  overflow: hidden;
}

.hero-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 48rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero .accent {
  color: var(--accent);
}

.hero p {
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Home Hero */
.home-hero {
  min-height: 95vh;
  position: relative;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(37, 99, 235, 0.4) 100%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 10;
  max-width: 120rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.15);
  border-radius: 9999px;
  color: var(--accent);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 600;
}

.home-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  margin-bottom: 2rem;
  color: var(--secondary-foreground);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.home-hero .italic-accent {
  font-style: italic;
  color: white;
  display: inline-block;
}

.home-hero .italic-accent::after {
  display: none;
}

.home-hero-content>p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.home-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.home-hero-buttons .btn,
.btn-glossy {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
  min-width: 14rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-glossy {
  position: relative;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}

.btn-glossy:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.glow-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.5s;
}

.btn-glossy:hover .glow-effect {
  left: 100%;
}


.hero-outline-btn {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--accent);
  background: transparent;
}

.hero-outline-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: white;
}

/* Static banner - no scroll animation */
.marquee-section {
  padding: 2rem;
  background: var(--background);
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  text-align: center;
}

.marquee-text {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--primary);
  opacity: 0.9;
}

/* Image containers - prevent layout shift */
.img-wrap {
  display: block;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
}

.img-wrap-aspect-4-3 {
  aspect-ratio: 4/3;
}

.img-wrap-aspect-4-5 {
  aspect-ratio: 4/5;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 100rem;
  margin: 0 auto;
}

.solution-section {
  padding: 3rem 2rem;
  max-width: 100rem;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-grey);
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* AI Development - prevent overlap */
.ai-development-section {
  overflow: visible;
}

.ai-development-section .grid-2 {
  min-height: auto;
}

.ai-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .ai-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ai-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service cards */
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card .img-wrap {
  aspect-ratio: 4/3;
}

.service-card:hover .img-wrap img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 2rem;
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  transition: color 0.2s;
  line-height: 1.3;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--muted-grey);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Services/Internships sections - light cards on white */
.services-section,
.internships-section {
  background: var(--background);
}

/* Stats */
.stat-item {
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
}

.stat-number {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* Value cards */
.value-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.3);
}

.value-card .icon-wrap {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.value-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  line-height: 1.3;
}

.value-card p {
  color: var(--muted-grey);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Testimonial cards */
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 1rem;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.35);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars span {
  color: var(--primary);
  font-size: 1.125rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--foreground);
  opacity: 0.9;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 1rem;
}

.testimonial-card .author {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-card .role {
  font-size: 0.875rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

/* Gallery */
.gallery-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
}

.gallery-card .img-wrap {
  aspect-ratio: 4/3;
  height: auto;
}

.gallery-card:hover .img-wrap img {
  transform: scale(1.06);
}

.gallery-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-card-content p {
  flex: 1;
}

.card-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.65rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card-btn:hover {
  background: #1d4ed8;
}

.gallery-card h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: var(--foreground);
  line-height: 1.3;
}

.gallery-card p {
  font-size: 0.9375rem;
  color: var(--muted-grey);
  line-height: 1.6;
}

/* Filter */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--background);
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  background: #fff;
  color: var(--foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-error {
  color: var(--destructive);
  font-size: 0.8125rem;
  margin-top: 0.35rem;
  display: block;
}

.error-border {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px #ef4444 !important;
}

/* Contact Page Redesign */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
  background: var(--background);
}

.contact-card {
  background: #fff;
  width: 100%;
  max-width: 52rem;
  padding: 3.5rem;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.contact-header p {
  color: var(--muted-grey);
  font-size: 1.05rem;
}

.contact-whatsapp-banner {
  margin-top: 2.5rem;
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 1.25rem;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.whatsapp-icon-container {
  width: 2.5rem;
  height: 2.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.whatsapp-info {
  flex: 1;
}

.whatsapp-info h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.125rem;
  color: #1e293b;
}

.whatsapp-info p {
  font-size: 0.85rem;
  color: var(--muted-grey);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

@media (max-width: 640px) {
  .contact-card {
    padding: 2.5rem 1.5rem;
  }

  .contact-whatsapp-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .btn-whatsapp {
    width: 100%;
  }
}

/* Contact info card */
.contact-info-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.35);
}

.contact-info-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9375rem;
  color: var(--muted-grey);
  line-height: 1.6;
  text-decoration: none;
}

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

/* Footer */
.footer {
  background: #f1f5f9;
  color: var(--foreground);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  max-width: 100rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
  }
}

.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.footer p,
.footer a {
  font-size: 0.9375rem;
  color: var(--muted-grey);
  text-decoration: none;
  line-height: 1.65;
}

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


.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-grey);
  transition: all 0.25s;
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .footer-legal-links {
    margin-top: 0;
  }
}

.footer-legal-links a {
  font-size: 0.8125rem;
  color: var(--muted-grey);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.legal-content-section {
  padding: 4rem 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.legal-content-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.legal-content-section h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content-section p {
  margin-bottom: 1rem;
  color: var(--muted-grey);
  line-height: 1.8;
}

.legal-content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content-section ul li {
  margin-bottom: 0.5rem;
  color: var(--muted-grey);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* CTA section */
/* Technologies section */
.tech-section {
  background: var(--background);
  color: var(--foreground);
  padding: 6rem 2rem;
}

.tech-section .section-title {
  color: var(--foreground);
}

.tech-section .section-subtitle {
  color: var(--muted-grey);
}

.tech-card {
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 0.75rem;
  color: var(--foreground);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
}

.tech-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

/* Development Process */
.dev-process-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2.5rem;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
}

.process-step {
  flex: 1;
  position: relative;
  color: #fff;
  padding: 0 1rem;
}

.process-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
}

.process-circle svg {
  display: block;
  flex-shrink: 0;
}

.process-connector {
  position: absolute;
  top: 37px;
  left: calc(50% + 42px);
  width: calc(100% - 84px);
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fbbf24;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

.cta-section .btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* Scroll reveal - vanilla JS will add .revealed */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transition: all 0.35s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

/* Internship Cards */
.internship-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.internship-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.internship-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.internship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.internship-card:hover .internship-img img {
  transform: scale(1.06);
}

.internship-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.internship-body h3 {
  font-size: 1.3rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.internship-card:hover .internship-body h3 {
  color: var(--primary);
}

.internship-desc {
  font-size: 0.9rem;
  color: var(--muted-grey);
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

.internship-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--primary);
}

.internship-apply-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%) !important;
  border: 2px solid white !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  padding: 0.85rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.internship-card .internship-apply-btn {
  margin-top: auto;
  width: 100%;
}

.internship-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5), 0 0 15px rgba(37, 99, 235, 0.3);
  opacity: 1;
  filter: brightness(1.1);
}

/* Internship Hero */
.internship-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 35%, #1e3a8a 70%, #172554 100%);
  overflow: hidden;
}

.internship-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.internship-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  z-index: 2;
}

.internship-hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 2rem;
  max-width: 48rem;
}

.internship-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.internship-hero-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}


/* Internship Detail Page */
.detail-hero {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 35%, #1e3a8a 70%, #172554 100%);
  color: white;
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.detail-hero-inner {
  max-width: 60rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.detail-back-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.detail-back-link:hover {
  color: white;
}

.detail-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: white;
}

.detail-tagline {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.detail-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 1.25rem 2rem;
  min-width: 140px;
  backdrop-filter: blur(8px);
}

.detail-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  font-family: 'Sora', sans-serif;
}

.detail-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

/* Applications section */
.detail-apps-section {
  background: #f8fafc;
}

.detail-app-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.detail-app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.detail-app-card:hover::before {
  opacity: 1;
}

.detail-app-card:hover {
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
}

.detail-app-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.detail-app-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.detail-app-card p {
  font-size: 0.9rem;
  color: var(--muted-grey);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.detail-skill-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--primary);
}

/* Tech stack section - light clean background */
.detail-tech-section {
  background: #f0f4f8 !important;
  padding: 5rem 2rem;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.detail-tech-section .section-title {
  color: var(--foreground);
}

.detail-tech-section .section-subtitle {
  color: var(--muted-grey);
}

.detail-tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 100rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .detail-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .detail-tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.detail-tech-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.detail-tech-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
}

.detail-tech-img {
  width: 100%;
  height: 120px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.detail-tech-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Uniform logo container for all tech logos */
.tech-logo-container {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-logo-container img {
  max-width: 36px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.detail-tech-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.detail-tech-img.stock-photo {
  padding: 0;
}

.detail-tech-img.stock-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-tech-card:hover .detail-tech-img img {
  transform: scale(1.08);
}

.detail-tech-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.2);
  font-family: 'Sora', sans-serif;
  margin-bottom: 0.5rem;
}

.detail-tech-card h3 {
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.detail-tech-card p {
  font-size: 0.85rem;
  color: var(--muted-grey);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  text-align: justify;
}

.detail-tech-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.4rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  transition: all 0.2s ease;
}

.detail-tech-tag:hover {
  background: rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.detail-tech-tag-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  transition: all 0.2s ease;
  min-height: 36px;
}

.detail-tech-tag-with-logo:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.detail-tech-tag-with-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* Projects section */
.detail-projects-section {
  background: #f8fafc;
}

.detail-project-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.detail-project-card:hover {
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
}

.detail-project-header {
  margin-bottom: 1rem;
}

.detail-project-level {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
}

.detail-project-level--foundation {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.detail-project-level--professional {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.detail-project-level--expert {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.detail-project-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.detail-project-card p {
  font-size: 0.9rem;
  color: var(--muted-grey);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.detail-project-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #7c3aed);
  opacity: 0;
  transition: opacity 0.3s;
}

.detail-project-card:hover .detail-project-bar {
  opacity: 1;
}

/* Detail CTA */
.detail-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 50%, #1e3a8a 100%);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.detail-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.detail-cta-inner {
  position: relative;
  z-index: 2;
}

.detail-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.detail-cta-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* Internship card button group */
.internship-btn-group {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.internship-btn-group .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  text-align: center;
}

.internship-course-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.internship-course-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* ===== SERVICE DETAIL PAGE ===== */

/* How It Helps Section — Image Cards */
.service-how-section {
  background: #f8fafc;
}

.service-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-impact-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation-delay: var(--card-delay, 0s);
}

.service-impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-impact-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-impact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.service-impact-body {
  padding: 1.5rem;
}

.service-impact-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.service-impact-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  text-align: justify;
}

/* Industries Grid */
.service-industries-section {
  background: white;
}

.service-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-industry-card {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
  animation-delay: var(--card-delay, 0s);
}

.service-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.service-industry-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-industry-icon svg {
  width: 24px;
  height: 24px;
}

.service-industry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.service-industry-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  text-align: justify;
}

/* What You Get / Deliverables */
.service-deliverables-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
}

.service-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation-delay: var(--card-delay, 0s);
}

.service-deliverable-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-deliverable-check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.service-deliverable-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .service-impact-grid {
    grid-template-columns: 1fr;
  }

  .service-industries-grid {
    grid-template-columns: 1fr;
  }

  .service-deliverables-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===== SERVICE ENQUIRY MODAL ===== */
.enquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.enquiry-modal {
  background: white;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.enquiry-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.enquiry-modal-close:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.enquiry-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.enquiry-modal-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.enquiry-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.enquiry-modal-header p {
  font-size: 0.95rem;
  color: var(--muted-grey);
  line-height: 1.5;
}

.enquiry-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.enquiry-form-group {
  display: flex;
  flex-direction: column;
}

.enquiry-form-group.full-width {
  margin-bottom: 1.5rem;
}

.enquiry-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.enquiry-form-group label .required {
  color: #ef4444;
}

.enquiry-form-group input,
.enquiry-form-group select,
.enquiry-form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--heading);
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.enquiry-form-group input:focus,
.enquiry-form-group select:focus,
.enquiry-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: white;
}

.enquiry-form-group input::placeholder,
.enquiry-form-group textarea::placeholder {
  color: #94a3b8;
}

.enquiry-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.enquiry-submit-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.enquiry-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

@media (max-width: 640px) {
  .logo-img {
    height: 2.5rem;
  }

  .logo-name-img {
    height: 2rem;
  }

  .enquiry-modal {
    padding: 1.5rem;
    max-height: 95vh;
  }

  .enquiry-form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-modal-header h2 {
    font-size: 1.25rem;
  }
}


/* Enquiry Success Screen */
.enquiry-success {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.enquiry-success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  animation: successPop 0.4s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.enquiry-success h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.75rem;
  text-align: center;
}

.enquiry-success p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 0.5rem;
  text-align: center;
}

.enquiry-success-sub {
  font-size: 0.9rem;
  color: var(--muted-grey);
  margin-bottom: 2rem;
}

.enquiry-done-btn {
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
  border-radius: 0.6rem;
  margin: 0 auto;
}

/* ===== About Page Styles ===== */
#page-about .section,
#page-about .cta-section {
  position: relative;
  overflow: hidden;
  clear: both;
}

#page-about section[style*="background:linear-gradient"] {
  max-width: 100%;
  width: 100%;
  padding: 5rem 2rem;
  box-sizing: border-box;
}

.about-service-pillar {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-service-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.about-pillar-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-service-pillar h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.about-service-pillar p {
  color: var(--muted-grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* What Sets Us Apart */
.about-apart-grid {
  max-width: 70rem;
  margin: 0 auto;
}

.about-apart-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-apart-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #2563eb;
}

.about-apart-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-apart-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-apart-card p {
  color: var(--muted-grey);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* Team Cards */
.about-team-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.about-team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.about-team-role {
  font-size: 0.8rem;
  color: var(--muted-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.about-team-title {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

/* Contact Info */
.about-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-contact-item svg {
  flex-shrink: 0;
}

.about-contact-item p {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Enquiry Form Card */
.about-enquiry-form-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.about-enquiry-form-card h3 {
  font-size: 1.3rem;
}

.about-enquiry-form-card .form-group {
  margin-bottom: 1.25rem;
}

.about-enquiry-form-card .form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.about-enquiry-form-card .form-group input,
.about-enquiry-form-card .form-group textarea {
  display: block;
  width: 100% !important;
  padding: 0.8rem 1rem !important;
  border: 2px solid #94a3b8 !important;
  border-radius: 0.5rem !important;
  background: #ffffff !important;
  color: #1e293b !important;
  font-size: 0.92rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-enquiry-form-card .form-group input::placeholder,
.about-enquiry-form-card .form-group textarea::placeholder {
  color: #94a3b8;
}

.about-enquiry-form-card .form-group input:focus,
.about-enquiry-form-card .form-group textarea:focus {
  outline: none;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.about-enquiry-form-card .form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.about-enquiry-section .grid-2 {
  grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 768px) {
  .about-enquiry-section .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-apart-grid {
    grid-template-columns: 1fr;
  }

  .about-apart-card {
    flex-direction: column;
    text-align: center;
  }

  .about-apart-icon {
    margin: 0 auto;
  }
}

/* ===== Profile Page Styles ===== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.profile-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.profile-stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.profile-stat-label {
  font-size: 0.9rem;
  color: var(--muted-grey);
}

/* Filter Tabs */
.profile-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.profile-tab {
  padding: 0.5rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 2rem;
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.profile-tab:hover,
.profile-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Project Cards */
.profile-project-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.profile-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.profile-project-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.profile-project-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.profile-project-card p {
  color: var(--muted-grey);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.profile-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.profile-project-tags span {
  padding: 0.25rem 0.75rem;
  background: rgba(37, 99, 235, 0.06);
  color: var(--primary);
  border-radius: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Service Cards */
.profile-service-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.profile-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.profile-service-icon {
  width: 56px;
  height: 56px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.profile-service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.profile-service-card p {
  color: var(--muted-grey);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* Testimonial Cards */
.profile-testimonial-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.profile-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.profile-testimonial-quote {
  margin-bottom: 1rem;
}

.profile-testimonial-card>p {
  color: var(--muted-grey);
  font-size: 0.92rem;
}

.profile-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #e2e8f0;
  padding-top: 1.25rem;
}

.profile-testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-testimonial-author h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.profile-testimonial-author p {
  font-size: 0.8rem;
  color: var(--muted-grey);
}

/* ===== FAQ Page Styles ===== */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.faq-tab {
  padding: 0.5rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 2rem;
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-tab:hover,
.faq-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.faq-item {
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
  border-left: 4px solid #2563eb;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
  border-color: #2563eb;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  line-height: 1.7;
  color: var(--muted-grey);
  text-align: justify;
}

/* ===== Career Tracking Section ===== */
.career-tracking-section {
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.career-track-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

.career-track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  max-width: 15rem;
  padding: 0 0.75rem;
}

.career-track-circle {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: background 0.3s, border-color 0.3s;
}

.career-track-step:hover .career-track-circle {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}

.career-track-connector {
  position: absolute;
  top: 2.25rem;
  left: calc(50% + 2.25rem);
  width: calc(100% - 4.5rem);
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.career-track-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f59e0b;
}

.career-track-step:last-child .career-track-connector {
  display: none;
}

.career-track-step h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.career-track-step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 11rem;
  text-align: center;
}

@media (max-width: 768px) {
  .career-track-steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .career-track-step {
    max-width: 100%;
  }

  .career-track-connector {
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    bottom: -1.5rem;
    top: auto;
    position: relative;
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }

  .career-track-connector::after {
    right: auto;
    top: auto;
    bottom: 0;
    left: -4px;
  }
}

/* ===== Career Progress Bar ===== */
.career-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 0;
}

.career-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.career-progress-step span {
  font-size: 0.75rem;
  color: var(--muted-grey);
  font-weight: 500;
  transition: color 0.3s;
}

.career-progress-step.active span,
.career-progress-step.completed span {
  color: var(--primary);
  font-weight: 600;
}

.career-progress-dot {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: 2px solid #e2e8f0;
}

.career-progress-step.active .career-progress-dot {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.career-progress-step.completed .career-progress-dot {
  background: #22c55e;
  color: #fff;
  border-color: #22c55e;
}

.career-progress-line {
  width: 4rem;
  height: 3px;
  background: #e2e8f0;
  border-radius: 2px;
  margin: 0 0.5rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}

.career-progress-line.active-line {
  background: var(--primary);
}

.career-progress-line.completed-line {
  background: #22c55e;
}

@media (max-width: 480px) {
  .career-progress-line {
    width: 2rem;
  }

  .career-progress-step span {
    font-size: 0.65rem;
  }
}

/* ===== Career Form ===== */
.career-form-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.career-form-section {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.career-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.career-section-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading);
}

.career-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.career-form-card .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--heading);
}

.career-form-card .form-group input,
.career-form-card .form-group select,
.career-form-card .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid #94a3b8 !important;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  background: #fff;
  color: var(--heading);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.career-form-card .form-group input:focus,
.career-form-card .form-group select:focus,
.career-form-card .form-group textarea:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.career-form-card .required {
  color: #ef4444;
}

.career-file-upload {
  position: relative;
}

.career-file-upload input[type="file"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px dashed #94a3b8 !important;
  border-radius: 0.5rem;
  background: #f8fafc;
  cursor: pointer;
  font-size: 0.85rem;
}

.career-file-upload input[type="file"]:hover {
  border-color: var(--primary) !important;
  background: #f0f4ff;
}

.career-next-btn,
.career-prev-btn {
  padding: 0.65rem 2rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .career-form-card {
    padding: 1.25rem;
  }
}

/* AI Development Enhanced Sections */
.sec {
  padding: 6rem 1.5rem;
  text-align: center;
  background: #fff;
}

.sec-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.sec-eye {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.sec-h {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.sec-p {
  font-size: 1.125rem;
  color: var(--muted-grey);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Marquee Technology Stack */
.marquee-section {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  gap: 1rem;
  padding: 0.75rem 0;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-row.r2 {
  animation-direction: reverse;
  animation-duration: 45s;
}

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: #f8fafc;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 999px;
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.tech-chip:hover {
  background: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.tech-chip-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Project Carousel */
.creative-work-section {
  background: #f8fafc;
  padding: 6rem 1.5rem;
}

.project-carousel {
  position: relative;
  margin-top: 4rem;
  padding: 0 4rem;
}

.project-carousel-viewport {
  overflow: hidden;
  margin: 0 -1rem;
}

.project-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  gap: 0;
}

.project-carousel-card {
  flex: 0 0 100%;
  padding: 0 1rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .project-carousel-card {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .project-carousel-card {
    flex: 0 0 33.333%;
  }
}

.project-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #000;
}

.project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.6;
}

.project-carousel-card:hover .project-card-media img {
  transform: scale(1.08);
}

.project-card-content {
  padding: 1.5rem 0.5rem;
}

.project-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.project-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.project-card-description {
  font-size: 0.9375rem;
  color: var(--muted-grey);
  line-height: 1.6;
}

.carousel-nav {
  position: absolute;
  top: calc(50% - 2rem);
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  color: var(--primary);
}

.carousel-nav:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.carousel-nav-prev {
  left: 0;
}

.carousel-nav-next {
  right: 0;
}

/* AI Capabilities */
.ai-step-circle {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

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

@media (max-width: 1024px) {
  .grid-3.ai-capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3.ai-capabilities-grid {
    grid-template-columns: 1fr;
  }
}

.ai-capability-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  border-radius: 1.25rem;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.ai-capability-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.08);
}

.ai-capability-card:hover .ai-step-circle {
  background: var(--primary);
  color: #fff;
}

.ai-capability-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ai-capability-card p {
  color: var(--muted-grey);
  line-height: 1.7;
}

/* Industries Grid */
.ai-industries-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .ai-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-industries-grid {
    grid-template-columns: 1fr;
  }
}

.ai-industry-card {
  padding: 2.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.ai-industry-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.ai-industry-card h3 {
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.ai-industry-card ul {
  list-style: none;
  padding: 0;
}

.ai-industry-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-grey);
  line-height: 1.5;
}

.ai-industry-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
}

/* Why GenZova Refinement */
.why-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 2.5rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-card:hover .ai-step-circle {
  background: var(--primary);
  color: #fff;
}

/* Team Section Profile Images */
.about-team-card {
  border-radius: 2.5rem !important;
  overflow: hidden;
  padding: 3.5rem 2rem !important;
  transition: all 0.4s ease;
}

.about-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 237, 0.1);
}

.about-team-avatar {
  margin: 0 auto 2.5rem;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid rgba(37, 99, 237, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 0 10px 30px rgba(37, 99, 237, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.about-team-card:hover .about-team-avatar {
  transform: scale(1.05);
  border-color: rgba(37, 99, 237, 0.4);
  box-shadow: 0 15px 40px rgba(37, 99, 237, 0.15);
}

.about-team-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
}

.about-team-title {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.9;
}

/* WhatsApp Integration */
.whatsapp-community-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  border: 1.5px solid #25D366;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.whatsapp-community-link:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: #25D366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.15);
  transform: translateY(-2px);
}

.whatsapp-community-link:hover svg {
  transform: scale(1.1);
}

/* ====================================================
   LEGAL PAGES — Privacy Policy & Terms & Conditions
   ==================================================== */

/* Hero */
.legal-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #2563eb 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(59,130,246,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 50rem;
}

.legal-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.legal-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.55) !important;
  margin-top: 0.75rem;
}

/* Content wrapper */
.legal-content-section {
  max-width: 54rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

/* Table of Contents */
.legal-toc {
  background: #f8faff;
  border: 1px solid rgba(37,99,235,0.14);
  border-left: 4px solid var(--primary);
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
}

.legal-toc h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.legal-toc ol {
  padding-left: 1.25rem;
  margin: 0;
}

.legal-toc li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #475569;
}

.legal-toc a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.legal-toc a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Section blocks */
.legal-block {
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-block h2 {
  font-size: 1.65rem;
  color: #0f172a;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-block h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin: 1.5rem 0 0.6rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}

.legal-block p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0.85rem;
  font-size: 0.96rem;
}

.legal-block ul,
.legal-block ol {
  margin: 0.5rem 0 1rem 1.25rem;
  color: #475569;
}

.legal-block li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
  font-size: 0.96rem;
}

.legal-block strong {
  color: #1e293b;
}

/* Data table */
.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.legal-table thead {
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  color: #fff;
}

.legal-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid #f1f5f9;
  color: #475569;
  vertical-align: top;
  line-height: 1.6;
}

.legal-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.legal-table tbody tr:hover {
  background: #eff6ff;
}

/* Callout boxes */
.legal-tip,
.legal-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  border-radius: 0.65rem;
  margin: 1.25rem 0;
  font-size: 0.93rem;
  line-height: 1.65;
}

.legal-tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.legal-tip span:first-child,
.legal-warning span:first-child {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.legal-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

/* Contact card */
.legal-contact-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.6;
}

.legal-contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.legal-contact-card a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .legal-content-section {
    padding: 2.5rem 1rem 3rem;
  }

  .legal-hero {
    padding: 4rem 1.25rem 3rem;
  }

  .legal-block h2 {
    font-size: 1.35rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.6rem 0.75rem;
  }
}


/* Footer Social Links */
.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.social-icon-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.social-icon-link.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
}

.social-icon-link.linkedin:hover {
  background: #0A66C2;
  border-color: #0A66C2;
}
