/* Reset and base styles */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body { 
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
  line-height: 1.6; 
  color: #333; 
}

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

/* Typography */
h1, h2, h3 { 
  font-weight: 700; 
  line-height: 1.2; 
}

h2 { 
  font-size: 2rem; 
  margin-bottom: 1.5rem; 
  text-align: center; 
}

/* Digital-Tech Font Classes */
.tech-font-primary {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tech-font-secondary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tech-font-accent {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Colors */
:root { 
  --primary: #6a0dad; /* Purple */ 
  --primary-light: #8c2be0; 
  --primary-dark: #4b0082; 
  --secondary: #ffd700; /* Gold */ 
  --secondary-dark: #e6c200; 
  --white: #ffffff; 
  --light-gray: #f5f5f5; 
  --gray: #e0e0e0; 
  --dark-gray: #333333; 
}

/* Animation Keyframes */
@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes lightning {
  0% { 
    opacity: 0.5; 
  }
  50% { 
    opacity: 1; 
  }
  100% { 
    opacity: 0.5; 
  }
}

@keyframes spin {
  to { 
    transform: rotate(360deg); 
  }
}

@keyframes glow {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 0.6;
  }
}

@keyframes textGlow {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }
}

@keyframes heroTextGlow {
  0%, 100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  }
  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }
}

/* Animation Classes */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate-delay-1 { 
  animation-delay: 0.2s; 
}

.animate-delay-2 { 
  animation-delay: 0.4s; 
}

.animate-delay-3 { 
  animation-delay: 0.6s; 
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

/* Logo (now in the hero section) */  
.logo { 
  display: flex; 
  align-items: center;
  margin-bottom: 3rem;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  padding-left: 2rem;
}

/* Logo image container with border */
.logo-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.7), rgba(106, 13, 173, 0.7));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title container with the same styling as hero-content */
.title-container {
  position: relative;
  padding: 0.8rem 1.8rem;
  border-radius: 0; /* Changed to 0 for square corners */
  background: transparent;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
}

.title-container h1 {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  margin: 0 0 0.5rem 0;
  background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite;
  -webkit-text-stroke: 2px var(--primary);
  text-stroke: 2px var(--primary);
}

.title-container h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTextGlow 4s ease-in-out infinite;
  -webkit-text-stroke: 1.5px var(--primary);
  text-stroke: 1.5px var(--primary);
}

.title-container::before {
  display: none;
}

.logo-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* Hero Section */
.hero {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: url('/img/background.png');
  background-size: cover;
  background-position: center;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--white);
}

.hero::before {
  content: none; /* Remove the full overlay */
}

.hero-content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
  z-index: 1;
}

.hero-content p,
.hero-content strong {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}

@keyframes glowPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
  }
  50% { 
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9));
  }
}

@keyframes sparkle {
  0%, 100% { 
    opacity: 0.2;
    r: 1;
  }
  50% { 
    opacity: 1;
    r: 2.5;
  }
}

.lightning-separator {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.lightning-separator svg {
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  animation: glowPulse 3s infinite;
}

.lightning-main {
  animation: dashOffset 3s infinite linear;
}

.spark {
  filter: drop-shadow(0 0 2px gold);
}

.spark1 {
  animation: sparkle 2s infinite ease-in-out;
}

.spark2 {
  animation: sparkle 2s infinite ease-in-out 0.5s;
}

.spark3 {
  animation: sparkle 2s infinite ease-in-out 1s;
}

@keyframes dashOffset {
  to {
    stroke-dashoffset: -50;
  }
}

/* Section Separator */
.section-separator {
  height: 10px;
  background: linear-gradient(to right, var(--primary-dark), var(--primary), var(--secondary), var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
}

.section-separator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}

/* Section Heading */
.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  background: linear-gradient(45deg, #ffd700, #ffffff, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite;
  -webkit-text-stroke: 2px var(--primary);
  text-stroke: 2px var(--primary);
  text-align: center;
  width: 100%;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 10% 90%, rgba(106, 13, 173, 0.05) 0%, transparent 25%),
    linear-gradient(to bottom, var(--light-gray), var(--light-gray));
  border-top: 1px solid rgba(106, 13, 173, 0.1);
  border-bottom: 1px solid rgba(106, 13, 173, 0.1);
}

.services-intro {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: center;
  color: var(--dark-gray);
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

.services-intro strong {
  color: var(--dark-gray);
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px; /* Reduced by 20% from 400px */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-dark);
}

