/* Global Variables */
:root {
  --primary: #0d6efd; /* Blue 600 – strong base */
  --primary-light: #3ea6ff; /* Light cyan-blue for highlights */
  --primary-dark: #003566; /* Deep navy blue for dark elements */

  --secondary: #00b4d8; /* Teal/aqua for modern accents */
  --accent: #38bdf8; /* Sky blue for interactive UI elements */
  --accent-light: #90e0ef; /* Pale aqua for backgrounds/hover */

  --twitter: #1da1f2; /* Default brand blue */
  --instagram: #e1306c; /* More fitting with tech-themed brand */
  --github: #24292e; /* GitHub standard */
  --facebook: #1877f2; /* Facebook brand color */

  --light: #f1f5f9; /* Soft gray-white for clean UI */
  --dark: #0f172a; /* Charcoal blue for deep backgrounds */

  --font-primary: "Josefin Sans", sans-serif;
  --font-secondary: "Josefin Sans", sans-serif;
  --font-tertiary: "Protest Guerrilla", sans-serif;
  --font-quaternary: "Black Ops One", system-ui;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  background-color: #f9f9f9;
  color: var(--dark);
  overflow-x: hidden;
}
/* Technology Inspired Pure CSS Background With Animated Particles */

.bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Grid Circuit Lines with Animation */
.bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 40px
    ),
    linear-gradient(315deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  background-position: 0 0, 0 0, 0 0;
  z-index: 1;
  pointer-events: none;
  animation: gridShift 30s linear infinite;
}

@keyframes gridShift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 200px 200px, 200px 200px, 0 0;
  }
}

/* Floating Circuit Nodes as Particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 6px;
  height: 6px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 8px;
  height: 8px;
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 5px;
  height: 5px;
  top: 70%;
  left: 30%;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 7px;
  height: 7px;
  top: 30%;
  left: 40%;
  animation-delay: 6s;
}

.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  top: 60%;
  left: 80%;
  animation-delay: 8s;
}

/* Particle Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) translateX(5px) rotate(5deg);
  }
  50% {
    transform: translateY(0) translateX(10px) rotate(10deg);
  }
  75% {
    transform: translateY(10px) translateX(5px) rotate(5deg);
  }
}

.container-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  position: relative;
  z-index: 3;
}

/* Container Styling with Animation */
.container {
  position: relative;
  text-align: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 50px 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Container background effect */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6e00ff, #a700ff, #ff5500);
  background-size: 200% 100%;
  animation: gradientMove 6s ease infinite;
  z-index: 1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* AOS Animation (for fade-up effect) */
[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Studio Profile Styling */
.studio-profile {
  position: relative;
  z-index: 2;
}

.studio-header {
  margin-bottom: 30px;
}

/* Studio Logo Styling */
.studio-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 0 auto 1.5rem;
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  background-color: #f8f9fa; /* Fallback for broken images */
}

.studio-logo:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12);
  animation-name: logo;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes logo {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 69, 211, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

/* Studio Logo Glow Effect */
.container::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 24px;
  background: radial-gradient(
    ellipse at center,
    rgba(110, 0, 255, 0.15) 0%,
    rgba(110, 0, 255, 0.05) 50%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* Studio Name Styling */
.studio-name {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.studio-name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0.7);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #6e00ff 0%, #a700ff 50%, #d946ef 100%);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container:hover .studio-name::after {
  transform: translateX(-50%) scaleX(1);
}

/* Studio Tagline Styling */
.studio-tagline {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #7f8c8d;
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  opacity: 0.9;
}

/* Studio Description Styling */
.studio-description {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #5a6c7d;
  line-height: 1.6;
  margin: 0 auto;
  max-width: min(600px, 90vw);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }

  .studio-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1.25rem;
  }

  .container::before {
    top: 100px;
    width: 130px;
    height: 20px;
  }

  .studio-name {
    margin-bottom: 0.75rem;
  }

  .studio-tagline {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .studio-logo {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }

  .container::before {
    top: 85px;
    width: 110px;
    height: 16px;
  }
}

