  /* Base styles */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


[class*="section"]:not(.sa-about-section) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Animation when section becomes visible */
[class*="section"]:not(.sa-about-section).section-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for children of sections */
[class*="section"]:not(.sa-about-section) > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Animation when children become visible */
[class*="section"]:not(.sa-about-section) > *.child-visible {
  opacity: 1;
  transform: translateY(0);
}


body {
    overflow-x: hidden;
    background: #000000;
    position: rergba(28, 28, 28, 0.498)
}

/* Premium Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Premium Typography System */
/* All Headings - Playfair Display (Elegant & Premium) */
h1, h2, h3, h4, h5, h6 {
 font-family: 'Playfair Display', serif;
 font-weight: 700;
 letter-spacing: -0.02em;
 line-height: 1.2;
}

h1 {
 font-size: 3.5rem;
 font-weight: 800;
}

h2 {
 font-size: 2.8rem;
 font-weight: 700;
}

h3 {
 font-size: 2.2rem;
 font-weight: 600;
}

h4 {
 font-size: 1.8rem;
 font-weight: 600;
}

h5 {
 font-size: 1.4rem;
 font-weight: 500;
}

h6 {
 font-size: 1.2rem;
 font-weight: 500;
}

/* All Paragraphs - Inter (Clean & Safe) */
p {
 font-family: 'Inter', sans-serif;
 font-weight: 400;
 letter-spacing: 0.01em;
 line-height: 1.7;
 font-size: 1rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
 h1 { font-size: 2.5rem; }
 h2 { font-size: 2rem; }
 h3 { font-size: 1.6rem; }
 h4 { font-size: 1.4rem; }
 h5 { font-size: 1.2rem; }
 h6 { font-size: 1.1rem; }
 p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
 h1 { font-size: 2rem; }
 h2 { font-size: 1.6rem; }
 h3 { font-size: 1.4rem; }
 h4 { font-size: 1.2rem; }
 h5 { font-size: 1.1rem; }
 h6 { font-size: 1rem; }
 p { font-size: 0.9rem; }
}


/* Menu Icon Container */
.menu-icon-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1050;
}

/* Menu Icon */
.menu-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.1);
}

.menu-icon:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Logo in icon */
.menu-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Menu content */
.menu-collapse {
  position: absolute;
  bottom: 60px;
  left: 0;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  padding: 15px;
  width: 200px;
  z-index: 1040;
}

/* Menu navigation */
.menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  margin: 10px 0;
}

.menu-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.menu-link:hover {
  color: #007bff;
}

.menu-button {
  width: 100%;
  margin-top: 5px;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 85px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1050;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
}

/* Animated Background */
.background-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 142, 255, 0.15) 0%, rgba(30, 84, 255, 0.05) 70%, transparent 100%);
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -3%;
  animation-delay: -3s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 70%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Base Layout */
.sa-services-section {
  position: relative;
  padding: 120px 5% 140px;
  overflow: hidden;
}