.service-icon {
  background-color: var(--primary-light);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

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

.service-content {
  padding: 3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Process Section */
.process { 
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(255, 215, 0, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 10% 90%, rgba(106, 13, 173, 0.05) 0%, transparent 25%),
    linear-gradient(to bottom, var(--light-gray), var(--light-gray));
  position: relative;
  padding: 4rem 0; 
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
  opacity: 0.3;
}

/* Fixed: Process boxes container centered with proper spacing */
.process-boxes { 
  display: grid; 
  grid-template-columns: repeat(1, 1fr); 
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

.process-box { 
  background-color: var(--white); 
  border: 2px solid var(--primary); 
  border-radius: 8px; 
  padding: 1.5rem; 
  text-align: center; 
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.process-box:hover { 
  transform: scale(1.05); 
}

.process-box:hover::before {
  transform: scaleX(1);
}

.process-number { 
  background-color: var(--primary); 
  color: var(--white); 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin: 0 auto 1rem; 
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Process Step Sections */
.process-step {
  padding: 5rem 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.process-step:nth-child(odd) {
  background-color: var(--white);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, var(--primary-light) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center, var(--secondary) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

/* Fixed: Step header left alignment */
.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  justify-content: flex-start;
  text-align: left;
}

.step-header h2 {
  text-align: left;
  margin-bottom: 0;
}

.step-header .process-number {
  margin: 0 1.2rem 0 0;
}

.step-header .section-heading {
  padding-bottom: 0;
  margin-bottom: 0;
}

.step-header .section-heading::after {
  display: none;
}

.process-content {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.process-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-dark);
}

.process-content::before {
  display: none;
}

/* Process Box Image */
.process-box-image {
  margin-top: 1.2rem;
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  margin: 1.2rem auto 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray);
  background-color: var(--white);
}

/* Two Column Layout for Build and Profit Sections */
.two-column-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.text-column {
  flex: 1;
}

.image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray);
}

/* Button Styling */
button { 
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: var(--white);
  border: none; 
  border-radius: 50px; 
  padding: 1rem 3rem; 
  font-size: 1.1rem; 
  font-weight: 600; 
  cursor: pointer; 
  width: 100%;
  max-width: 300px; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

button:hover { 
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(106, 13, 173, 0.4);
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

button:hover::before {
  left: 100%;
}

button:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(106, 13, 173, 0.3);
}

button:disabled { 
  opacity: 0.7; 
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 10px rgba(106, 13, 173, 0.2);
}

#submitButton {
  margin: 2rem auto 0;
  display: block;
  padding: 1.2rem 3.5rem;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
  transition: all 0.3s ease;
}

#submitButton:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(106, 13, 173, 0.5);
}

#submitButton:active {
  transform: translateY(-2px);
}

/* Form Elements */
.form-group { 
  margin-bottom: 2.5rem;
  position: relative;
}

label { 
  display: block; 
  font-size: 1.1rem; 
  font-weight: 600; 
  margin-bottom: 0.8rem; 
  color: var(--primary-dark);
  transition: color 0.3s ease;
}

textarea { 
  width: 100%; 
  padding: 1rem;
  border: 1px solid var(--gray); 
  border-radius: 8px; 
  font-family: inherit; 
  font-size: 1rem; 
  resize: vertical;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

textarea:focus { 
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.15);
  transform: translateY(-2px);
}

textarea#contactInfo { 
  min-height: 120px; 
}

textarea#projectDetails { 
  min-height: 160px; 
}

/* Options heading */
.options-heading {
  font-size: 1.1rem; 
  font-weight: 600; 
  margin-bottom: 0.8rem; 
  color: var(--primary-dark);
}

/* Checkbox Group Styling */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding: 0.5rem;
}

