/* Global Styles */
:root {
  --primary-color: #5e17eb;
  --secondary-color: #9c27b0;
  --accent-color: #01efd8;
  --dark-color: #2d1053;
  --light-color: #f8f9ff;
  --success-color: #28a745;
  --error-color: #dc3545;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), #0fe3c2);
  --shadow-sm: 0 4px 8px rgba(46, 16, 83, 0.07);
  --shadow-md: 0 8px 24px rgba(46, 16, 83, 0.12);
  --shadow-lg: 0 16px 32px rgba(46, 16, 83, 0.15);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --glow: 0 0 15px rgba(1, 239, 216, 0.5);
}

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

::selection {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #444;
  background-color: var(--light-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.container-fluid {
  width: 100%;
  padding: 0 2rem;
  position: relative;
}

.skewed-section {
  position: relative;
  transform: skewY(-3deg);
  padding: 8rem 0;
  margin: 6rem 0;
  overflow: hidden;
}

.skewed-section .container {
  transform: skewY(3deg);
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section-diagonal {
  position: relative;
}

.split-section-diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(94, 23, 235, 0.05);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 0;
}

/* UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow);
}

.btn:hover::before {
  opacity: 1;
}

.btn i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

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

.btn-outline::before {
  background: var(--primary-color);
}

.btn-outline:hover {
  color: white;
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--dark-color);
}

.btn-accent::before {
  background: var(--gradient-primary);
}

.btn-accent:hover {
  color: white;
}

.card {
  background: white;
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-element {
  animation: float 5s ease-in-out infinite;
}

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

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title h2 .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 4px;
  background: var(--accent-color);
  border-radius: 10px;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
}

.testimonials .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.blob-shape {
  position: absolute;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  background: var(--gradient-primary);
  opacity: 0.05;
  filter: blur(40px);
  z-index: 0;
  animation: blob-morph 20s linear infinite;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header.scrolled .nav-link {
  color: var(--dark-color);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo .logo-icon {
  margin-right: 0.5rem;
}

.header.scrolled .logo {
  color: var(--dark-color);
}

.logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: white;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

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

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background-color: white;
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background-color: var(--dark-color);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 120px;
  height: 120px;
}

.loader-circle {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--primary-color);
  animation: spin 1.5s linear infinite;
}

.loader-circle:nth-child(2) {
  border-top-color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
  animation-duration: 2s;
}

.loader-circle:nth-child(3) {
  border-top-color: var(--accent-color);
  animation-duration: 2.5s;
  animation-direction: reverse;
}

.loader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
  animation: pulse 1.5s ease-in-out infinite alternate;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--dark-color);
  color: white;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-title span {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: lighten;
}

.hero-shape {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 80%;
  height: 60%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 15s ease-in-out infinite;
  z-index: 0;
}

.hero-3d-element {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 40%;
  z-index: 2;
  transform-style: preserve-3d;
  animation: float 5s ease-in-out infinite;
  transition: opacity 1s ease-out, visibility 1s ease-out;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.8rem;
  opacity: 0.8;
  transition: var(--transition);
  z-index: 2;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator .chevron {
  width: 20px;
  height: 8px;
  opacity: 0;
  animation: scrollChevron 2s infinite;
}

.scroll-indicator .chevron:nth-child(1) {
  animation-delay: 0s;
}

.scroll-indicator .chevron:nth-child(2) {
  animation-delay: 0.3s;
}

.scroll-indicator svg {
  width: 100%;
  height: 100%;
  fill: white;
}

/* About Section */
.about {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

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

.about-text {
  position: relative;
  z-index: 2;
}

.about-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(94, 23, 235, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-description {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

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

.about-image {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
  position: relative;
  z-index: 2;
}

.about-shape-1 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
  z-index: 1;
  opacity: 0.2;
  animation: morphShape 10s ease-in-out infinite alternate;
}

.about-shape-2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  border-radius: 60% 40% 50% 50% / 60% 50% 50% 40%;
  z-index: 1;
  opacity: 0.1;
  animation: morphShape 15s ease-in-out infinite alternate;
}

/* Testimonials Section */
.testimonials {
  background: var(--gradient-primary);
  position: relative;
  color: white;
  overflow: hidden;
}

.testimonials .section-title h2 {
  color: white;
}

.testimonials .section-title h2::after {
  background: var(--accent-color);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: flex;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.client-name {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.client-position {
  font-size: 0.9rem;
  opacity: 0.8;
}

.testimonials-blob {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
  animation: blob-morph 20s linear infinite;
  z-index: 0;
}

/* FAQ Section */
.faq {
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-color);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(94, 23, 235, 0.02);
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-question i {
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--primary-color);
}

.faq-question.open i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer.open {
  padding: 0 1.8rem 1.8rem;
  max-height: 1000px;
}

/* Contact Section */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 23, 235, 0.03), rgba(156, 39, 176, 0.03));
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.contact-title {
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f9fafc;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(1, 239, 216, 0.15);
  background-color: white;
}

.form-select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background-color: #f9fafc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235e17eb' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

.form-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(1, 239, 216, 0.15);
  background-color: white;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  position: relative;
  z-index: 2;
}

.contact-info-title {
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.contact-info-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 10px;
}

.contact-info-text {
  margin-bottom: 2.5rem;
  color: #666;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1);
  color: var(--primary-color);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  color: var(--accent-color);
  background: rgba(1, 239, 216, 0.1);
  transition: var(--transition);
}

.contact-info-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  margin-bottom: 0;
  color: #666;
}

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

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  transform: translateY(-5px);
  color: white;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 6rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(94, 23, 235, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-about-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
}