/* Premium Badge */
.premium-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.premium-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(74, 142, 255, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.badge-icon {
  font-size: 1.1rem;
  color: #4a8eff;
  animation: pulse 2s infinite;
}

.badge-glow {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(45deg, rgba(74, 142, 255, 0.1), rgba(30, 84, 255, 0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-badge:hover .badge-glow {
  opacity: 1;
}

.sa-services-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.sa-services-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Enhanced Header */
.header-decoration {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
}

.deco-line {
  position: absolute;
  background: linear-gradient(45deg, rgba(74, 142, 255, 0.3), transparent);
}

.deco-line-1 {
  width: 100px;
  height: 2px;
  transform: rotate(45deg);
}

.deco-line-2 {
  width: 60px;
  height: 2px;
  top: 10px;
  left: 15px;
  transform: rotate(-45deg);
}

.sa-header-wrapper {
  position: relative;
  text-align: left;
}

.sa-services-heading {
  position: relative;
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #dfe6f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.heading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  color: rgba(74, 142, 255, 0.4);
  font-size: 1.5rem;
  animation: sparkle 3s infinite;
}

.particle-1 {
  top: -10px;
  right: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 50%;
  right: 10%;
  animation-delay: -1s;
}

.particle-3 {
  bottom: -10px;
  right: 30%;
  animation-delay: -2s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}

.accent-text {
  background: linear-gradient(135deg, #4a8eff 0%, #1e54ff 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.sa-header-line {
  position: relative;
  width: 120px;
  height: 4px;
  overflow: hidden;
  border-radius: 3px;
}

.line-core {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(74, 142, 255, 0.3), #4a8eff, rgba(74, 142, 255, 0.3));
}

.line-glow {
  position: absolute;
  width: 40px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-40px); }
  100% { transform: translateX(160px); }
}

/* Enhanced Description */
.description-frame {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.description-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #4a8eff, #1e54ff);
  border-radius: 0 0 0 20px;
}

.sa-services-description {
  max-width: 650px;
}

.sa-services-para {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.agency-name {
  font-weight: 800;
  background: linear-gradient(135deg, #4a8eff 0%, #1e54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Enhanced Tech Showcase */
.sa-tech-showcase {
  margin-top: 20px;
}

.tech-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.tech-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-separator {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 142, 255, 0.3), transparent);
}

.sa-tech-logos {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.sa-tech-logo {
  position: relative;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.tech-border {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.tech-glow {
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  background: linear-gradient(45deg, rgba(74, 142, 255, 0.2), rgba(30, 84, 255, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.sa-tech-logo:hover {
  transform: translateY(-5px) scale(1.05);
}

.sa-tech-logo:hover .tech-border {
  border-color: rgba(74, 142, 255, 0.5);
}

.sa-tech-logo:hover .tech-glow {
  opacity: 1;
}

.sa-tech-logo img {
  width: 70%;
  height: auto;
  object-fit: contain;
  z-index: 1;
}

/* Enhanced Benefits Section */
.benefits-header {
  margin-bottom: 35px;
  text-align: center;
}

.benefits-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #dfe6f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.benefits-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.sa-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sa-benefit-card {
  position: relative;
  height: 100%;
}

.card-featured .card-inner {
  background: rgba(74, 142, 255, 0.08);
  border: 1px solid rgba(74, 142, 255, 0.3);
}

.card-inner {
  position: relative;
  padding: 35px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.card-glow-effect {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(45deg, rgba(74, 142, 255, 0.1), rgba(30, 84, 255, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.sa-benefit-card:hover .card-inner {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(30, 84, 255, 0.25);
  border-color: rgba(74, 142, 255, 0.4);
}

.sa-benefit-card:hover .card-glow-effect {
  opacity: 1;
}

.sa-card-icon {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 142, 255, 0.2), rgba(30, 84, 255, 0.1));
  margin-bottom: 20px;
}

.icon-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(74, 142, 255, 0.3) 0%, transparent 70%);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.sa-card-icon i {
  font-size: 1.4rem;
  color: #4a8eff;
  z-index: 1;
}

.sa-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sa-card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  flex-grow: 1;
  margin-bottom: 20px;
}

.card-accent-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(74, 142, 255, 0.5), #4a8eff, rgba(74, 142, 255, 0.5));
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.sa-benefit-card:hover .card-accent-line {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sa-services-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .sa-header-wrapper {
    text-align: center;
  }
  
  .sa-header-line {
    margin: 20px auto 0;
  }
  
  .sa-tech-logos {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sa-services-section {
    padding: 80px 5% 100px;
  }
  
  .sa-services-heading {
    font-size: 2.5rem;
  }
  
  .sa-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .orb {
    display: none;
  }
}

/* Minimalist Section Base */
.sa-social-section {
  position: relative;
  overflow: hidden;
  padding: 100px 5% 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sa-social-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Subtle Background Aurora */
.minimal-aurora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.aurora-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: gentle-float 25s infinite ease-in-out;
}

.aurora-1 {
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 142, 255, 0.3) 0%, transparent 70%);
  animation-delay: 0s;
}

.aurora-2 {
  bottom: 30%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 84, 255, 0.2) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes gentle-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -15px) scale(1.05); }
  66% { transform: translate(-5px, 10px) scale(0.95); }
}

/* Clean Header */
.sa-header-wrapper {
  margin-bottom: 50px;
  text-align: center;
}

.sa-social-heading {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}

.accent-text {
  background: linear-gradient(135deg, #4a8eff 0%, #1e54ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sa-header-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, rgba(74, 142, 255, 0.3), #4a8eff, rgba(74, 142, 255, 0.3));
  margin: 0 auto;
  border-radius: 2px;
}

/* Simplified Description */
.sa-social-description {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.sa-social-para {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Clean Social Logos */
.sa-social-showcase {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}

.sa-social-logos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.sa-social-logo {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.sa-social-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(74, 142, 255, 0.3);
  box-shadow: 0 8px 25px -8px rgba(74, 142, 255, 0.3);
}

.sa-social-logo img {
  width: 60%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sa-social-logo:hover img {
  transform: scale(1.1);
}

/* Simplified Benefits Grid */
.sa-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.sa-benefit-card {
  padding: 30px 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-align: center;
}

.sa-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 142, 255, 0.2);
  box-shadow: 0 10px 30px -10px rgba(74, 142, 255, 0.2);
}

.sa-benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(74, 142, 255, 0.15), rgba(30, 84, 255, 0.1));
}

.sa-benefit-icon i {
  font-size: 1.3rem;
  color: #4a8eff;
}

.sa-benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #e0e6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sa-benefit-description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sa-social-section {
    padding: 80px 5% 100px;
  }
  
  .sa-social-heading {
    font-size: 2.2rem;
  }
  
  .sa-social-logos {
    gap: 20px;
  }
  
  .sa-social-logo {
    width: 60px;
    height: 60px;
  }
  
  .sa-benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .aurora-1, .aurora-2 {
    transform: scale(0.7);
  }
}

@media (max-width: 480px) {
  .sa-social-heading {
    font-size: 1.8rem;
  }
  
  .sa-social-para {
    font-size: 0.9rem;
  }
  
  .sa-benefit-card {
    padding: 25px 20px;
  }
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  color: white;
}
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    color: #60a5fa;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
}

.cta-button .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Floating Glass Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glass-card {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
}

.card-1 {
    width: 280px;
    height: 180px;
    top: 15%;
    right: 8%;
    animation: floatCard 8s ease-in-out infinite, fadeIn 1s ease-out 1.3s forwards;
}

.card-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    animation: floatCard 10s ease-in-out infinite reverse, fadeIn 1s ease-out 1.5s forwards;
}

.card-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation: floatCard 12s ease-in-out infinite, fadeIn 1s ease-out 1.7s forwards;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        display: none;
    }
    
    .hero {
        padding: 1.5rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}


