:root {
  --primary: #6c63ff;
  --primary-dark: #564fcc;
  --secondary: #ff6584;
  --dark: #1a1a2e;
  --darker: #16213e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --success: #28a745;
  --warning: #fd7e14;
  --danger: #dc3545;
  --info: #17a2b8;

  --font-main: "Space Grotesk", sans-serif;
  --font-secondary: "Poppins", sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05);

  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  --glass-blur: blur(10px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-main);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-outline:hover {
  background-color: var(--light);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 700px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-main);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--light);
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  justify-content: space-around; /**/
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 45%;
  z-index: 1;
  opacity: 0.9;
  margin-right: 30px;
}

.hero-image img {
  width: 100%;
  background-size: cover;
  background-position: center;
}

/* Particles Background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

/* About Section */
#about {
  background-color: var(--dark);
  position: relative;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-xl);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.skills {
  margin-top: 2rem;
}

.skills h4 {
  margin-bottom: 1rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.skill-item {
  background-color: rgba(108, 99, 255, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background-color: rgba(108, 99, 255, 0.2);
  transform: translateY(-3px);
}

.skill-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Services Section */
#services {
  background-color: var(--darker);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.1),
    rgba(255, 101, 132, 0.1)
  );
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Portfolio Section */
#portfolio {
  background-color: var(--dark);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--gray);
  color: var(--light);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.portfolio-slider {
  position: relative;
}

.portfolio-slider .slick-list {
  padding: 20px 0;
  margin: 0 -15px;
}

.portfolio-slider .slick-slide {
  padding: 0 15px;
  transition: all 0.3s ease;
}

.portfolio-slider .slick-slide:not(.slick-center) {
  opacity: 0.7;
  transform: scale(0.95);
}

.portfolio-slider .slick-slide.slick-center {
  opacity: 1;
  transform: scale(1);
}

.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 400px;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.portfolio-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-arrow:hover {
  background-color: var(--primary);
}

.slick-prev {
  left: -70px;
}

.slick-next {
  right: -70px;
}

/* Blog Section */
#blog {
  background-color: var(--darker);
}

.blog-slider {
  position: relative;
}

.blog-slider .slick-list {
  padding: 20px 0;
  margin: 0 -15px;
}

.blog-slider .slick-slide {
  padding: 0 15px;
  transition: all 0.3s ease;
}

.blog-slider .slick-slide:not(.slick-center) {
  opacity: 0.7;
  transform: scale(0.95);
}

.blog-slider .slick-slide.slick-center {
  opacity: 1;
  transform: scale(1);
}

.blog-card {
  background-color: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

/* Membership Section */
#membership {
  background-color: var(--dark);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.membership-card {
  background-color: var(--darker);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(108, 99, 255, 0.2);
}

.membership-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), transparent);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.membership-card:hover::before {
  opacity: 1;
}

.membership-card.popular {
  border: 1px solid var(--primary);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 0 0 5px 5px;
  font-size: 0.8rem;
  font-weight: 500;
}

.membership-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.membership-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.membership-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.membership-price span {
  font-size: 1rem;
  color: var(--gray);
}

.membership-features {
  list-style: none;
  margin-bottom: 2rem;
}

.membership-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-features li:last-child {
  border-bottom: none;
}

/* Recommendations Section */
#recommendations {
  background-color: var(--darker);
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.recommendation-card {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.recommendation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), transparent);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease;
}

.recommendation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.recommendation-card:hover::before {
  opacity: 1;
}

.recommendation-category {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(108, 99, 255, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.recommendation-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.recommendation-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.recommendation-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.recommendation-link:hover {
  gap: 10px;
}
/* Recommendations Section */
#recommendations {
  background-color: var(--darker);
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.recommendation-card {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.recommendation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.recommendation-category {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(108, 99, 255, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.recommendation-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.recommendation-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.recommendation-links {
  display: flex;
  gap: 15px;
}

.recommendation-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.recommendation-links a:hover {
  color: var(--secondary);
}

/* Contact Section */
#contact {
  background-color: var(--dark);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 5px;
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: var(--primary);
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--light);
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(108, 99, 255, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: var(--font-main);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
  background-color: var(--darker);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-main);
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--primary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px 0 0 5px;
  color: var(--light);
  font-family: var(--font-secondary);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  padding: 0 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* Glassmorphism Card */
.glass-card {
  background: var(--glass);
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .slick-prev {
    left: -20px;
  }

  .slick-next {
    right: -20px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .portfolio-filter {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .slick-prev,
  .slick-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.5s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin-left: 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .portfolio-slider .slick-slide:not(.slick-center),
  .blog-slider .slick-slide:not(.slick-center) {
    opacity: 1;
    transform: scale(1);
  }

  .slick-prev {
    left: 10px;
  }

  .slick-next {
    right: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-slider .slick-list,
  .blog-slider .slick-list {
    padding: 10px 0;
    margin: 0 -10px;
  }

  .portfolio-slider .slick-slide,
  .blog-slider .slick-slide {
    padding: 0 10px;
  }

  .portfolio-item {
    height: 350px;
  }
}