.footer-logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-about {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 10px;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.5;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(2px);
}

.newsletter-form {
  display: flex;
  margin-top: 1.5rem;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  transition: var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(1, 239, 216, 0.1);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--gradient-accent);
  color: var(--dark-color);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  transform: translateX(3px);
  box-shadow: 0 0 15px rgba(1, 239, 216, 0.3);
}

.blog-link {
  margin-top: 1.5rem;
}

.blog-link a {
  color: var(--accent-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-link a i {
  transition: var(--transition);
}

.blog-link a:hover i {
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
}

/* Fixed CTA Button */
.fixed-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.fixed-cta.visible {
  opacity: 1;
  visibility: visible;
}

.fixed-cta .btn {
  padding: 1rem 2rem 1rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(94, 23, 235, 0.3);
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fixed-cta .btn::before {
  background: var(--gradient-accent);
}

.fixed-cta .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(94, 23, 235, 0.4), 0 0 15px rgba(1, 239, 216, 0.4);
}

.fixed-cta .btn i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.fixed-cta .btn:hover i {
  transform: translateX(3px);
}

/* Cursor */
.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  z-index: 9999;
  opacity: 0;
}

.custom-cursor.active {
  opacity: 1;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  border-color: var(--primary-color);
  background-color: rgba(94, 23, 235, 0.1);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

@keyframes blob-morph {
  0% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 40% 60% 30% 70% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollChevron {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  .hero-content {
    max-width: 60%;
  }
  
  .hero-image-wrapper {
    width: 50%;
  }
  
  .split-section {
    gap: 2rem;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 18px;
    --border-radius-xl: 24px;
  }
  
  .container {
    padding: 0 2rem;
  }
  
  .split-section,
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 2rem;
  }
  
  .hero-image-wrapper {
    display: none;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-3d-element {
    display: none;
  }
  
  .section-title {
    margin-bottom: 3rem;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .about-image {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .testimonial-card,
  .feature-block {
    max-width: 100%;
  }
  
  .contact-shape {
    display: none;
  }
}</invoke>

/* Medium-sized screens between 851px and 992px */
@media screen and (min-width: 851px) and (max-width: 992px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .logo {
    font-size: 1.6rem;
  }
  
  .logo-icon {
    width: 35px;
    height: 35px;
  }
  
  .logo-icon svg {
    width: 20px;
    height: 20px;
  }
  
  /* Hide hero image in this range too */
  .hero-3d-element {
    display: none;
  }
}

/* This media query is no longer needed as we're using the hamburger at 850px */

@media screen and (max-width: 850px) {
  :root {
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1.5rem 0;
  }
  
  .nav-link {
    color: var(--dark-color);
    font-size: 1.2rem;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-btns .btn {
    width: 100%;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .testimonials-container,
  .feature-blocks {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-3d-element {
    display: none;
  }
}

/* The 768px media query is now redundant since we have the hero-3d-element in the 850px media query */

@media screen and (max-width: 600px) {
  .hero-3d-element {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero {
    padding: 0;
  }
  
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .about-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .testimonial-card,
  .contact-form {
    padding: 2rem;
  }
  
  .fixed-cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Animation Classes */
.reveal {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  visibility: visible;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-up.revealed {
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-left.revealed {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-right.revealed {
  transform: translateX(0);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal-scale.revealed {
  transform: scale(1);
}

/* Delay Utility Classes */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}