/* Stars container */
.sa-stars-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

        /* Premium About Section Styles */
        .sa-premium-about {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            overflow: hidden;
            background: transparent;
        }

        .sa-content-container {
            position: relative;
            max-width: 1400px;
            width: 100%;
            padding: 80px 40px;
            z-index: 2;
        }

        .sa-main-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: center;
        }

        .sa-logo-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .sa-logo-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            perspective: 1000px;
            margin-bottom: 20px;
        }

        .sa-logo-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(76, 0, 255, 0.6) 0%, rgba(76, 0, 255, 0) 70%);
            filter: blur(20px);
            z-index: -1;
            animation: sa-pulse 4s infinite alternate;
        }

        .sa-agency-logo {
            max-width: 350px;
            height: auto;
            filter: drop-shadow(0 0 15px rgba(160, 207, 255, 0.7));
            border-radius: 50%;
            transform-style: preserve-3d;
            animation: sa-gyro-rotate 8s infinite linear;
        }

        .sa-text-section {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sa-title-container {
            margin-bottom: 50px;
            position: relative;
        }

        .sa-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 100;
            margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(160, 207, 255, 0.3);
            animation: sa-gradient-flow 8s linear infinite;
            transform: translateX(0);
            transition: all 0.3s ease;
        }

        .sa-text-content {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .sa-text-block {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.05) 0%, 
                rgba(76, 0, 255, 0.08) 50%, 
                rgba(160, 207, 255, 0.05) 100%);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
            transform: translateY(0);
        }

        .sa-text-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(160, 207, 255, 0.1), 
                transparent);
            transition: all 0.8s ease;
        }

        .sa-text-block:hover::before {
            left: 100%;
        }

        .sa-text-block:hover {
            transform: translateY(-8px) translateX(5px);
            border-color: rgba(76, 0, 255, 0.4);
            box-shadow: 
                0 20px 60px rgba(76, 0, 255, 0.2),
                inset 0 0 30px rgba(255, 255, 255, 0.1);
        }

        .sa-text-block:nth-child(even):hover {
            transform: translateY(-8px) translateX(-5px);
        }

        .sa-text-block p {
            margin: 0;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #e0e0ff;
            font-weight: 300;
            text-shadow: 0 0 10px rgba(0, 196, 255, 0.5);
        }

        .sa-founder-highlight {
            color: #3c0bff;
            font-weight: 500;
            text-shadow: 0 0 10px rgba(60, 11, 255, 0.4);
        }

        .sa-company-highlight {
            color: #a0cfff;
            font-weight: 500;
            text-shadow: 0 0 10px rgba(160, 207, 255, 0.4);
        }

        /* Animations */
        @keyframes sa-pulse {
            0% {
                opacity: 0.3;
                transform: scale(0.9);
            }
            100% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }

        @keyframes sa-gyro-rotate {
            0% {
                transform: rotateY(0deg) rotateX(10deg);
            }
            25% {
                transform: rotateY(90deg) rotateX(20deg);
            }
            50% {
                transform: rotateY(180deg) rotateX(10deg);
            }
            75% {
                transform: rotateY(270deg) rotateX(20deg);
            }
            100% {
                transform: rotateY(360deg) rotateX(10deg);
            }
        }

        @keyframes sa-gradient-flow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Creative Staggered Layout for Desktop */
        @media (min-width: 1025px) {
            .sa-text-block:nth-child(1) {
                margin-left: 0;
            }
            
            .sa-text-block:nth-child(2) {
                margin-left: 60px;
                margin-top: -20px;
            }
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .sa-main-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .sa-content-container {
                padding: 60px 30px;
            }

            .sa-agency-logo {
                max-width: 280px;
            }

            .sa-text-block:nth-child(2) {
                margin-left: 0;
                margin-top: 0;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .sa-content-container {
                padding: 40px 20px;
            }

            .sa-main-content {
                gap: 40px;
            }

            .sa-agency-logo {
                max-width: 220px;
            }

            .sa-text-block {
                padding: 30px 25px;
            }

            .sa-text-block p {
                font-size: 1.1rem;
                line-height: 1.7;
            }

            .sa-title-container {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .sa-content-container {
                padding: 30px 15px;
            }

            .sa-text-content {
                gap: 25px;
            }

            .sa-text-block {
                padding: 25px 20px;
                border-radius: 20px;
            }

            .sa-text-block p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .sa-agency-logo {
                max-width: 180px;
            }

            .sa-title-container {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 400px) {
            .sa-agency-logo {
                max-width: 150px;
            }

            .sa-text-block p {
                font-size: 0.95rem;
            }
        }


.seo-section {
  position: relative;
  padding: 8rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  overflow: hidden;
}

.star-cluster {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  background-image: radial-gradient(2px 2px at calc(var(--x, 10) * 10%) calc(var(--y, 10) * 10%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 30) * 10%) calc(var(--y, 30) * 5%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 50) * 10%) calc(var(--y, 50) * 10%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 70) * 10%) calc(var(--y, 70) * 5%), white, transparent),
                    radial-gradient(2px 2px at calc(var(--x, 90) * 10%) calc(var(--y, 90) * 10%), white, transparent);
  opacity: 0.3;
  z-index: 0;
}

