* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #7c3aed;
  --secondary: #2563eb;
  --dark: #060b1f;
  --dark-2: #0b122d;
  --text: #d7ddf1;
  --muted: #9da8c7;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.05);
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --transition: all 0.35s ease;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #040816 0%, #081127 50%, #050914 100%);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-small {
  padding: 70px 0;
}

.center {
  text-align: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: #d8b4fe;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Brand Logo Styles */
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
}

.brand-logo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.brand-logo::after {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0);
  opacity: 0;
  animation: none;
  transition: border-color 0.4s ease;
  z-index: 0;
}

.brand-logo i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0));
  position: relative;
  z-index: 2;
}

.brand-logo span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-logo:hover::before {
  opacity: 1;
  animation: expandPulse 0.6s ease-out;
}

.brand-logo:hover::after {
  border-color: rgba(124, 58, 237, 0.5);
  animation: rotateBorder 2s linear infinite;
}

.brand-logo:hover i {
  font-size: 58px;
  color: var(--white);
  transform: translateY(-12px) scale(1.2) rotateZ(360deg);
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.6)) 
          drop-shadow(0 10px 40px rgba(124, 58, 237, 0.4));
  animation: float 0.6s ease-in-out;
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.brand-logo:hover span {
  color: var(--white);
  transform: translateY(-6px);
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}

/* Individual Brand Colors */
.brand-logo:nth-child(1):hover i {
  filter: drop-shadow(0 0 20px rgba(66, 133, 244, 0.6)) 
          drop-shadow(0 10px 40px rgba(66, 133, 244, 0.4));
  color: #4285f4;
}

.brand-logo:nth-child(2):hover i {
  filter: drop-shadow(0 0 20px rgba(0, 120, 215, 0.6)) 
          drop-shadow(0 10px 40px rgba(0, 120, 215, 0.4));
  color: #0078d4;
}

.brand-logo:nth-child(3):hover i {
  filter: drop-shadow(0 0 20px rgba(255, 153, 0, 0.6)) 
          drop-shadow(0 10px 40px rgba(255, 153, 0, 0.4));
  color: #ff9900;
}

.brand-logo:nth-child(4):hover i {
  filter: drop-shadow(0 0 20px rgba(0, 165, 137, 0.6)) 
          drop-shadow(0 10px 40px rgba(0, 165, 137, 0.4));
  color: #14a085;
}

.brand-logo:nth-child(5):hover i {
  filter: drop-shadow(0 0 20px rgba(229, 29, 35, 0.6)) 
          drop-shadow(0 10px 40px rgba(229, 29, 35, 0.4));
  color: #e5231d;
}

.brand-logo:nth-child(6):hover i {
  filter: drop-shadow(0 0 20px rgba(30, 215, 96, 0.6)) 
          drop-shadow(0 10px 40px rgba(30, 215, 96, 0.4));
  color: #1ed760;
}

@keyframes expandPulse {
  0% {
    width: 60px;
    height: 60px;
    opacity: 0.8;
  }
  100% {
    width: 110px;
    height: 110px;
    opacity: 0;
  }
}

/* Decorative Background Image */
.decorative-bg {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  opacity: 0.8;
  margin-top: -2px;
  z-index: 1;
}

.about-bg {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
}

.bg-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}

/* Floating Circle Animations */
@keyframes floatCircle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes floatCircleSlow {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-40px);
  }
}

@keyframes floatCircleSlower {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
}

@keyframes waveLine {
  0%, 100% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 50;
  }
}

.float-circle {
  animation: floatCircle 6s ease-in-out infinite;
}

.float-circle-slow {
  animation: floatCircleSlow 8s ease-in-out infinite;
}

.float-circle-slower {
  animation: floatCircleSlower 10s ease-in-out infinite;
}

.wave-line {
  stroke-dasharray: 100;
  animation: waveLine 4s ease-in-out infinite;
}

.wave-line-delay {
  stroke-dasharray: 100;
  animation: waveLine 5s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-12px) scale(1.2) rotateZ(0deg);
  }
  50% {
    transform: translateY(-16px) scale(1.22) rotateZ(180deg);
  }
}

/* Cloud Platform Icons */
.cloud-platforms {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: pointer;
}

.platform::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(37, 99, 235, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.platform::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0);
  opacity: 0;
  z-index: 0;
  transition: border-color 0.4s ease;
}

.platform i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}