/* Accessibility and Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  .studio-logo,
  .studio-name::after,
  .container::before {
    transition: none;
  }

  .studio-logo:hover {
    transform: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .studio-logo {
    border-width: 3px;
    border-color: #000000;
  }

  .studio-name {
    color: #000000;
  }

  .studio-tagline,
  .studio-description {
    color: #333333;
  }
}

/* CTA Section Styling */
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* CTA Button Base Styling */
.cta-btn {
  text-decoration: none;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.4s ease;
  z-index: -1;
}

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

.cta-btn:active {
  transform: translateY(0);
}

/* Primary CTA Button */
.cta-primary {
  background: linear-gradient(45deg, #6e00ff, #9d00ff);
  box-shadow: 0 4px 15px rgba(110, 0, 255, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(110, 0, 255, 0.4);
}

.cta-primary:active {
  box-shadow: 0 4px 8px rgba(110, 0, 255, 0.3);
}

/* Secondary CTA Button */
.cta-secondary {
  background: linear-gradient(45deg, #ff5500, #ff7a38);
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.cta-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(255, 85, 0, 0.4);
}

.cta-secondary:active {
  box-shadow: 0 4px 8px rgba(255, 85, 0, 0.3);
}

/* Icons inside CTA buttons */
.cta-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 40px 25px;
  }

  .studio-name {
    font-size: 1.8rem;
  }

  .cta-section {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .cta-btn {
    justify-content: center;
  }
}

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

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

  .studio-logo {
    width: 120px;
    height: 120px;
  }

  .studio-tagline {
    font-size: 1rem;
  }

  .studio-description {
    font-size: 0.9rem;
  }
}

/* Additional utility classes for pricing button if needed */
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.pricing-btn:hover {
  background-color: var(--secondary);
}

.pricing-btn i {
  margin-right: 5px;
  font-size: 1.2rem;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-normal);
  flex-wrap: wrap;
  gap: 5px;
  z-index: 100;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.navbar a {
  color: var(--dark);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar a i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.navbar a:hover {
  color: var(--primary);
  background-color: rgba(110, 0, 255, 0.05);
}

.navbar a:hover i {
  transform: translateY(-2px);
}

.navbar a.active {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 10px rgba(110, 0, 255, 0.25);
}

.navbar a.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(110, 0, 255, 0.3);
}

.arrow-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.navbar a:hover .arrow-indicator {
  transform: rotate(135deg);
}

.navbar a:hover .arrow-indicator::after {
  opacity: 1;
  margin-left: 3px;
}

/* Responsive design for navbar */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 15px;
    padding: 15px;
    /* width: 100%; */
    box-sizing: border-box;
  }

  .navbar a:not(:first-child) {
    display: none;
    /* width: 100%; */
    margin: 5px 0;
  }

  .navbar a.icon {
    display: block;
    position: absolute;
    right: 15px;
    /* top: 15px; */
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .navbar.responsive {
    padding-bottom: 15px;
  }

  .navbar.responsive a {
    display: flex;
    /* width: 100%; */
    text-align: left;
    padding: 12px;
    border-radius: 12px;
    margin: 5px 0;
  }

  .navbar.responsive a.icon {
    position: absolute;
    right: 15px;
    top: 15px;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    margin-top: 20px;
    padding: 12px;
  }

  .navbar a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .navbar.responsive a {
    padding: 10px;
  }
}
/* Fix for the hamburger icon display */
.navbar .icon {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar a.icon {
    display: flex;
    position: absolute;
    right: 15px;
    /* top: 15px;  */
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}
/* Section Styling */
section {
  background-color: white;
  box-shadow: var(--shadow-md);
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 40px;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

section h2 {
  text-align: center;
  font-family: var(--font-secondary);
  color: var(--primary-dark);
  margin-bottom: 30px;
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin: 8px auto 0;
  border-radius: 2px;
}

.about-section p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #555;
}

/* Animated Availability Button */
.availability {
  position: relative;
  height: 50px;
  padding: 0 30px;
  border: 2px solid var(--primary);
  background: #f8f9fa;
  user-select: none;
  white-space: nowrap;
  transition: all 0.2s linear;
  font-family: inherit;
  overflow: hidden;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  margin: 20px auto;
}

.availability:before,
.availability:after {
  content: "";
  position: absolute;
  background: #f8f9fa;
  transition: all 0.3s linear;
}

.availability:before {
  width: calc(100% + 6px);
  height: calc(100% - 16px);
  top: 8px;
  left: -3px;
}

.availability:after {
  width: calc(100% - 16px);
  height: calc(100% + 6px);
  top: -3px;
  left: 8px;
}

.availability:hover {
  cursor: pointer;
  background: rgba(var(--primary), 0.05);
}

.availability:active {
  transform: scale(0.95);
}

.availability:hover:before {
  height: calc(100% - 32px);
  top: 16px;
}

.availability:hover:after {
  width: calc(100% - 32px);
  left: 16px;
}

.availability span {
  font-size: 15px;
  z-index: 3;
  position: relative;
  font-weight: 600;
  color: var(--primary);
}

.availability .status-dot {
  width: 10px;
  height: 10px;
  background-color: #2ecc71;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 0 rgba(46, 204, 113, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

/* Cyberpunk Pricing Button */
.pricing {
  --main-color: var(--accent);
  --main-bg-color: rgba(255, 85, 0, 0.2);
  --pattern-color: rgba(255, 85, 0, 0.05);

  filter: hue-rotate(0deg);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  background: radial-gradient(
      circle,
      var(--main-bg-color) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    linear-gradient(var(--pattern-color) 1px, transparent 1px),
    linear-gradient(to right, var(--pattern-color) 1px, transparent 1px);
  background-size: cover, 15px 15px, 15px 15px;
  background-position: center center, center center, center center;
  border-image: radial-gradient(
      circle,
      var(--main-color) 0%,
      rgba(0, 0, 0, 0) 100%
    )
    1;
  border-width: 1px 0 1px 0;
  color: var(--main-color);
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  display: inline-block;
}

.pricing::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 85, 0, 0.05) 10px,
    rgba(255, 85, 0, 0.05) 20px
  );
  animation: glitch 10s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pricing:hover {
  background-size: cover, 10px 10px, 10px 10px;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 85, 0, 0.2);
}

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

