/* Base Styles */
:root {
    --background: #0a101f;
    --foreground: #f8fafc;
    --card: #0f172a;
    --card-foreground: #f8fafc;
    --primary: #1aadb8;
    --primary-foreground: #0a101f;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --accent: #1e293b;
    --accent-foreground: #f8fafc;
    --destructive: #7f1d1d;
    --destructive-foreground: #f8fafc;
    --border: #1e293b;
    --input: #1e293b;
    --ring: #00e8f8;
    --radius: 0.5rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Section Styles */
  .section {
    padding: 5rem 0;
  }
  
  .bg-card {
    background-color: var(--card);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .badge {
    display: inline-block;
    background-color: rgba(0, 232, 248, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 232, 248, 0.2);
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
  }
  
  .gradient-text {
    background: linear-gradient(to right, var(--primary), rgba(0, 232, 248, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
  }
  
  .btn-primary {
    background-color: var(--primary-dark);
    color: var(--primary-foreground);
        box-shadow: 0 0 15px rgba(0, 232, 248, 0.5);

  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(58, 86, 240, 0.5);
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
  }
  
  .btn-outline:hover {
    background-color: rgba(0, 232, 248, 0.1);
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1.125rem;
  }
  
  .btn-block {
    display: block;
    width: 100%;
  }
  
  /* Card Styles */
  .card {
    background-color: #27375d;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }
  
  .card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
  }
  
  /* Header Styles */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .header.scrolled {
    background-color: rgba(10, 16, 31, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-link {
    margin: 0 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover, .nav-link.active {
    color: var(--primary);
  }
  
  .nav-link:hover::after, .nav-link.active::after {
    width: 100%;
  }
  
  .desktop-only {
    display: none;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }
  
  .nav-mobile .nav-link {
    margin: 0.5rem 0;
    display: block;
    padding: 0.5rem;
  }
  
  .nav-mobile .btn {
    margin-top: 0.5rem;
  }
  
  .nav-mobile.show {
    display: flex;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
  }
  
  .bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.2;
    animation: pulse 5s infinite alternate;
  }
  
  .bg-element-1 {
    top: 25%;
    right: 25%;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 232, 248, 0.3);
  }
  
  .bg-element-2 {
    bottom: 25%;
    left: 25%;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 232, 248, 0.3);
    animation-delay: 2s;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.9);
      opacity: 0.2;
    }
    100% {
      transform: scale(1.1);
      opacity: 0.3;
    }
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .hero-content {
    order: 2;
    animation: fadeInUp 1s ease;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 600px;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 15px rgba(0, 232, 248, 0.5);
  }
  
  .hero-image {
    order: 1;
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    animation: fadeInDown 1s ease;
  }
  
  .image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 232, 248, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 3s infinite alternate;
  }
  
  .image-container {
    position: relative;
    background-color: var(--card);
    border: 1px solid rgba(0, 232, 248, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .image-container img {
    border-radius: 0.5rem;
    width: 100%;
    height: auto;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (min-width: 768px) {
    .hero-container {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 2rem; /* optional spacing between image and text */
    }
  
    .hero-content,
    .hero-image {
      flex: 1;
    }
  
    .hero-content {
      padding-right: 2rem; /* optional spacing for better layout */
    }
  
    .hero-image {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
    }
  }
  
  
  /* About Section */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .experience-card-wrapper {
    position: relative;
  }
  
  .experience-counter {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--primary), rgba(0, 232, 248, 0.7));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 1.75rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: pulse 2s infinite;
  }
  
  .experience-card {
    position: relative;
    z-index: 1;
    padding-top: 2.5rem;
  }
  
  .experience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .experience-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
  }
  
  .features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    background-color: rgba(0, 232, 248, 0.05);
  }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(0, 232, 248, 0.1);
    color: var(--primary);
    border-radius: 50%;
  }
  
  .tabs-container {
    background-color: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
  }
  
  .tab-btn {
    flex: 1;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .tab-btn:hover {
    color: var(--primary);
  }
  
  .tab-btn.active {
    color: var(--primary);
  }
  
  .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
  }
  
  .tabs-content {
    padding: 1.5rem;
  }
  
  .tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  .tab-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tab-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .tab-info p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
  }
  
  .stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
    border-radius: 0.5rem;
  }
  
  .stat-card.stat-blue {
    background-color: rgba(0, 232, 248, 0.1);
  }
  
  .stat-card.stat-purple {
    background-color: rgba(99, 102, 241, 0.1);
  }
  
  .stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .stat-header h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
  }
  
  .stat-header i {
    font-size: 0.875rem;
    color: var(--primary);
  }
  
  .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .tab-image {
    height: 100%;
    min-height: 200px;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .tab-image:hover img {
    transform: scale(1.05);
  }
  
  .testimonial-section {
    margin-top: 4rem;
  }
  
  .testimonial-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    text-align: center;
    padding: 2rem;
  }
  
  .testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 232, 248, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.25rem;
  }
  
  .testimonial-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .quote-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: rgba(0, 232, 248, 0.5);
  }
  
  .quote-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .author-avatar {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 232, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }
  
  .author-info {
    text-align: left;
  }
  
  .author-name {
    font-weight: 500;
  }
  
  .author-title {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  /* Skills Section */
  .skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .skill-card {
    text-align: center;
  }
  
  .skill-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .skill-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .skill-category {
    display: block;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
  
  .progress-container {
    margin-bottom: 1.5rem;
  }
  
  .progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
  
  .progress-bar {
    height: 8px;
    background-color: var(--secondary);
    border-radius: 4px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), rgba(0, 232, 248, 0.7));
    width: 0;
    transition: width 1s ease-in-out;
  }
  
  .skill-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .tool-tag {
    background-color: rgba(0, 232, 248, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
  }
  
  .tool-tag:hover {
    background-color: rgba(0, 232, 248, 0.2);
  }
  
  /* Projects Section */
  #projects {
  background-color: #020617;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge {
  display: inline-block;
  background-color: rgba(20, 184, 166, 0.2);
  color: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-light), #6ee7b7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mt-12 {
  margin-top: 3rem;
}