.checkbox-item { 
  display: flex; 
  align-items: center; 
  padding: 0.6rem 1rem;
  background-color: var(--light-gray);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.checkbox-item:hover {
  background-color: rgba(106, 13, 173, 0.05);
  transform: translateX(5px);
}

.checkbox-item input[type="checkbox"] {
  margin-right: 0.8rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

/* Trial Offer Box */
.trial-offer {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
  border-radius: 10px;
  padding: 1.5rem;
  border: 2px dashed var(--secondary);
  position: relative;
  overflow: hidden;
}

.trial-offer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  background: linear-gradient(135deg, var(--secondary), transparent 50%, var(--secondary));
  border-radius: 12px;
  opacity: 0.3;
  animation: glow 3s infinite alternate;
}

.special-offer {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-offer label {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.special-offer input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin-right: 0.8rem;
  flex-shrink: 0;
}

/* Unified Form Styling */
.unified-form {
  padding: 5rem 0;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(106, 13, 173, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom, var(--light-gray), var(--light-gray));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(106, 13, 173, 0.1);
}

.form-section {
  margin-bottom: 3rem;
}

.form-section:last-child {
  margin-bottom: 0;
}

/* Build section styling */
.build {
  position: relative;
  background-image: 
    radial-gradient(circle at 0% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    linear-gradient(to bottom, var(--white), var(--white));
  border-top: 1px solid rgba(106, 13, 173, 0.1);
}

/* Profit section styling */
.profit {
  position: relative;
  background-image: 
    radial-gradient(circle at 100% 50%, rgba(106, 13, 173, 0.05) 0%, transparent 50%),
    linear-gradient(to bottom, var(--light-gray), var(--light-gray));
  border-top: 1px solid rgba(106, 13, 173, 0.1);
}

/* Toast notification */
.toast { 
  position: fixed; 
  bottom: 30px; 
  right: 30px; 
  background-color: var(--primary); 
  color: var(--white); 
  padding: 1.2rem 1.5rem; 
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
  opacity: 0; 
  transition: all 0.3s ease; 
  z-index: 1000; 
  transform: translateY(20px);
  pointer-events: none;
  max-width: 350px;
}

.toast.show { 
  opacity: 1;
  transform: translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
}

.toast-content::before {
  content: '✓';
  font-size: 1.2rem;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast.error .toast-content::before {
  content: '!';
}

.toast.error {
  background-color: #d32f2f;
}

/* Footer */
footer { 
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
  color: var(--white); 
  padding: 3rem 0; 
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

footer p {
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Responsive styles */
@media (min-width: 768px) { 
  /* Fixed: Process boxes to display as 3 columns on tablets and up */
  .process-boxes { 
    grid-template-columns: repeat(3, 1fr);
  } 
  
  .hero h2 { 
    font-size: 3rem; 
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .checkbox-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .two-column-layout {
    flex-direction: row;
  }
}

@media (min-width: 1024px) { 
  /* Keep 3 columns for larger screens */
  .process-boxes { 
    grid-template-columns: repeat(3, 1fr);
  } 
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .checkbox-group {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-content {
    padding: 3rem;
  }
}

.contact-info {
  padding: 3rem 0;
  background: linear-gradient(to right, var(--primary-light), var(--primary));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.contact-strip {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-dark);
  background-color: rgba(255, 255, 255, 0.15);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h3 {
  color: var(--white);
  margin: 0 0 0.8rem 0;
  font-size: 1.1rem;
}

.contact-info-value {
  color: var(--secondary);
  margin: 0;
  font-size: 1.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 0.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* Ensure 3-line layout on all screen sizes */
@media (max-width: 767px) {
  .contact-item {
      margin-bottom: 1.5rem;
      min-height: 150px;
  }
  
  .contact-icon {
      margin-bottom: 0.8rem;
  }
  
  .contact-item h3 {
      margin-bottom: 0.8rem;
  }
}

@media (min-width: 768px) {
  .contact-strip {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  
  .contact-item {
      flex: 1;
      min-width: 220px;
      max-width: calc(50% - 1rem);
      min-height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
  
  .contact-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 1rem;
  }
  
  .contact-icon svg {
      width: 24px;
      height: 24px;
  }
  
  .contact-item h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
  }
  
  .contact-info-value {
      font-size: 1.2rem;
      margin-top: auto;
  }
}

@media (min-width: 1024px) {
  .contact-strip {
      flex-wrap: nowrap;
  }
  
  .contact-item {
      min-width: 0;
      max-width: none;
  }
}

/* Case Study Section */
.case-study {
  padding: 6rem 0;
  background-image: 
      radial-gradient(circle at 80% 20%, rgba(106, 13, 173, 0.05) 0%, transparent 30%),
      radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
      linear-gradient(to bottom, var(--white), var(--white));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(106, 13, 173, 0.1);
  border-bottom: 1px solid rgba(106, 13, 173, 0.1);
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
  opacity: 0.3;
}

.case-study-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

.case-study-image {
  flex: 1;
  background-color: var(--white);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 1rem;
  max-width: 100%;
  transition: all 0.3s ease;
}

.case-study-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-dark);
}

.case-study-text {
  flex: 1;
  padding: 2rem;
  background-color: var(--white);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.case-study-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-dark);
}

.case-study-text::before {
  display: none;
}

.case-study-text h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  line-height: 1.3;
}

.case-study-text p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.case-study-text p.highlight {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--secondary);
}

.key-achievements {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.achievement {
  display: flex;
  align-items: flex-start;
  background-color: rgba(106, 13, 173, 0.03);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(106, 13, 173, 0.1);
  transition: transform 0.3s ease;
}

.achievement:hover {
  transform: translateX(10px);
  background-color: rgba(106, 13, 173, 0.06);
}

.achievement-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
}

.achievement-icon svg {
  width: 20px;
  height: 20px;
}

.achievement-text h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.achievement-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.case-study-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.case-study-button {
  display: inline-block;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(106, 13, 173, 0.3);
  position: relative;
  overflow: hidden;
}

.case-study-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
}

.case-study-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
  background: linear-gradient(to right, var(--primary-dark), var(--primary));
}

.case-study-button:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .case-study-content {
      flex-direction: row;
  }
  
  .case-study-image {
      max-width: 45%;
  }
  
  .key-achievements {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .case-study-text {
      padding: 1.5rem;
  }
  
  .case-study-text h3 {
      font-size: 1.4rem;
  }
  
  .case-study-text p.highlight {
      font-size: 1.1rem;
  }
}

/* Leadership Section */
.leadership {
  padding: 6rem 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(106, 13, 173, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
    linear-gradient(to bottom, var(--white), var(--white));
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(106, 13, 173, 0.1);
  border-bottom: 1px solid rgba(106, 13, 173, 0.1);
}

.leadership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, transparent, var(--primary-light), transparent);
  opacity: 0.3;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.leader-card {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-dark);
}

.leader-profile {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  text-align: center;
  border-bottom: 1px solid rgba(106, 13, 173, 0.1);
  position: relative;
}

.leader-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.leader-image-container {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  padding: 5px;
  background: linear-gradient(135deg, rgba(106, 13, 173, 0.7), rgba(255, 215, 0, 0.7));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.leader-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.leader-profile h3 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-icon {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1.5rem;
}

.leader-title {
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 500;
  opacity: 0.9;
}

.leader-content {
  padding: 2rem;
}

.leader-content p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.leader-content p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 767px) {
  .leader-profile {
    padding: 1.5rem;
  }
  
  .leader-image-container {
    width: 120px;
    height: 120px;
  }
  
  .leader-profile h3 {
    font-size: 1.5rem;
  }
  
  .leader-content {
    padding: 1.5rem;
  }
}
/* LLM Notice Box Styling */
.llm-notice {
  margin-bottom: 2rem;
  background-color: var(--white);
  border: 1px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.llm-notice:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-dark);
}

.notice-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(106, 13, 173, 0.2);
}