.pricing:active {
  filter: hue-rotate(90deg);
  transform: translateY(0);
}

@keyframes glitch {
  0% {
    transform: translate(0, 0) scale(1);
  }
  2% {
    transform: translate(-5px, 5px) scale(1.02);
  }
  4% {
    transform: translate(5px, -5px) scale(0.98);
  }
  6% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* About Section Styling */
.about-section {
  background-color: white;
  border-radius: 16px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1;
}

.about-section h2 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 90%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.about-section h2 i {
  margin-right: 1rem;
  color: #ffd700;
}

.about-content {
  margin-bottom: 30px;
}

.about-section p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--dark);
}

.about-section strong {
  color: var(--primary);
  font-weight: 600;
}

/* Skills Container Styling */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.skill-category {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.skill-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.skill-category h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-category h3 i {
  font-size: 1.3rem;
}

.skill-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.skill-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Contact Info Styling */
.contact-info {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  margin-right: 20px;
  transition: var(--transition-fast);
  padding: 5px 10px;
  border-radius: 5px;
}

.email-link:hover {
  background-color: rgba(110, 0, 255, 0.1);
  transform: translateY(-2px);
}

/* Service Details Styling */
.service-details {
  margin-top: 30px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #e8f5e9;
  color: #2e7d32;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  cursor: default;
}

.availability i {
  color: #2e7d32;
}

.pricing-btn {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pricing-content {
  display: flex;
  flex-direction: column;
}

.pricing-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  opacity: 0.9;
}

.pricing-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-usd {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Service Packages */
.service-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.package {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.package h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1rem;
}

.package .price {
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 30px 20px;
  }

  .skills-container {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
  }

  .pricing-btn {
    width: 100%;
    justify-content: space-between;
  }

  .service-packages {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 25px 15px;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .skill-category {
    padding: 15px;
  }

  .contact-info {
    padding: 15px;
  }

  .email-link {
    display: block;
    margin-bottom: 10px;
  }
}
/* =============================================================================
   Services Section Style
   ============================================================================= */
/* Services with Hover Effects */
.services-section .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service {
  background-color: white;
  color: var(--dark);
  padding: 25px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 250px;
  max-width: 300px;
  gap: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-normal);
  z-index: -1;
}

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

.service:hover::before {
  height: 100%;
  opacity: 0.07;
}
.service h2 i {
  margin-right: 1rem;
  color: #003566;
  animation: slideInFromLeft 0.8s ease-out forwards;
}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.service h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 8px auto 0;
  border-radius: 2px;
}
.service .service-icon {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

.service:hover .service-icon {
  transform: scale(1.15);
  color: var(--accent);
}

.service h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
  transition: var(--transition-normal);
}

