/* 
  Anisochromatic - Brand Strategy & Positioning Consultancy 
  Main Stylesheet
*/

:root {
  /* Color Variables */
  --primary-color: #5B21B6; /* Indigo-600 */
  --primary-dark: #4C1D95; /* Indigo-700 */
  --primary-light: #8B5CF6; /* Violet-500 */
  --secondary-color: #8B5CF6; /* Violet-500 */
  --secondary-dark: #7C3AED; /* Violet-600 */
  --secondary-light: #A78BFA; /* Violet-400 */
  --accent-color: #EC4899; /* Pink-500 */
  --accent-dark: #DB2777; /* Pink-600 */
  --text-dark: #1F2937; /* Gray-800 */
  --text-medium: #4B5563; /* Gray-600 */
  --text-light: #9CA3AF; /* Gray-400 */
  --background-light: #F9FAFB; /* Gray-50 */
  --background-white: #FFFFFF;
  --background-dark: #111827; /* Gray-900 */
  --success-color: #10B981; /* Emerald-500 */
  --warning-color: #F59E0B; /* Amber-500 */
  --error-color: #EF4444; /* Red-500 */
  
  /* Gradients */
  --gradient-primary: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  --gradient-hero: linear-gradient(to right, rgba(67, 56, 202, 0.8), rgba(124, 58, 237, 0.8));
  --gradient-card: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --gradient-dark: linear-gradient(to right, rgba(31, 41, 55, 0.9), rgba(17, 24, 39, 0.9));
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --shadow-outline: 0 0 0 3px rgba(124, 58, 237, 0.5);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5rem;
}

/* Container Neomorphism Enhancements */
.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Neomorphic Elements */
.neomorphic {
  border-radius: var(--radius-lg);
  background: var(--background-light);
  box-shadow: 
    8px 8px 16px rgba(174, 174, 192, 0.4),
    -8px -8px 16px rgba(255, 255, 255, 0.9);
  transition: all var(--transition-normal);
}

.neomorphic:hover {
  box-shadow: 
    12px 12px 20px rgba(174, 174, 192, 0.4),
    -12px -12px 20px rgba(255, 255, 255, 0.9);
}

.neomorphic-inset {
  border-radius: var(--radius-lg);
  background: var(--background-light);
  box-shadow: 
    inset 6px 6px 12px rgba(174, 174, 192, 0.4),
    inset -6px -6px 12px rgba(255, 255, 255, 0.8);
}

/* Button Styles */
.btn, 
button:not(.no-style), 
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.btn:hover, 
button:not(.no-style):hover, 
input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active, 
button:not(.no-style):active, 
input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

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

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

/* Link Styles */
a:not(.btn) {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

a:not(.btn):hover {
  color: var(--secondary-color);
}

a:not(.btn):not(.simple-link)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

a:not(.btn):not(.simple-link):hover::after {
  width: 100%;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  transition: all var(--transition-normal);
}

.read-more-link svg {
  transition: transform var(--transition-normal);
  margin-left: 0.5rem;
}

.read-more-link:hover {
  color: var(--primary-dark);
}

.read-more-link:hover svg {
  transform: translateX(4px);
}

/* Form Styles */
input, 
textarea, 
select {
  border-radius: var(--radius-md);
  border: 1px solid var(--text-light);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  width: 100%;
  box-shadow: var(--shadow-inner);
}

input:focus, 
textarea:focus, 
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-outline);
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-medium);
}

/* Header Styles */
header {
  transition: all var(--transition-normal);
  z-index: 50;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

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

/* Hero Section */
#hero {
  position: relative;
  color: white;
}

#hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

#hero p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 0 auto 2rem;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0.8;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

/* Mission Section */
#mission .card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

#mission .card:hover {
  transform: translateY(-10px);
}

#mission .card-image {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-inner);
  text-align: center;
}

#mission .card-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

/* Innovation Section */
#innovation .card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

#innovation .card:hover {
  transform: translateY(-8px);
}

#innovation .icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}

/* Workshops Section */
#workshops {
  background: var(--gradient-primary);
  color: white;
}