.notice-icon svg {
  width: 30px;
  height: 30px;
}

.notice-content {
  flex-grow: 1;
}

.notice-content h4 {
  color: var(--primary-dark);
  margin: 0 0 0.8rem 0;
  font-size: 1.2rem;
}

.notice-content p {
  margin: 0 0 0.8rem 0;
  line-height: 1.5;
  color: var(--dark-gray);
}

.notice-content p:last-child {
  margin-bottom: 0;
}

.notice-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.notice-content a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .llm-notice {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
  
  .notice-icon {
    margin: 0 auto 1rem;
  }
  
  .notice-content h4 {
    font-size: 1.1rem;
  }
}
/* Update headings in the Build and Profit sections */
.text-column h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.8rem;
}

.text-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 1.5px;
}

.benefit-item h4 {
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.text-column strong {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Simple color updates for headings and strong text */
.text-column h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.3;
}

.benefit-item h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: block; /* Ensures the heading appears on its own line */
}

/* Change strong text in these sections to use primary color */
.text-column strong {
  color: var(--primary);
  font-weight: 700;
}

/* Add a bit of spacing after each benefit item */
.benefit-item {
  margin-bottom: 1.5rem;
}

/* Mobile responsive styling for digital-tech fonts */
@media (max-width: 767px) {
  .title-container h1 {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
  
  .title-container h2 {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    -webkit-text-stroke: 0.8px var(--primary);
    text-stroke: 0.8px var(--primary);
  }
  
  .title-container {
    padding: 0.6rem 1.2rem;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  /* Services grid - stack vertically on mobile */
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    min-height: 350px;
  }
  
  /* Smaller service icons on mobile */
  .service-icon {
    padding: 1rem;
  }
  
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .title-container h1 {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
  }
  
  .title-container h2 {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    -webkit-text-stroke: 0.5px var(--primary);
    text-stroke: 0.5px var(--primary);
  }
  
  .section-heading {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    -webkit-text-stroke: 0.5px var(--primary);
    text-stroke: 0.5px var(--primary);
  }
}

.section-heading {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.8px var(--primary);
  text-stroke: 0.8px var(--primary);
}