.service:hover h3 {
  color: var(--accent);
}

.service p {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  line-height: 1.5;
}

/* =============================================================================
   Media Section Style
============================================================================= */

.media-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.media-section h2 i {
  margin-right: 1rem;
  color: #003566;
}

.media-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 8px auto 0;
  border-radius: 2px;
}

/* =============================================================================
   Gallery Grid Layout
============================================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* =============================================================================
   Image Containers
============================================================================= */

.image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-container:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.image-container:focus {
  outline: 3px solid #667eea;
  outline-offset: 2px;
}

.image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.image-container:hover::before {
  opacity: 1;
}

/* =============================================================================
   Gallery Images
============================================================================= */

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}

.image-container:hover .gallery-image {
  transform: scale(1.1);
}

/* =============================================================================
   Image Overlay
============================================================================= */

.image-overlay {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 2;
}

.image-container:hover .image-overlay {
  transform: translateY(0);
}

.overlay-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* =============================================================================
   Loading Skeleton
============================================================================= */

.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 15px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* =============================================================================
   Modal Styling
============================================================================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

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

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: slideIn 0.3s ease;
}

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

.expanded-image {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
  text-align: center;
  color: white;
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* =============================================================================
   Close Button
============================================================================= */

.close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.close-btn:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* =============================================================================
   Responsive
============================================================================= */

@media (max-width: 768px) {
  .media-section {
    padding: 2rem 1rem;
  }
  .media-section h2 {
    font-size: 2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .modal-content {
    max-width: 95vw;
    max-height: 80vh;
  }
  .close-btn {
    top: -40px;
    right: 10px;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .close-btn {
    top: -35px;
    right: 10px;
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
  }
}

/* =============================================================================
   FAQ Section Styles - Fixed and Optimized
   ============================================================================= */

/* Main FAQ Section Container */
.faq-section {
  padding: 4rem 2rem;
  margin: 40px 0;
  border-radius: 10px;
  background-color: white;
  box-shadow: var(--shadow-lg);
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.faq-header h2 i {
  margin-right: 1rem;
  color: #ffd700;
}

.faq-header p {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Individual FAQ Items */
.faq-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

/* FAQ Question Header */
.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(255, 215, 0, 0.05);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
  flex: 1;
  font-weight: 600;
  line-height: 1.4;
}

/* FAQ Icons */
.faq-icon {
  font-size: 1.5rem;
  color: #ffd700;
  margin-right: 1rem;
  min-width: 30px;
  flex-shrink: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ffd700;
  transition: transform 0.3s ease;
  min-width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

/* FAQ Answer Section */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(248, 249, 250, 0.8);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer-content {
  padding: 1.5rem 2rem 2rem 2rem;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.faq-answer-content ul {
  margin: 1rem 0 1rem 1.5rem;
  padding: 0;
}

.faq-answer-content li {
  margin-bottom: 0.5rem;
  color: rgba(0, 0, 0, 0.7);
}

/* Utility Classes */
.highlight {
  color: #ffd700;
  font-weight: 600;
}

.price-range {
  background: rgba(255, 215, 0, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 4px solid #ffd700;
  margin: 1rem 0;
}

/* Contact CTA Section */
.contact-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-cta h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-cta p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  text-decoration: none;
  color: #333;
}

/* =============================================================================
   Responsive Design - Mobile Optimization
   ============================================================================= */

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 1rem;
    margin: 20px 0;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    align-items: flex-start;
  }

  .faq-question h3 {
    font-size: 1.1rem;
    margin-right: 1rem;
  }

  .faq-icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
  }

  .faq-toggle {
    font-size: 1.25rem;
  }

  .faq-answer-content {
    padding: 1.25rem 1.5rem 1.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .contact-cta {
    padding: 1.5rem;
  }

  .contact-cta h3 {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 1.5rem 0.75rem;
  }

  .faq-header h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 1rem 1.25rem 1.5rem 1.25rem;
  }
}


/* =============================================================================
   Testimonials Slider Section - Fixed Implementation
   ============================================================================= */
/* =============================================================================
   CSS Variables for Consistency
   ============================================================================= */
:root {
  --primary-dark: #333;
  --primary-gold: #ffd700;
  --primary-white: #ffffff;
  --text-dark: #444;
  --text-light: #666;
  --text-lighter: #777;
  --border-light: rgba(255, 215, 0, 0.2);
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.08);
  --backdrop-blur: rgba(255, 255, 255, 0.95);
}

/* =============================================================================
   Base Styles and Reset
   ============================================================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* =============================================================================
   Testimonials Slider Section - Responsive Implementation
   ============================================================================= */

/* Main Testimonials Section */
.testimonials-section {
  max-width: 120rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  width: 100%;
}

/* Section Header */
.testimonials-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary-dark);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.testimonials-section h2 i {
  margin-right: 1rem;
  color: #003566;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.2);
}

/* Testimonials Slider Container */
.testimonials-slider {
  position: relative;
  background: var(--backdrop-blur);
  backdrop-filter: blur(1.5rem);
  border-radius: 2.5rem;
  padding: 3rem 2rem;
  border: 0.1rem solid var(--border-light);
  box-shadow: 0 2rem 4rem var(--shadow-light);
  /* margin-top: 2rem; */
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

/* Reviews Title */
.reviews-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-dark);
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: -0.05rem;
}