/* Project Section Styles */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--bg-card);
  color: var(--text-muted);
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background-color: var(--bg-card-hover);
}

.filter-btn.active {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(20, 184, 166, 0.2);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  transform: translateY(0);
  opacity: 1;
  display: flex;
  flex-direction: column;
}

.project-card.hidden {
  display: none;
}

.project-card.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.project-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.project-image {
  position: relative;
  height: 15rem;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.project-card:hover .project-overlay {
  opacity: 1;
}

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

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(20, 184, 166, 0.2);
  color: var(--primary-light);
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.project-card:hover .project-title {
  color: var(--primary-light);
}

.project-description-container {
  position: relative;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.project-description {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.project-description.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.see-more-btn {
  background: none;
  border: none;
  color: var(--primary-light);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
}

.see-more-btn:hover {
  text-decoration: underline;
}

.see-more-btn i {
  margin-left: 0.25rem;
  font-size: 0.625rem;
  transition: transform 0.3s ease;
}

.see-more-btn.expanded i {
  transform: rotate(180deg);
}

.project-links {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  flex: 1;
  justify-content: center;
}

.project-link.demo {
  background-color: white;
  color: #020617;
  border: 1px solid white;
}

.project-link.demo:hover {
  background-color: transparent;
  color: white;
}

.project-link.code {
  background-color: transparent;
  color: white;
  border: 1px solid var(--border);
}

.project-link.code:hover {
  background-color: white;
  color: #020617;
  border-color: white;
}

.btn-primary {
  /* display: inline-flex; */
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-dark);
  color: white;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: linear-gradient(to right, #2dd4bf, #3b82f6, #8b5cf6);
}


/* Testimonials Section Styles */
.testimonials-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-group {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .testimonials-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(20, 184, 166, 0.3);
  margin-right: 1rem;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
  color: white;
  font-size: 0.875rem;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--bg-card);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.testimonial-btn:hover {
  background-color: var(--primary-dark);
}

.testimonial-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

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

.testimonial-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: var(--bg-card-hover);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  width: 2rem;
  border-radius: 9999px;
  background-color: var(--primary);
}

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

.fade-in-animation {
  animation: fadeIn 0.5s ease forwards;
}
  
  /* Contact Section */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
  }


.contact-social-card {
  display: flex;
  flex-direction: column; /* Add this */
  align-items: center;
  gap: 1rem;
  padding: 20px; /* Optional: add spacing around the card */
  border-radius: 12px;    /* Optional: rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(0, 232, 248, 0.1);
    color: var(--primary);
    border-radius: 50%;
  }
  
  .contact-card h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .text-muted {
    color: var(--muted-foreground);
  }
  
  .contact-form-card {
    padding: 2rem;
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .success-message {
    display: none;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .error-message {
    display: none;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group label {
    font-size: 0.875rem;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #a8bce6;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: black;
    font-size: 1rem;
    transition: border-color 0.3s;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(76, 208, 218, 0.2);
  }
  
  textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Footer */
  .footer {
    background-color: var(--card);
    padding: 2rem 0;
    text-align: center;
  }
  
  .copyright {
    color: var(--muted-foreground);
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .hero-title {
      font-size: 3rem;
    }
    
    .hero-image {
      width: 300px;
      height: 300px;
    }
    
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .nav-desktop {
      display: flex;
      align-items: center;
    }
    
    .desktop-only {
      display: block;
    }
    
    .menu-toggle {
      display: none;
    }
    
    .hero-container {
      flex-direction: row;
      align-items: center;
    }
    
    .hero-content {
      order: 1;
      flex: 1;
    }
    
    .hero-image {
      order: 2;
      flex: 1;
    }
    
    .about-grid {
      grid-template-columns: 5fr 7fr;
    }
    
    .tab-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .skills-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 3.5rem;
    }
    
    .hero-image {
      width: 350px;
      height: 350px;
    }
    
    .skills-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .projects-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }

.wrapper .button {
  display: inline-block;
  height: 60px;
  width: 60px;
  float: left;
  text-decoration: none;
  margin: 0 5px;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
}
.wrapper .button:hover {
  width: 200px;
}
.wrapper .button .icon {
  display: inline-block;
  height: 60px;
  width: 60px;
  color: #000;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1):hover .icon {
  background: #4267B2;
}
.wrapper .button:nth-child(2):hover .icon {
  background: #1075ba;
}
.wrapper .button:nth-child(3):hover .icon {
  background: #E1306C;
}
.wrapper .button:nth-child(4):hover .icon {
  background: #333;
}
.wrapper .button:nth-child(5):hover .icon {
  background: #ff0000;
}
.wrapper .button .icon i {
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:hover .icon i {
  color: #fff;
}
.wrapper .button span {
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1) span {
  color: #4267B2;
}
.wrapper .button:nth-child(2) span {
  color: #1DA1F2;
}
.wrapper .button:nth-child(3) span {
  color: #E1306C;
}
.wrapper .button:nth-child(4) span {
  color: #333;
}
.wrapper .button:nth-child(5) span {
  color: #ff0000;
}