.seo-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.seo-visual {
  flex: 0 0 45%;
  position: relative;
  z-index: 3;
  height: 500px;
}

.orbit-visualization {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.planet-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, #4f46e5, #312e81);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
  z-index: 10;
  animation: corePulse 4s ease-in-out infinite alternate;
}

.planet-core span {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.orbit-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  z-index: 2;
}

.orbit-path-1 {
  width: 200px;
  height: 200px;
  animation: orbitRotate 20s linear infinite;
}

.orbit-path-2 {
  width: 280px;
  height: 280px;
  animation: orbitRotate 30s linear infinite reverse;
}

.orbit-path-3 {
  width: 360px;
  height: 360px;
  animation: orbitRotate 40s linear infinite;
}

.orbit-keyword {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.orbit-keyword span {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.search-engine-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 70deg,
    rgba(79, 70, 229, 0.05) 75deg 85deg,
    transparent 90deg 160deg,
    rgba(79, 70, 229, 0.05) 165deg 175deg,
    transparent 180deg 250deg,
    rgba(79, 70, 229, 0.05) 255deg 265deg,
    transparent 270deg 340deg,
    rgba(79, 70, 229, 0.05) 345deg 355deg
  );
  border-radius: 50%;
  animation: raysSpin 30s linear infinite;
  z-index: 1;
  opacity: 0.7;
}