.platform span {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.platform:hover::before {
  opacity: 1;
  animation: cloudPulse 0.6s ease-out;
}

.platform:hover::after {
  border-color: rgba(37, 99, 235, 0.6);
  animation: spinBorder 2.5s linear infinite;
}

.platform:hover i {
  font-size: 58px;
  color: var(--white);
  transform: translateY(-14px) scale(1.2) rotateZ(-360deg);
  filter: drop-shadow(0 0 25px rgba(37, 99, 235, 0.7)) 
          drop-shadow(0 12px 50px rgba(37, 99, 235, 0.5));
  animation: bounce 0.6s ease-in-out;
  text-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
}

.platform:hover span {
  color: var(--white);
  transform: translateY(-8px);
  text-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

/* Individual Cloud Platform Colors */
.platform:nth-child(1):hover i {
  filter: drop-shadow(0 0 25px rgba(255, 153, 0, 0.7)) 
          drop-shadow(0 12px 50px rgba(255, 153, 0, 0.5));
  color: #ff9900;
}

.platform:nth-child(2):hover i {
  filter: drop-shadow(0 0 25px rgba(0, 120, 215, 0.7)) 
          drop-shadow(0 12px 50px rgba(0, 120, 215, 0.5));
  color: #0078d4;
}

.platform:nth-child(3):hover i {
  filter: drop-shadow(0 0 25px rgba(66, 133, 244, 0.7)) 
          drop-shadow(0 12px 50px rgba(66, 133, 244, 0.5));
  color: #4285f4;
}

@keyframes cloudPulse {
  0% {
    width: 65px;
    height: 65px;
    opacity: 0.9;
  }
  100% {
    width: 125px;
    height: 125px;
    opacity: 0;
  }
}

@keyframes spinBorder {
  0% {
    transform: rotate(-360deg) translateX(-50%);
  }
  100% {
    transform: rotate(0deg) translateX(-50%);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-14px) scale(1.2) rotateZ(0deg);
  }
  25% {
    transform: translateY(-22px) scale(1.22) rotateZ(-90deg);
  }
  50% {
    transform: translateY(-28px) scale(1.25) rotateZ(-180deg);
  }
  75% {
    transform: translateY(-22px) scale(1.22) rotateZ(-270deg);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(85, 74, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(85, 74, 255, 0.45);
}

/* Section Background Images */
.about-section,
.services-overview,
.portfolio,
.testimonials,
.blog,
.faq,
.contact {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-section::before,
.services-overview::before,
.portfolio::before,
.testimonials::before,
.blog::before,
.faq::before,
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 31, 0.75);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.about-section > *,
.services-overview > *,
.portfolio > *,
.testimonials > *,
.blog > *,
.faq > *,
.contact > * {
  position: relative;
  z-index: 2;
}

/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-svg {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.15));
  transition: all 0.4s ease;
}

.logo:hover .logo-svg {
  filter: drop-shadow(0 8px 20px rgba(124, 58, 237, 0.3));
  transform: scale(1.1);
}

.footer-logo-svg {
  height: 45px;
  width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.1));
  transition: all 0.3s ease;
}

.footer-logo-svg:hover {
  filter: drop-shadow(0 4px 15px rgba(124, 58, 237, 0.2));
}

/* Individual Section Backgrounds */
.about-section {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
}

.services-overview {
  background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1200&h=800&fit=crop');
}

.portfolio {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
}

.testimonials {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
}

.blog {
  background-image: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1200&h=800&fit=crop');
}

.faq {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
}

.contact {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
}

/* Contact Sections with Background */
.contact-info-section,
.contact-form-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-info-section::before,
.contact-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 31, 0.78);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.contact-info-section > *,
.contact-form-section > * {
  position: relative;
  z-index: 2;
}

.contact-info-section {
  background-image: url('https://images.unsplash.com/photo-1560264357-8d9766a72851?w=1200&h=800&fit=crop');
  padding: 80px 0;
}

