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

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #0f172a;
  overflow-x: hidden;
}

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

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

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
  animation: float 20s infinite ease-in-out;
}

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

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

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 10%;
  animation-delay: -15s;
}

.shape-5 {
  width: 100px;
  height: 100px;
  top: 80%;
  right: 40%;
  animation-delay: -7s;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  color: #f8fafc;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  font-weight: 800;
}
h2 {
  font-size: 3rem;
  font-weight: 700;
}
h3 {
  font-size: 2rem;
  font-weight: 600;
}
h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.text-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: white;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.4);
}

.btn-premium {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #f8fafc;
  border: 2px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-premium:hover {
  border-color: #3b82f6;
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #f8fafc;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-light:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 20px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-shine {
  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.6s;
}

.btn:hover .btn-shine {
  left: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-avatar {
  position: relative;
  width: 60px;
  height: 60px;
}

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

.avatar-ring {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 3px solid transparent;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.logo-text h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #f8fafc;
  font-family: "Playfair Display", serif;
}

.logo-text span {
  font-size: 1rem;
  color: #3b82f6;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #f8fafc;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background: #f8fafc;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #60a5fa;
  border: 2px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #f8fafc;
  position: relative;
}

.title-decoration {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.3rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 500;
}

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

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.experience-card {
  bottom: 30px;
  right: 30px;
}

.trust-card {
  top: 30px;
  left: 30px;
}

.floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.floating-card .card-content strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
  line-height: 1;
}

.floating-card .card-content span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

/* Section Styles */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(20px);
  color: #60a5fa;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}

.section-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

/* Services Section */
.services {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.services-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-color: rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-icon:hover .icon-bg {
  opacity: 1;
}

.service-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.service-card p {
  color: #cbd5e1;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin: 2rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #cbd5e1;
  font-size: 1rem;
}

.service-features i {
  color: #3b82f6;
  font-size: 1rem;
  width: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 2rem;
  font-size: 1.1rem;
}

.service-link:hover {
  gap: 16px;
  color: #3b82f6;
}

/* About Section */
.about {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
}

.about-image-container .image-frame {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.about-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.certification-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.certification-badge .badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.certification-badge .badge-content strong {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
  line-height: 1;
}

.certification-badge .badge-content span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.about-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-icon:hover .icon-glow {
  opacity: 1;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.feature-content p {
  color: #cbd5e1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Testimonial Section */
.testimonial {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

.testimonial-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 4rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.quote-decoration {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 2rem;
}

.testimonial-card blockquote {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: #f8fafc;
  margin-bottom: 3rem;
  font-family: "Playfair Display", serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.testimonial-author .author-avatar {
  position: relative;
  width: 80px;
  height: 80px;
}

.testimonial-author img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #f8fafc;
}

.author-info p {
  color: #cbd5e1;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.rating {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.contact-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.contact-method {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.method-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #f8fafc;
}

.method-content p {
  color: #60a5fa;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.method-content span {
  color: #cbd5e1;
  font-size: 1rem;
}

.contact-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Fullscreen Wrapper */
.contact-form-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

/* Form Container with Max Width Lock */
.contact-form-container {
  width: 100%;
  max-width: 800px;
  position: relative;
}

/* Success Message Box (Shared Width) */
.success-box {
  display: none;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  text-align: center;
  color: #f8fafc;
  background-color: rgba(42, 42, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Form Styling */
.contact-form {
  width: 100%;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
  color: #f8fafc;
  box-sizing: border-box;
}

/* Labels */
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #f8fafc;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

/* Input Glow */
.input-glow {
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  opacity: 0.4;
  margin-top: -1rem;
  border-radius: 10px;
}

/* Submit Button */
button[type="submit"] {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

button[type="submit"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

button[type="submit"]:hover::after {
  left: 100%;
}

button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.5);
}

.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.form-group input:focus + .input-glow,
.form-group select:focus + .input-glow,
.form-group textarea:focus + .input-glow {
  opacity: 1;
}

/* Footer */
.footer {
  padding: 5rem 0 2rem;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

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

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-description {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}

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

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  transform: translateY(-4px);
}

.link-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover .link-glow {
  opacity: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f8fafc;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.footer-section ul li a:hover {
  color: #60a5fa;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 1rem;
}

.contact-item i {
  color: #3b82f6;
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  margin-bottom: 2rem;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 1rem;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Hero section mobile reordering */
  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-text {
    order: 1;
  }

  .hero-buttons {
    order: 2;
    margin-bottom: 2rem;
    justify-content: center;
  }

  .hero-visual {
    order: 3;
    margin-bottom: 2rem;
  }

  .hero-stats {
    order: 4;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .stat-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 140px;
    padding: 1rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-icon {
    margin: 0 auto;
  }

  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* Mobile Header Fixes */
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.5rem;
    padding: 1rem 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Hide phone number text on mobile, show only icon */
  .phone-text {
    display: none;
  }

  .btn-primary {
    padding: 12px;
    min-width: 48px;
    justify-content: center;
  }

  /* Add mobile spacing to prevent content hiding behind header */
  .hero {
    padding-top: 130px;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .services,
  .about,
  .contact,
  .testimonial {
    padding: 6rem 0;
    margin-top: 20px; /* Additional spacing for mobile */
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

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

  .contact-methods {
    gap: 1.5rem;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .service-card {
    padding: 2.5rem;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 1rem;
  }

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

  .floating-card {
    display: none;
  }

  .certification-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-content {
    padding: 0.8rem 0;
    min-height: 80px;
  }

  .logo-text h3 {
    font-size: 1.3rem;
  }

  .logo-text span {
    font-size: 0.9rem;
  }

  .logo-avatar {
    width: 50px;
    height: 50px;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 3rem;
  }

  .services,
  .about,
  .contact,
  .testimonial {
    padding: 4rem 0;
    margin-top: 15px; /* Additional mobile spacing */
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-description,
  .section-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-badge,
  .section-badge {
    padding: 10px 20px;
    font-size: 12px;
  }

  .service-card,
  .form-card {
    padding: 2rem;
    border-radius: 24px;
  }

  .feature-card {
    padding: 20px;
    border-radius: 16px;
  }

  .contact-method {
    padding: 1.2rem;
    border-radius: 16px;
  }

  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .btn-large {
    padding: 16px 28px;
    font-size: 15px;
  }

  .stat-card {
    padding: 14px;
    gap: 12px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1.2rem;
    font-size: 0.95rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }

  .testimonial-card blockquote {
    font-size: 1.2rem;
  }

  .quote-decoration {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 2.5rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .service-card,
  .form-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }

  .services,
  .about,
  .contact,
  .testimonial {
    margin-top: 10px; /* Minimal spacing for very small screens */
  }
}
/* Add this at the end of your existing CSS, before the media queries */

/* Mobile-specific hero layout adjustments */
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  
  .hero-text {
    order: 1;
  }
  
  .hero-buttons {
    order: 2;
    margin-bottom: 2rem;
  }
  
  .hero-visual {
    order: 3;
    margin-bottom: 2rem;
  }
  
  .hero-stats {
    order: 4;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 140px;
    padding: 1rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .stat-icon {
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .stat-card {
    flex: 1 1 100%;
  }
}
/* Add this at the end of your existing CSS, before the media queries */

/* Mobile-specific hero layout adjustments */
@media (max-width: 768px) {
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  
  /* Keep original text and buttons order */
  .hero-text {
    order: 1;
  }
  
  /* Move buttons to appear right after text */
  .hero-buttons {
    order: 2;
    margin-bottom: 2rem;
  }
  
  /* Move image to appear after buttons */
  .hero-visual {
    order: 3;
    margin-bottom: 2rem;
  }
  
  /* Move stats to appear after image */
  .hero-stats {
    order: 4;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  
  /* Remove stats from hero-text container */
  .hero-text .hero-stats {
    display: none;
  }
  
  /* Show stats in their new position */
  .hero-content > .hero-stats {
    display: flex;
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 140px;
    padding: 1rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .stat-icon {
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .stat-card {
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  /* ... (keep all existing mobile styles) ... */

  /* Hero section mobile reordering */
  .hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-text {
    order: 1;
  }

  .hero-buttons {
    order: 2;
    margin-bottom: 2rem;
    justify-content: center;
  }

  .hero-visual {
    order: 3;
    margin-bottom: 2rem;
  }

  .hero-stats {
    order: 4;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .stat-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 140px;
    padding: 1rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-icon {
    margin: 0 auto;
  }

  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .contact-method {
    width: 100%;
  }
}
/* === Contact Section === */
.contact1 {
  position: relative;
  padding: 5rem 2rem;
  color: #f8fafc;
  background: #111827;
  overflow: hidden;
}

/* === Background Gradient & Pattern Layers === */
.contact1-gradient {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(88, 28, 135, 0.3), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.contact1-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.05;
  z-index: 0;
}

/* === Section Layout === */
.contact1 .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Section Header === */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge span {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: bold;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1rem 0;
  color: #fff;
}

.text-gradient {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* === Contact Content Wrapper === */
.contact1-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* === Info Block === */
.contact1-info {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
}

.contact-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* === Contact Method Cards Grid === */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-items: center; /* center cards horizontally */
}

/* === Individual Card === */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
  flex-wrap: nowrap;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  max-width: 480px; /* keeps consistent width */
}

.contact-method:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* === Icon Styling === */
.method-icon {
  flex-shrink: 0;
}

.method-icon i {
  font-size: 1.75rem;
  color: #ffffff; /* white icon color */
  background: rgba(255, 255, 255, 0.15);
  padding: 0.75rem;
  border-radius: 50%;
  min-width: 48px;
  text-align: center;
}

/* === Text Content Styling === */
.method-content {
  flex-grow: 1;
  min-width: 0;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: left;
}

.method-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #f8fafc;
}

.method-content p,
.method-content span {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 0.2rem;
  line-height: 1.4;
  word-break: break-word;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .contact-method {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .method-icon i {
    font-size: 1.5rem;
    padding: 0.6rem;
  }

  .section-description,
  .contact-description {
    font-size: 1rem;
  }

  .method-content h4 {
    font-size: 1rem;
  }

  .method-content p,
  .method-content span {
    font-size: 0.95rem;
  }
}