.seo-content {
  flex: 0 0 50%;
  z-index: 3;
}

.seo-title {
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(79, 70, 229, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.2);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: #a5b4fc;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #e0e0ff;
}

.feature-card p {
  font-size: 0.95rem;
  color: #a5b4fc;
  line-height: 1.6;
}

@keyframes corePulse {
  0% {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    box-shadow: 0 0 40px rgba(79, 70, 229, 0.8);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes orbitRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes raysSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .seo-container {
    flex-direction: column;
    gap: 4rem;
  }
  
  .seo-visual {
    flex: 0 0 auto;
    height: 350px;
  }
  
  .orbit-visualization {
    width: 300px;
    height: 300px;
  }
  
  .orbit-path-1 {
    width: 150px;
    height: 150px;
  }
  
  .orbit-path-2 {
    width: 210px;
    height: 210px;
  }
  
  .orbit-path-3 {
    width: 270px;
    height: 270px;
  }
  
  .seo-content {
    flex: 0 0 auto;
  }
  
  .seo-title {
    text-align: center;
  }
  
  .seo-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .orbit-visualization {
    width: 250px;
    height: 250px;
  }
  
  .planet-core {
    width: 80px;
    height: 80px;
  }
  
  .orbit-path-1 {
    width: 120px;
    height: 120px;
  }
  
  .orbit-path-2 {
    width: 180px;
    height: 180px;
  }
  
  .orbit-path-3 {
    width: 240px;
    height: 240px;
  }
}

.space-faq-container {
  padding: 1rem;
}

.space-faq-title, .space-faq-more {
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.space-faq-item {
  margin-bottom: 8rem;
  position: relative;
}

/* Planet Question */
.space-faq-planet {
  background: linear-gradient(45deg, #001f3f, #003366);
  color: #fff;
  padding: 3rem;
  border-radius: 50%;
  position: relative;
  box-shadow: 
    0 0 50px rgba(0, 31, 63, 0.8),
    inset 0 0 30px rgba(255, 255, 255, 0.2);
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 4rem auto;
  z-index: 2;
}

.space-faq-planet-text {
  max-width: 90%;
  overflow-wrap: break-word;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Planet Rings */
.space-faq-planet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50px;
  right: -50px;
  height: 10px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.1) 80%,
    transparent);
  transform: perspective(500px) rotateX(45deg);
  z-index: -1;
  border-radius: 50%;
  animation: spaceFaqRingRotate 10s linear infinite;
}

@keyframes spaceFaqRingRotate {
  from { transform: perspective(500px) rotateX(45deg) rotate(0deg); }
  to { transform: perspective(500px) rotateX(45deg) rotate(360deg); }
}

/* Meteor Answer */
.space-faq-meteor {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 2.5rem;
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  transform: perspective(1000px) rotateX(-5deg);
  box-shadow: 
    0 0 30px rgba(74, 144, 226, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.space-faq-meteor-text {
  padding: 0.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Meteor Trail */
.space-faq-meteor::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2));
  animation: spaceFaqMeteorTrail 2s linear infinite;
}

@keyframes spaceFaqMeteorTrail {
  from { transform: translateX(0); opacity: 0; }
  50% { opacity: 0.5; }
  to { transform: translateX(200px); opacity: 0; }
}

/* Star Buttons */
.space-faq-actions {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.space-faq-btn {
  padding: 1rem;
  border: none;
  position: relative;
  cursor: pointer;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.space-faq-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px currentColor;
}

.space-faq-btn-edit {
  background: #4a90e2;
  color: white;
}

.space-faq-btn-delete {
  background: #e74c3c;
  color: white;
}

.space-faq-delete-form {
  display: inline-block;
}

/* Background Stars */
.space-faq-container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(2px 2px at 40px 70px, #fff, transparent),
    radial-gradient(2px 2px at 50px 160px, #fff, transparent),
    radial-gradient(2px 2px at 90px 40px, #fff, transparent),
    radial-gradient(2px 2px at 130px 80px, #fff, transparent);
  background-repeat: repeat;
  animation: spaceFaqTwinkle 4s ease-in-out infinite;
  opacity: 0.5;
  z-index: -1;
}

@keyframes spaceFaqTwinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}


.earth-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 20px;
}

.earth-container {
  text-align: center;
  max-width: 800px; /* Adjust if you want to limit the width of the section */
  margin: 0 auto; /* Center the container */
}

.earth-image {
  max-width: 100%;
  height: auto;
  width: 80%; /* Set a percentage of the container width */
  max-width: 600px; /* Set a maximum width for the image */
  display: block;
  margin: 0 auto;
}

.earth-description {
  margin-top: 20px;
  color: white;
}

.divider {
  border: 0;
  height: 1px;
  background: #504949; /* Line color */
  margin: 20px auto;
  width: 50%; /* Adjust width as needed */
}

.earth-description p {
  margin: 0;
  font-size: 16px; /* Adjust font size as needed */
}


/* Premium CEO Section */
.ceo-section {
  padding: 8rem 0;
  position: relative;
}

.ceo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 8rem;
  align-items: center;
}

/* Image Container */
.ceo-image-container {
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.ceo-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(15%) contrast(1.05);
}

.image-frame:hover .ceo-image {
  transform: scale(1.05);
}

.signature {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Content Container */
.ceo-content {
  position: relative;
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.quote-container {
  position: relative;
  margin-bottom: 4rem;
}

.quote-mark {
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  font-family: 'Times New Roman', serif;
  position: absolute;
  top: -2rem;
  left: -1rem;
  z-index: 1;
  font-weight: 400;
}

.ceo-quote {
  font-size: 2.2rem;
  line-height: 1.4;
  background: linear-gradient(135deg, #ffffff 0%, #64b5f6 30%, #1976d2 70%, #0d47a1 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  margin: 0;
  font-style: normal;
  animation: gradientShift 6s ease-in-out infinite;
}

/* CEO Info */
.ceo-info {
  position: relative;
}

.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #2196f3 0%, #64b5f6 50%, rgba(255, 255, 255, 0.3) 100%);
  margin-bottom: 2rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: expandLine 0.8s ease-out 1s forwards;
}

.ceo-name {
  font-size: 1.8rem;
  font-weight: 600;
  background: linear-gradient(90deg, #ffffff 0%, #90caf9 50%, #2196f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.ceo-title {
  font-size: 1rem;
  background: linear-gradient(90deg, #bbdefb 0%, #64b5f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

/* Animations */
@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ceo-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .ceo-image-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .ceo-image {
    height: 500px;
  }

  .quote-mark {
    left: 50%;
    transform: translateX(-50%);
  }

  .divider-line {
    margin: 0 auto 2rem;
  }
}

@media (max-width: 768px) {
  .ceo-section {
    padding: 4rem 0;
  }

  .ceo-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }

  .ceo-image-container {
    max-width: 300px;
  }

  .ceo-image {
    height: 400px;
  }

  .ceo-quote {
    font-size: 1.6rem;
  }

  .ceo-name {
    font-size: 1.5rem;
  }

  .quote-mark {
    font-size: 6rem;
    top: -1rem;
  }
}

@media (max-width: 480px) {
  .ceo-container {
    gap: 2rem;
  }

  .ceo-quote {
    font-size: 1.3rem;
  }

  .ceo-name {
    font-size: 1.3rem;
  }

  .signature {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

    /* Styles généraux pour la section showcase */
    .showcase-section {
      padding: 40px 0;
      max-width: 1000px;
      margin: 0 auto;
    }
  
    .showcase-title {
      font-size: 1.5rem;
      text-align: center;
      margin-bottom: 70px;
      font-weight: 100;
      position: relative;
      color: #0b5aa4;
    }
  
    .showcase-title::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg,rgb(11, 167, 245),rgb(6, 8, 114));
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
  
    /* Styles pour chaque catégorie */
    .showcase-category {
      margin-bottom: 100px;
    }
  
    .showcase-category:last-child {
      margin-bottom: 0;
    }
  
    .showcase-content {
      display: flex;
      align-items: center;
      gap: 60px;
    }
  
    /* Inverser l'ordre pour les sections alternées */
    .showcase-content.reverse {
      flex-direction: row-reverse;
    }
  
    /* Styles pour le texte */
    .showcase-text {
      flex: 1;
      padding: 0 20px;
    }
  
    .showcase-text h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      font-weight: 100;
      color: #ffffff;
      position: relative;
      display: inline-block;
    }
  
    .showcase-text h3::before {
      content: '';
      position: absolute;
      width: 30px;
      height: 30px;
      background-color: rgba(251, 190, 36, 0.824);
      border-radius: 50%;
      z-index: -1;
      left: -10px;
      top: -5px;
    }
  
    .showcase-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ffffff;
      margin-bottom: 20px;
    }
  
    .showcase-text a {
      color:rgb(207, 170, 19);
      font-weight: 100;
      text-decoration: none;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
    }
  
    .showcase-text a:hover {
      color: #d97706;
    }
  
    .showcase-text a::after {
      content: '→';
      margin-left: 5px;
      transition: transform 0.3s ease;
    }
  
    .showcase-text a:hover::after {
      transform: translateX(5px);
    }
  
    /* Styles pour les images */
    .showcase-image {
      flex: 1;
      position: relative;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
  
    .showcase-image:hover {
      transform: scale(1.02);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
  
    .showcase-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }
  
    /* Media queries pour la responsivité */
    @media (max-width: 991px) {
      .showcase-content, .showcase-content.reverse {
        flex-direction: column;
        gap: 40px;
      }
  
      .showcase-text, .showcase-image {
        width: 100%;
        padding: 0;
      }
    }
  
    @media (max-width: 768px) {
      .showcase-title {
        font-size: 2rem;
      }
      
      .showcase-text h3 {
        font-size: 1.5rem;
      }
      
      .showcase-category {
        margin-bottom: 60px;
      }
    }


 
.footer {
  color: #ffffff;
  width: 100%;
  padding: 3rem 0 1rem;
  margin: 0;
  border-top: 1px solid #ffffff;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}

/* Services Styles */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.services-list li:hover {
  color: #ffffff;
}

/* Contact Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
    z-index: 10; /* Ensures input is on top */
    pointer-events: auto; /* Ensures input is clickable */
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ffffff;
}

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

.social-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
    z-index: 10; /* Ensures input is on top */
    pointer-events: auto; /* Ensures input is clickable */
}

.social-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}


/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }

  .social-links {
      justify-content: center;
  }

  .contact-info {
      align-items: center;
  }

  .services-list {
      text-align: center;
  }
}