.contact-form-section {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=800&fit=crop');
  padding: 80px 0;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.full-width {
  width: 100%;
}

.topbar {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.topbar-inner p {
  color: var(--muted);
}

.topbar-inner a {
  color: #c4b5fd;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(6, 11, 31, 0.72);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.logo img {
  height: 52px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.hero {
  position: relative;
}

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease, transform 6s ease;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide .overlay,
.cta-box .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 8, 22, 0.92) 0%, rgba(3, 8, 22, 0.68) 45%, rgba(3, 8, 22, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding-top: 60px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #d8b4fe;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero-content h1 {
  font-size: 68px;
  line-height: 1.08;
  margin-bottom: 22px;
  font-weight: 900;
}

.hero-content p {
  max-width: 650px;
  color: var(--text);
  font-size: 19px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: scale(1.15);
}

.trusted-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}

.trusted-box p {
  color: var(--muted);
  margin-bottom: 20px;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.trusted-logos span {
  font-size: 28px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.about-points {
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.point i {
  color: #8b5cf6;
}

.service-grid,
.why-grid,
.portfolio-grid,
.testimonial-grid,
.team-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card,
.why-card,
.portfolio-card,
.testimonial-card,
.team-card,
.blog-card,
.process-card,
.stat-box,
.contact-form-wrap,
.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.service-card:hover,
.why-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.team-card:hover,
.blog-card:hover,
.process-card:hover,
.stat-box:hover,
.faq-item:hover {
  transform: translateY(-8px);
}

.service-card img,
.portfolio-card img,
.team-card img,
.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-body,
.portfolio-content,
.blog-content {
  padding: 24px;
}

.service-body h3,
.portfolio-content h3,
.blog-content h3,
.team-card h3,
.why-card h3,
.process-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.service-body p,
.portfolio-content p,
.blog-content p,
.why-card p,
.process-card p,
.team-card p,
.contact-info p,
.testimonial-card p {
  color: var(--muted);
}

.why-card {
  padding: 34px 26px;
}

.why-card i {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.12);
  color: #c084fc;
  font-size: 28px;
  margin-bottom: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(5, 9, 20, 0.06) 0%, rgba(5, 9, 20, 0.9) 100%);
}

.feature-overlay h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.feature-overlay p {
  color: var(--text);
}

.process-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  padding: 34px 24px;
}

.process-card span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.stat-box {
  text-align: center;
  padding: 34px 20px;
}

.stat-box h3 {
  font-size: 42px;
  margin-bottom: 8px;
}

.testimonial-card {
  padding: 30px 24px;
  text-align: center;
}

.testimonial-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.testimonial-card h4 {
  margin-top: 18px;
  font-size: 22px;
}

.testimonial-card span {
  color: #c4b5fd;
  font-size: 14px;
}

.team-card {
  text-align: center;
  padding-bottom: 24px;
}

.team-card h3 {
  margin-top: 20px;
}

.blog-content span {
  display: inline-block;
  margin-bottom: 12px;
  color: #c4b5fd;
  font-size: 14px;
  font-weight: 600;
}

.blog-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--white);
  font-weight: 600;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 24px;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 90px 30px;
  background-size: cover;
  background-position: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 44px;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--text);
  margin-bottom: 24px;
}

.contact-info h2 {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.contact-list div {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-list i {
  color: #c084fc;
}

.contact-form-wrap {
  padding: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--white);
  padding: 16px 18px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8c96b4;
}

.footer {
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

/* Enhanced About Section */
.about-section {
  padding: 100px 0;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-header h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-header p {
  font-size: 18px;
  color: var(--muted);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text {
  display: grid;
  gap: 28px;
}

.about-highlight {
  padding: 24px;
  border-left: 4px solid var(--primary);
  background: rgba(124, 58, 237, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-highlight:hover {
  transform: translateX(8px);
  background: rgba(124, 58, 237, 0.1);
  border-left-color: var(--secondary);
}

.about-highlight h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
}

.about-highlight i {
  color: var(--primary);
  font-size: 24px;
}

.about-highlight p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.about-cta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
}

.badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

/* Strengths Section */
.strengths-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 40px;
}

.strengths-section h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--white);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.strength-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strength-card:hover {
  transform: translateY(-12px);
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}

.strength-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  transition: all 0.4s ease;
}

.strength-card:hover .strength-icon {
  transform: scale(1.1) rotateY(360deg);
}

.strength-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--white);
}

.strength-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
  color: var(--muted);
}

.footer-col h4 {
  margin-bottom: 18px;
  font-size: 20px;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  z-index: -1;
}

.social-links a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #7c3aed, #2563eb, #7c3aed) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: none;
}

.social-links a:hover {
  transform: translateY(-8px) scale(1.2);
  background: var(--gradient);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5),
              0 0 40px rgba(37, 99, 235, 0.3),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover::after {
  opacity: 1;
  animation: borderPulse 0.6s ease-out;
}

.social-links a i {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-links a:hover i {
  color: #ffffff;
  transform: rotate(360deg) scale(1.3);
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.8));
  text-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
}

/* Individual Social Colors */
.social-links a:nth-child(1):hover {
  background: linear-gradient(135deg, #1877f2, #0a66c2);
}

.social-links a:nth-child(2):hover {
  background: linear-gradient(135deg, #e1306c, #c13584);
}

.social-links a:nth-child(3):hover {
  background: linear-gradient(135deg, #0a66c2, #0077b5);
}

.social-links a:nth-child(4):hover {
  background: linear-gradient(135deg, #000000, #333333);
}

@keyframes borderPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .service-grid,
  .why-grid,
  .portfolio-grid,
  .testimonial-grid,
  .team-grid,
  .blog-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: #091126;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    display: none;
  }

  .nav.active {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .service-grid,
  .why-grid,
  .portfolio-grid,
  .testimonial-grid,
  .team-grid,
  .blog-grid,
  .feature-grid,
  .process-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 680px;
  }

  .hero-content h1,
  .section-heading h2,
  .about-content h2,
  .contact-info h2,
  .cta-content h2 {
    font-size: 38px;
  }

  .trusted-logos span {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .topbar-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-header h2 {
    font-size: 36px;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .about-cta {
    flex-direction: column;
  }

  .strength-card {
    padding: 24px;
  }

  .section {
    padding: 75px 0;
  }

  .section-small {
    padding: 50px 0;
  }
}