#workshops .card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#workshops .card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

#workshops .icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Resources Section */
#resources .card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

#resources .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

#resources .card-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  height: 200px;
  text-align: center;
}

#resources .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

#resources .card:hover .card-image img {
  transform: scale(1.05);
}

/* Clientele Section */
#clientele .client-logo {
  transition: all var(--transition-normal);
  filter: grayscale(100%);
  opacity: 0.7;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#clientele .client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

#clientele .testimonial {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

#clientele .testimonial-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}

#clientele .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
}

/* Insights Section */
#insights .card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#insights .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

#insights .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

#insights .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

#insights .card:hover .card-image img {
  transform: scale(1.05);
}

#insights .card-image .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

#insights .card-image .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: white;
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Webinars Section */
#webinars {
  background: var(--gradient-primary);
  color: white;
}

#webinars .card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#webinars .card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

#webinars .card-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  height: 200px;
  text-align: center;
}

#webinars .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

#webinars .card:hover .card-image img {
  transform: scale(1.05);
}

#webinars .date-badge {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

#webinars .date-badge .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

/* Success Stories Section */
#success-stories .card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#success-stories .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

#success-stories .card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

#success-stories .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

#success-stories .card:hover .card-image img {
  transform: scale(1.05);
}

#success-stories .card-image .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

#success-stories .stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

#success-stories .stat-item {
  background-color: var(--background-light);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
}

#success-stories .stat-item .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

/* Media Section */
#media .media-logo {
  transition: all var(--transition-normal);
  filter: grayscale(100%);
  opacity: 0.7;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#media .media-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

#media .media-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--text-light);
  padding: 1.5rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

#media .media-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

#media .media-card .source {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

#media .media-card .source img {
  height: 2rem;
  margin-right: 1rem;
}

/* Contact Section */
#contact .contact-info {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

#contact .contact-info img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#contact .contact-details {
  padding: 2rem;
}

#contact .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

#contact .contact-details .contact-item .icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

#contact .form-container {
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

#contact form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

#contact form .form-grid > div {
  width: 100%;
}

#contact form .form-group {
  margin-bottom: 1.5rem;
}

/* Footer Styles */
footer {
  background-color: var(--background-dark);
  color: white;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

footer h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 3rem;
  height: 2px;
  background: var(--gradient-primary);
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer ul li a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

footer ul li a:hover {
  color: white;
}

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

footer .social-links a {
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition-fast);
  text-decoration: none;
}

footer .social-links a:hover {
  color: white;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-bottom .copyright {
  color: var(--text-light);
  margin-bottom: 1rem;
}

footer .footer-bottom .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer .footer-bottom .footer-links a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

footer .footer-bottom .footer-links a:hover {
  color: white;
}

/* Cookie Consent */
#cookie-consent {
  background-color: var(--background-dark);
  color: white;
  padding: 1rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

#cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#cookie-consent p {
  margin-bottom: 1rem;
}

#cookie-consent .buttons {
  display: flex;
  gap: 1rem;
}

#cookie-consent button {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

#accept-cookies {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

#close-cookies {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

#close-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-xl);
}

.success-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.page-content h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.page-content p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

/* Card Styles */
.card {
  background-color: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonial-slide {
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  z-index: 2;
}

.testimonial-controls button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.testimonial-controls button:hover {
  background-color: var(--primary-color);
  color: white;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial-dots .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--text-light);
  margin: 0 0.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dots .dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  #contact form .form-grid {
    grid-template-columns: 1fr;
  }
  
  footer .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  #hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.bg-gradient {
  background: var(--gradient-primary);
}

.shadow-hover {
  transition: box-shadow var(--transition-normal);
}

.shadow-hover:hover {
  box-shadow: var(--shadow-xl);
}

.morph-bg {
  transition: background-position var(--transition-slow);
  background-size: 200% 200%;
  background-position: 0% 0%;
}

.morph-bg:hover {
  background-position: 100% 100%;
}
html,body{
  overflow-x: hidden;
}