/* Slider Wrapper - CRITICAL FOR SLIDER FUNCTIONALITY */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: clamp(35rem, 50vh, 40rem);
  overflow: hidden;
  border-radius: 2rem;
  margin: 2rem 0;
}

/* Reviews Container - THE SLIDING ELEMENT */
.reviews-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Review Slides */
.review-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  flex-shrink: 0;
}

/* Review Item Cards */
.review-item {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(1rem);
  border-radius: 2rem;
  padding: 2.5rem;
  max-width: 70rem;
  width: 100%;
  border: 0.2rem solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 1.5rem 3.5rem var(--shadow-medium);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Shimmer effect on top */
.review-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--primary-gold), #ffed4e, var(--primary-gold));
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

/* Review Header */
.review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}

/* Reviewer Name */
.reviewer-name {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  margin: 0;
  letter-spacing: -0.03rem;
  text-align: center;
}

/* Star Rating */
.star-rating {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.star-rating i {
  color: var(--primary-gold);
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  text-shadow: 0 0.2rem 0.6rem rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  animation: starGlow 2s infinite alternate;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes starGlow {
  0% { transform: scale(1); filter: brightness(1); }
  100% { transform: scale(1.05); filter: brightness(1.2); }
}

/* Review Text */
.review-text {
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 1.5rem 0;
  position: relative;
  text-align: center;
  padding: 0 1rem;
  font-weight: 400;
}

/* Quotation marks */
.review-text::before {
  content: '"';
  font-size: clamp(3rem, 5vw, 4rem);
  color: rgba(255, 215, 0, 0.4);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-text::after {
  content: '"';
  font-size: clamp(3rem, 5vw, 4rem);
  color: rgba(255, 215, 0, 0.4);
  position: absolute;
  bottom: -2rem;
  right: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Review Date */
.review-date {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-lighter);
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

/* Navigation Buttons - RESPONSIVE POSITIONING */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(5rem, 8vw, 6rem);
  height: clamp(5rem, 8vw, 6rem);
  background: rgba(255, 217, 0, 0);
  color: var(--primary-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
  /* backdrop-filter: blur(1rem); */
  border: 0.3rem solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1rem 3rem rgba(255, 215, 0, 0.4);
}

.slider-nav:hover {
  background: var(--primary-gold);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 1.5rem 4rem rgba(255, 215, 0, 0.6);
}

.slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: clamp(1rem, 3vw, 2rem);
}

.next-btn {
  right: clamp(1rem, 3vw, 2rem);
}

/* Dots Indicator */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 1rem 0;
  flex-wrap: wrap;
}

.dot {
  width: clamp(1.2rem, 2vw, 1.6rem);
  height: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0.2rem solid transparent;
  position: relative;
}

.dot:hover {
  background: rgba(255, 215, 0, 0.7);
  transform: scale(1.3);
}

.dot.active {
  background: var(--primary-gold);
  transform: scale(1.5);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0.6rem 2rem rgba(255, 215, 0, 0.5);
}

.dot.active::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
  right: -0.8rem;
  bottom: -0.8rem;
  border: 0.2rem solid rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Loading State */
.loading {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 600;
  gap: 1.5rem;
}

.loading::before {
  content: '';
  width: 4rem;
  height: 4rem;
  border: 0.4rem solid rgba(255, 215, 0, 0.3);
  border-top: 0.4rem solid var(--primary-gold);
  border-radius: 50%;
  animation: loadingSpin 1s linear infinite;
}

/* Animations */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

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

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(3rem) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.review-item {
  animation: fadeSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


/* =============================================================================
   Responsive Design
   ============================================================================= */

@media (max-width: 1024px) {
  .testimonials-slider {
    padding: 2.5rem 1.5rem;
  }
  
  .slider-wrapper {
    height: 420px;
  }
  
  .prev-btn { left: 15px; }
  .next-btn { right: 15px; }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .testimonials-slider {
    padding: 2rem 1rem;
  }

  .slider-wrapper {
    height: 450px;
  }

  .review-slide {
    padding: 0 1rem;
  }

  .review-item {
    padding: 2rem 1.5rem;
  }

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

  .star-rating i {
    font-size: 1.4rem;
  }

  .review-text {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }

  .slider-nav {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }

  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }

  .dot {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2rem 0.5rem;
  }

  .testimonials-section h2 {
    font-size: 1.8rem;
  }

  .testimonials-slider {
    padding: 1.5rem 1rem;
  }

  .slider-wrapper {
    height: 480px;
  }

  .review-slide {
    padding: 0 0.5rem;
  }

  .review-item {
    padding: 1.5rem 1rem;
  }

  .reviewer-name {
    font-size: 1.2rem;
  }

  .star-rating i {
    font-size: 1.3rem;
  }

  .review-text {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .review-text::before,
  .review-text::after {
    font-size: 3rem;
  }

  .slider-nav {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }

  .dot {
    width: 12px;
    height: 12px;
  }

  .slider-dots {
    gap: 10px;
    margin-top: 1.5rem;
  }

  .review-section {
    margin-top: 3rem;
    padding: 1.5rem;
  }

  .review-title {
    font-size: 1.8rem;
  }

  .review-subtitle {
    font-size: 1rem;
  }

  .review-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* =============================================================================
    Review Section Styles 
    ============================================================================= */
.review-section {
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.review-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.love-emoji {
  color: #ff4757;
  margin-right: 8px;
}

.review-subtitle {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.review-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #5f6368;
  padding: 14px 28px;
  border: 2px solid #dadce0;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-button:hover {
  border-color: #4285f4;
  color: #4285f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.review-button:active {
  transform: translateY(0);
}

.google-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
  position: relative;
}

.google-icon::before {
  content: "G";
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .review-section {
    padding: 50px 30px;
  }

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

  .review-subtitle {
    font-size: 1rem;
  }

  .review-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .review-section {
    padding: 40px 20px;
  }

  .review-title {
    font-size: 1.8rem;
  }

  .review-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .review-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    gap: 10px;
  }

  .google-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}
/*===============================================
   Footer Styles
   ============================================== */
footer {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 20px 40px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

footer p {
  margin: 0 0 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

footer p i {
  color: #00ffcc; /* Verified badge color */
  font-size: 1rem;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

footer a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.arrow-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

footer a:hover .arrow-indicator {
  transform: rotate(135deg);
}

/* ==============================================
   KEYFRAME ANIMATIONS
   ============================================== */

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes titlePulse {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.02);
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: brightness(1);
  }
  25% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.9;
    filter: brightness(1.2);
  }
  50% {
    transform: scale(1.2) rotate(-5deg);
    opacity: 0.8;
    filter: brightness(1.4);
  }
  75% {
    transform: scale(1.1) rotate(3deg);
    opacity: 0.9;
    filter: brightness(1.1);
  }
}

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

@keyframes floatStar {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
    transform: translateY(90vh) rotate(18deg) scale(1);
  }
  95% {
    opacity: 1;
    transform: translateY(-10vh) rotate(342deg) scale(1);
  }
  100% {
    transform: translateY(-20vh) rotate(360deg) scale(0);
    opacity: 0;
  }
}

/* ==============================================
   INTEGRATION STYLES
   ============================================== */

.services-section + .review-section {
  margin-top: 80px;
}

.review-section + .media-section {
  margin-top: 80px;
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */

@media (max-width: 1024px) {
  .review-section {
    max-width: 90%;
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .review-section {
    padding: 35px 25px;
    margin: 30px 15px;
    border-radius: 8px;
  }

  .review-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 20px;
  }

  .review-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 25px;
  }

  .stars {
    gap: 8px;
    margin: 25px 0;
    padding: 15px 0;
  }

  .star {
    font-size: 2.2rem;
  }

  .review-button {
    padding: 16px 32px;
    font-size: 1rem;
    gap: 12px;
  }

  .google-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .social-proof {
    margin-top: 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .review-section {
    padding: 25px 15px;
    margin: 25px 10px;
  }

  .stars {
    gap: 6px;
  }

  .star {
    font-size: 1.8rem;
  }

  .review-button {
    padding: 14px 28px;
    font-size: 0.95rem;
    border-radius: 50px;
  }
}

/* ==============================================
   ACCESSIBILITY & THEME SUPPORT
   ============================================== */

/* High contrast support */
@media (prefers-contrast: high) {
  .review-section {
    border: 2px solid #333;
  }

  .review-title {
    color: #000;
  }

  .review-subtitle {
    color: #333;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .review-section,
  .review-button,
  .star,
  .google-icon {
    animation: none;
    transition: none;
  }

  .review-section::before,
  .floating-star {
    animation: none;
  }
}

/* Dark mode compatibility
@media (prefers-color-scheme: dark) {
  .review-section {
    background-color: #1a1a1a;
    color: white;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(110, 0, 255, 0.2);
  }

  .review-title {
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  }

  .review-subtitle {
    color: #ccc;
  }

  .social-proof {
    color: #aaa;
  }

  .review-section:hover {
    box-shadow: 0 25px 50px rgba(110, 0, 255, 0.5),
      0 0 40px rgba(110, 0, 255, 0.3);
  }
} */

/* ==============================================
   PRINT STYLES
   ============================================== */

@media print {
  .review-section {
    break-inside: avoid;
    box-shadow: none;
    background: white !important;
    color: rgb(247, 240, 240) !important;
    margin: 20px 0;
    padding: 20px;
  }

  .floating-elements,
  .review-section::before,
  .review-section::after {
    display: none;
  }

  .review-button {
    background: #333 !important;
    color: white !important;
  }
}
