/* Global Styles */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #1a1a1a;
  --text-primary: #333;
  --text-secondary: #666;
  --text-tertiary: #aaa;
  --accent: #000;
  --accent-secondary: #333;
  --border: rgba(0, 0, 0, 0.06);
  --shadow: rgba(0, 0, 0, 0.08);
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --card-bg: #fff;
  --footer-bg: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --bg-tertiary: #ffffff;
  --text-primary: #e0e0e0;
  --text-secondary: #ccc;
  --text-tertiary: #888;
  --accent: #fff;
  --accent-secondary: #ccc;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.3);
  --navbar-bg: rgba(26, 26, 26, 0.95);
  --card-bg: #2a2a2a;
  --footer-bg: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.bodyinner {
  width: 100%;
  position: relative;
  opacity: 0;
  filter: blur(10px);
  animation: blurFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow-x: hidden;
}

@keyframes blurFadeIn {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* Remove margins from common elements */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
  

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Preloader styling */
 #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Animated text */
.preloader-text {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    animation: colorChange 2s infinite;
}

/* Keyframe for color change animation */
@keyframes colorChange {
    0% { color: #E67B45; }
    25% { color: #6a5acd; }
    50% { color: #32cd32; }
    75% { color: #ffa500; }
    100% { color: whitesmoke; }
}

/* Hide preloader after page load */
body.loaded #preloader {
    display: none;
}




/* Navigation Bar */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brand-text:hover {
  color: #333;
}

.brand-text:hover .brand-icon {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #000, #333);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}

.nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.nav-link:hover i {
  transform: scale(1.1);
}

.nav-link span {
  display: inline;
}

.resume-btn {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-left: 0.5rem;
}

.resume-btn::before {
  display: none;
}

.resume-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-socials {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
}

.social-icon:hover {
  background: #000;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #000;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, 8px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    gap: 0;
  }
  
  .nav-link {
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
  }
  
  .nav-link span {
    display: none;
  }
  
  .nav-link i {
    font-size: 0.95rem;
  }
  
  .resume-btn span {
    display: inline;
  }
  
  .resume-btn {
    padding: 0.6rem 1rem;
    margin-left: 0.3rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .brand-text {
    font-size: 1.2rem;
  }
  
  .brand-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9rem;
  }
  
  .nav-link span {
    display: inline;
    margin-left: 0.5rem;
  }
  
  .nav-link::before {
    display: none;
  }
  
  .nav-link:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    padding-left: 1.7rem;
  }
  
  .resume-btn {
    margin: 0.5rem 1.5rem;
    border-radius: 8px;
    width: calc(100% - 3rem);
    justify-content: center;
    gap: 0.6rem;
  }
  
  .nav-actions {
    display: none;
  }
  
  .nav-socials {
    flex-direction: row;
    gap: 0.5rem;
    margin: 0;
    padding: 1.5rem;
    border: none;
    justify-content: center;
  }
  
  .nav-menu .nav-socials {
    display: flex;
    position: static;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }
  
  .brand-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .brand-text {
    font-size: 1rem;
    gap: 0.4rem;
  }
  
  .brand-icon {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  
  .nav-link {
    padding: 0.9rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .resume-btn {
    margin: 0.5rem 1.25rem;
    width: calc(100% - 2.5rem);
    font-size: 0.85rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  
  .nav-menu {
    top: 56px;
    max-height: calc(100vh - 56px);
  }
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000;
}

.nav-link i {
  font-size: 1rem;
}

.resume-btn {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.resume-btn:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.nav-socials {
  display: flex;
  gap: 0.8rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-socials a:hover {
  background: #000;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #000;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0px, -5px);
}




@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navbar-bg);
    width: 100%;
    text-align: center;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px var(--shadow);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
  }

  .nav-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
  }

  .resume-btn {
    margin: 0.5rem;
    border-radius: 8px;
  }

  .nav-socials {
    flex-direction: row;
    gap: 0.5rem;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    justify-content: center;
    padding: 1rem;
    border-bottom: none;
  }

  .nav-socials a {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .brand-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.75rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 0.8rem 0.5rem;
  }
  
  .resume-btn {
    font-size: 0.85rem;
  }
  
  .nav-socials {
    padding: 0.8rem;
  }
}



        .about-section {
  display: flex;
  font-family: 'Poppins', sans-serif;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  padding: 8rem 5rem 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text-wrapper {
  text-align: left;
}

.hero-greeting {
  display: inline-block;
  margin-bottom: 2rem;
}

.greeting-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
  color: #333;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.08);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  color: #000;
}

.gradient-text {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.role-text {
  color: #555;
  font-weight: 700;
}

.about-subtitle {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.cta-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-button.primary {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-button.secondary {
  background: rgb(0, 0, 0);
  color: #ffffff;
  border: 2px solid #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cta-button.secondary:hover {
  background: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cta-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(3px);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-badge.active {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
}

.status-badge:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.5);
}

.status-dot {
  display: inline-flex;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

.photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile-photo-container {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 8px solid white;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.profile-photo:hover {
  transform: translateY(-10px) scale(1.02);
}

.photo-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
  animation: glow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-title {
    font-size: 2.8rem;
  }
  
  .profile-photo-container {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-section {
    min-height: 80vh;
    padding: 3rem 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-content {
    padding: 0;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1rem;
  }
  
  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .profile-photo-container {
    width: 250px;
    height: 250px;
  }
}




/* HTML: <div class="loader"></div> */
.loader {
  width: fit-content;
  font-size: 40px;
  font-family: monospace;
  font-weight: bold;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px #000000;
  --g:conic-gradient(rgba(34, 33, 33, 0.569) 0) no-repeat text;
  background:var(--g) 0,var(--g) 1ch,var(--g) 2ch,var(--g) 3ch,var(--g) 4ch,var(--g) 5ch,var(--g) 6ch;
  animation: 
    l17-0 1s linear infinite alternate,
    l17-1 2s linear infinite;
}
.loader:before {
  content: "SOFTRAY";
}
@keyframes l17-0 {
  0%   {background-size: 1ch 0   }
  100% {background-size: 1ch 100%}
}
@keyframes l17-1 {
  0%,50%    {background-position-y: 100%, 0}
  50.01%,to {background-position-y: 0, 100%}
}



.about-content {
  text-align: left;
  background: transparent;
  width: 100%;
}



.about-title span {
  font-size: 1.7rem;
  font-weight: 800;
}

.about-title {
  color: #000000;
   
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.about-subtitle {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
/* .highlight {
  color: #00bcd4;
  font-weight: bold;
  font-size: 1.15em;
} */
/* .photo-wrapper {
  display: flex;
  justify-content: left;
  align-items: left;
} */
 .profile-photo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  /* border: 5px solid #00bcd4; */
   box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  background: #fff;
  transition: transform 0.3s; 
} 
  /*
 .profile-photo:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px #00bcd4; 
}*/


/* Skills Badges Section */
.skills-badges {
  margin-top: 2.5rem;
}

.skills-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: left;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.skill-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.skill-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.skill-badge:hover::before {
  left: 100%;
}

.skill-badge:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.skill-badge i {
  font-size: 1.2rem;
  color: #000;
  transition: all 0.3s ease;
}

.skill-badge:hover i {
  color: #333;
  transform: scale(1.1);
}

.skill-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}

.skill-badge:hover span {
  color: #000;
}

/* Responsive adjustments for skills badges */
@media (max-width: 768px) {
  .badges-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
  }

  .skill-badge {
    padding: 0.7rem 0.9rem;
    gap: 0.5rem;
  }

  .skill-badge i {
    font-size: 1.1rem;
  }

  .skill-badge span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .skill-badge {
    padding: 0.6rem 0.8rem;
    gap: 0.4rem;
  }

  .skill-badge i {
    font-size: 1rem;
  }

  .skill-badge span {
    font-size: 0.8rem;
  }
}

/* Experience Timeline Section */
.timeline-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 1rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.timeline-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-header .section-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #666;
}

.timeline-header h2 {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  color: #222;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.timeline-header p {
  font-size: 1.1rem;
  color: #888;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #000 0%, #333 100%);
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-marker {
  position: absolute;
  left: -1rem;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: white;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.timeline-dot {
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  background: white;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-left: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 2rem;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-right: 0.5rem solid white;
  border-right-color: white;
  filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.1));
}

.timeline-item:hover .timeline-content {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: #222;
  font-weight: 700;
}

.timeline-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.timeline-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.timeline-skills span {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-skills span:hover {
  background: #000;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design for Timeline */
@media (max-width: 1024px) {
  .timeline {
    padding-left: 1.5rem;
  }

  .timeline::before {
    left: 0.5rem;
  }

  .timeline-marker {
    left: -0.75rem;
  }

  .timeline-content {
    margin-left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 3.5rem 1rem;
  }

  .timeline-header h2 {
    font-size: 2rem;
  }

  .timeline-header p {
    font-size: 0.95rem;
  }

  .timeline {
    padding-left: 1rem;
  }

  .timeline::before {
    left: 0;
    width: 1px;
  }

  .timeline-marker {
    left: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }

  .timeline-content {
    margin-left: 1rem;
    padding: 1.5rem;
  }

  .timeline-content::before {
    left: -0.4rem;
    border-right-width: 0.4rem;
    border-top-width: 0.4rem;
    border-bottom-width: 0.4rem;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }

  .timeline-skills {
    gap: 0.5rem;
  }

  .timeline-skills span {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .timeline-section {
    padding: 2.5rem 0.75rem;
  }

  .timeline-header h2 {
    font-size: 1.6rem;
  }

  .timeline-header .section-label {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .timeline-skills {
    gap: 0.4rem;
  }

  .timeline-skills span {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 5rem 1rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-header .section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #aaa;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-header h2 {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-header p {
  font-size: 1.1rem;
  color: #888;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(255, 255, 255, 0.1), 0 0 40px rgba(255, 255, 255, 0.05);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-radius: 1.2rem;
  font-size: 2.2rem;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  transition: all 0.4s ease;
  position: relative;
}

.stat-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #ff0080, #ff8c00, #40e0d0);
  border-radius: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(20px);
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #1a1a1a;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #fff 0%, #bbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.05rem;
  color: #888;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .stat-card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .stat-icon {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 3.5rem 1rem;
  }

  .stats-header h2 {
    font-size: 2rem;
  }

  .stats-header p {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.75rem;
    gap: 1.5rem;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 2.5rem 0.75rem;
  }

  .stats-header h2 {
    font-size: 1.6rem;
  }

  .stats-header p {
    font-size: 0.85rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-card {
    padding: 1.25rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}


.projects-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.projects-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
  pointer-events: none;
}

.projects-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.projects-header {
  text-align: center;
  margin-bottom: 4rem;
}

.projects-header .section-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #666;
}

.projects-header h2 {
  color: #222;
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.projects-subtitle {
  color: #888;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.project-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
}

.project-card:hover::before {
  opacity: 1;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-img {
  transform: scale(1.1);
}

.project-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-category i {
  font-size: 0.9rem;
}

.project-card:hover .project-category {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  transform: translateY(-4px);
}

.project-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-header-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.project-card h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #222;
  font-weight: 700;
  line-height: 1.3;
}

.project-quick-link {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.project-quick-link:hover {
  background: #222;
  color: white;
  transform: rotate(45deg);
}

.project-card p {
  color: #666;
  font-size: 0.95rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
  flex-grow: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
  color: #333;
  padding: 0.45rem 0.95rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tag i {
  font-size: 0.85rem;
}

.tag:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.12) 100%);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #222 0%, #444 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #222;
  width: 100%;
  font-size: 0.95rem;
}

.project-link:hover {
  background: linear-gradient(135deg, #444 0%, #666 100%);
  border-color: #444;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.project-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.project-link:hover i {
  transform: translateX(2px);
}

/* Project Filters */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
}

.filter-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  border-color: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.filter-btn.active:hover {
  background: linear-gradient(135deg, #333 0%, #555 100%);
  border-color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .projects-section {
    padding: 4rem 1rem;
  }
  
  .projects-header {
    margin-bottom: 3.5rem;
  }
  
  .projects-header h2 {
    font-size: 2.3rem;
  }
  
  .projects-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .project-card {
    max-height: 100%;
  }
  
  .project-image-wrapper {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 3.5rem 1rem;
  }

  .projects-header {
    margin-bottom: 3rem;
  }

  .projects-header h2 {
    font-size: 2rem;
  }

  .projects-subtitle {
    font-size: 0.95rem;
  }

  .projects-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-image-wrapper {
    height: 200px;
  }
  
  .project-body {
    padding: 1.5rem;
  }
  
  .project-card h3 {
    font-size: 1.3rem;
  }
  
  .project-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 2.5rem 0.75rem;
  }
  
  .projects-header {
    margin-bottom: 2rem;
  }
  
  .projects-header h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  
  .projects-header .section-label {
    font-size: 0.7rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .projects-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .projects-list {
    gap: 1rem;
  }
  
  .project-image-wrapper {
    height: 150px;
  }
  
  .project-body {
    padding: 1rem;
  }
  
  .project-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .project-card p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .project-header-info {
    margin-bottom: 0.75rem;
  }
  
  .project-category {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }
  
  .project-quick-link {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
  
  .project-link {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 360px) {
  .projects-section {
    padding: 2rem 0.5rem;
  }
  
  .projects-header h2 {
    font-size: 1.2rem;
  }
  
  .projects-header .section-label {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .project-card {
    border-radius: 1rem;
  }
  
  .project-body {
    padding: 0.9rem;
  }
  
  .project-card h3 {
    font-size: 0.95rem;
  }
  
  .project-card p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .project-link {
    width: 100%;
    padding: 0.65rem;
    font-size: 0.8rem;
    text-align: center;
  }
  
  .project-category {
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }
}

.project-link:hover i {
  transform: translateX(2px);
}

.contact-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  padding: 5rem 1rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

gallery-item

.contact-header {
  /* text-align: center; */
  margin-bottom: 4rem;
}

.contact-header .section-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  color: #666;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.contact-header h2 {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  color: #000;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.contact-description {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.5rem 0;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
  border-radius: 12px;
  color: #000;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover .info-icon {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-content h4 {
  margin: 0 0 0.4rem 0;
  font-size: 1.1rem;
  color: #000;
  font-weight: 700;
}

.info-content p {
  margin: 0 0 0.3rem 0;
  color: #666;
  font-size: 0.95rem;
}

.info-content a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.info-content a:hover {
  color: #666;
}

.info-hint {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.social-connect {
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
}

.social-connect h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-hint {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  color: #000;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
  background: #000;
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: #000;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  border-radius: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-form:hover::before {
  opacity: 1;
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  background: #fafbfc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  border: none;
  border-radius: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.submit-button:active {
  transform: translateY(-1px);
}

.submit-button i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.submit-button:hover i {
  transform: rotate(20deg) translateX(2px);
}

.form-note {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

/* Modern Contact Form Styles */
.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.form-header {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.5rem 0;
}

.form-header p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  text-transform: capitalize;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  background: #fafbfc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #000;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Poppins', sans-serif;
}

.form-error {
  display: block;
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  min-height: 0.9rem;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  border: none;
  border-radius: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(4px);
}

.form-message {
  padding: 1rem;
  border-radius: 0.9rem;
  text-align: center;
  font-weight: 600;
  display: none;
  animation: slideIn 0.3s ease;
}

.form-message.success {
  display: block;
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    gap: 3rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3.5rem 1rem;
  }
  
  .contact-section::before {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
  }
  
  .contact-section::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
  }
  
  .contact-header h2 {
    font-size: 2.2rem;
  }
  
  .contact-description {
    font-size: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-info {
    gap: 1.5rem;
  }
  
  .info-item {
    padding: 1rem;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .info-content h4 {
    font-size: 1rem;
  }
  
  .info-content p {
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .form-title {
    font-size: 1.1rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.9rem;
    font-size: 0.9rem;
  }
  
  .form-group textarea {
    min-height: 110px;
  }
  
  .submit-button {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2.5rem 0.75rem;
  }
  
  .contact-header h2 {
    font-size: 1.6rem;
  }
  
  .contact-header .section-label {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  
  .contact-description {
    font-size: 0.9rem;
  }
  
  .contact-info-title,
  .form-title {
    font-size: 1rem;
  }
  
  .info-item {
    gap: 1rem;
    padding: 0.9rem;
  }
  
  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .info-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
  
  .info-content p {
    font-size: 0.85rem;
  }
  
  .social-icons {
    gap: 0.75rem;
  }
  
  .social-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .contact-form {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  
  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
    border-radius: 0.7rem;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .submit-button {
    padding: 0.95rem 1.5rem;
    font-size: 0.9rem;
    gap: 0.6rem;
  }
  
  .form-note {
    font-size: 0.8rem;
  }
}

.footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #f0f0f0;
  padding: 4rem 1rem 2rem;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 0;
  left: -100px;
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section.brand h3 {
  font-size: 1.8rem;
  margin: 0 0 0.8rem 0;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section.brand p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link i {
  color: #ffffff !important;
}

.footer-social-link:hover {
  background: white;
  color: #0f0f0f;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: white;
}

.footer-social-link:hover i {
  color: #0f0f0f !important;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin: 0 0 1.3rem 0;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section.links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-section.links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section.links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-section.contact p {
  margin: 0 0 0.8rem 0;
  color: #aaa;
  font-size: 0.95rem;
}

.footer-section.contact a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section.contact a:hover {
  color: white;
}

.resume-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.resume-link:hover {
  background: white;
  color: #0f0f0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin-bottom: 2rem;
}

.footer-bottom {
  text-align: center;
}

.copyright {
  margin: 0 0 0.5rem 0;
  color: #aaa;
  font-size: 0.9rem;
}

.copyright strong {
  color: white;
}

.credit {
  margin: 0;
  color: #888;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.credit i {
  color: #ff6b6b;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem 1.5rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-section.brand h3 {
    font-size: 1.5rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .credit {
    flex-direction: column;
    gap: 0.2rem;
  }
}

@media (max-width: 900px) {
  .projects-list {
    flex-direction: column;
    align-items: center;
  }
}
    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #ffffff;
        position: absolute;
        top: 60px;
        left: 0;
      }

      
      .navbar ul.active {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
      .navbar {
        position: relative;
        
      }
    }

















    .skills-section {
  background: #c6080800;
  padding: 1rem 10rem;
  
  overflow: hidden;
}
.skills-title {
  color: #00bcd4;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.skills-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100px;
  margin: 0 auto;
}
.skills-track {
  display: flex;
  align-items: center;
  animation: scrollSkills 20s linear infinite;
}
.skill-logo {
  height: 50px;
  width: 50px;
  margin: 0 0.5rem;
  object-fit: contain;
  /* filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); */
  /* background: #fff; */
  border-radius: 16px;
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.skill-logo:hover,
.skill-logo:active {
  transform: scale(1.25);
 
}
@keyframes scrollSkills {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



.aboutme-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 50%, #f5f7fa 100%);
  padding: 6rem 1rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.aboutme-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
}

.aboutme-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  pointer-events: none;
  z-index: 0;
}

.aboutme-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.aboutme-header {
  text-align: left;
  margin-bottom: 4rem;
  animation: slideInDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.04);
  color: #555;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutme-header:hover .section-label {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}

.aboutme-header h2 {
  font-size: 3rem;
  margin: 0;
  color: #000;
  font-weight: 800;
  letter-spacing: -1px;
  
  line-height: 1.2;
  background: linear-gradient(135deg, #000000 0%, #333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aboutme-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.aboutme-text-wrapper {
  padding: 0 1rem;
  animation: slideInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aboutme-intro {
  font-size: 1.25rem;
  color: #222;
  font-weight: 600;
  margin: 0 0 1.8rem 0;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.aboutme-paragraph {
  color: #555;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.aboutme-highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(10px);
  border-left: 4px solid #000;
  padding: 1.8rem;
  border-radius: 1rem;
  color: #222;
  font-style: italic;
  font-size: 1.1rem;
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aboutme-highlight:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.aboutme-highlight i {
  color: #000;
  font-size: 1.4rem;
  opacity: 0.4;
  flex-shrink: 0;
}

.aboutme-cta {
  margin-top: 2.5rem;
}

.aboutme-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
}

.aboutme-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.aboutme-button i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.aboutme-button:hover i {
  transform: translateX(4px);
}

.aboutme-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  animation: fadeInRight 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  height: 350px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gallery-item.primary {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .aboutme-section {
    padding: 5rem 1rem;
  }
  
  .aboutme-header {
    margin-bottom: 3rem;
  }
  
  .aboutme-header h2 {
    font-size: 2.5rem;
  }
  
  .aboutme-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gallery-item.primary {
    grid-row: auto;
  }
  
  .aboutme-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  
  .gallery-item {
    height: 300px;
  }
}



@media (max-width: 768px) {
  .aboutme-section {
    padding: 3.5rem 1rem;
  }
  
  .aboutme-section::before {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -80px;
  }
  
  .aboutme-section::after {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
  }
  
  .aboutme-header h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
  }
  
  .aboutme-intro {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .aboutme-grid {
    gap: 2.5rem;
  }
  
  .aboutme-text-wrapper {
    padding: 0;
  }
  
  .aboutme-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    height: 280px;
    border-radius: 1.2rem;
  }
  
  .aboutme-button {
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
  }
  
  .aboutme-highlight {
    padding: 1.5rem;
    font-size: 1rem;
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .aboutme-section {
    padding: 2.5rem 0.75rem;
  }
  
  .aboutme-section::before {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
  }
  
  .aboutme-section::after {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -30px;
  }
  
  .aboutme-header {
    margin-bottom: 2.5rem;
  }

  contact-header
  
  .aboutme-header h2 {
    font-size: 1.75rem;
    /* text-align: center; */
    letter-spacing: -0.3px;
  }
  
  .section-label {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  
  .aboutme-intro {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
  }
  
  .aboutme-paragraph {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
  }
  
  .aboutme-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .aboutme-text-wrapper {
    order: 1;
    padding: 0;
  }
  
  .aboutme-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    order: 2;
    margin-bottom: 0;
  }
  
  .gallery-item {
    height: 350px;
    width: 300px;
    border-radius: 1rem;
  }
  
  .gallery-item.primary {
    grid-row: auto;
  }
  
  .aboutme-highlight {
    padding: 1.25rem;
    font-size: 0.95rem;
    margin: 1.5rem 0;
    gap: 0.8rem;
  }
  
  .aboutme-highlight i {
    font-size: 1.2rem;
  }
  
  .aboutme-cta {
    margin-top: 1.5rem;
  }
  
  .aboutme-button {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    text-align: center;
  }
  
  .aboutme-button i {
    font-size: 0.8rem;
  }
}

.social-section {
  background: #ffffff;
  padding: 2.5rem 1rem;
  text-align: center;
}
.social-title {
  /* color: #00bcd4; */
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
aboutme-gallery

.social-icon i {
  font-size: 1.3rem;
  color: black;
  
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* background: #fff; */
  color: #222;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
  /* transition: transform 0.2s, box-shadow 0.2s, color 0.2s; */
  font-weight: 500;
}
.social-icon:hover {
  transform: scale(1.08);
  /* box-shadow: 0 4px 16px #00bcd4; */
}
@media (max-width: 600px) {
  .social-links {
    display: flex;
    /* flex-direction: column; */
    gap: 0rem;
  }
  .social-icon {
    padding: 0.7rem 1rem;

  }
}

.fa-envelope-open, .fa-x-twitter, .fa-instagram, .fa-github {
  color: rgb(0, 0, 0);
  font-size: 1.2rem;
}

.fa-envelope-open:hover , .fa-x-twitter:hover , .fa-instagram:hover , .fa-github:hover {
  color: green;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}




@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-window.active {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  background: #1a1a1a;
  scrollbar-width: thin;
  scrollbar-color: #333 #1a1a1a;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.message {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.message.user {
  justify-content: flex-end;
}

.message.bot .message-avatar {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
}

.message.user .message-avatar {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.message-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.message-content {
  max-width: 70%;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.message.bot .message-content {
  background: #2a2a2a;
  color: #e0e0e0;
  border-bottom-left-radius: 4px;
}

.message.user .message-content {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border-bottom-right-radius: 4px;
}

.chatbot-input-area {
  padding: 1rem;
  background: #1a1a1a;
  border-top: 1px solid #333;
}

.chatbot-input-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #333;
  border-radius: 25px;
  background: #2a2a2a;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.chatbot-input:focus {
  border-color: #007bff;
}

.chatbot-send {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.chatbot-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.typing-indicator {
  display: none;
  padding: 0.5rem 1rem;
  color: #888;
  font-size: 0.8rem;
  font-style: italic;
}

.typing-indicator.active {
  display: block;
}

/* Responsive Design for Chatbot */
@media (max-width: 768px) {
  .chatbot-container {
    bottom: 15px;
    right: 15px;
  }

  .chatbot-window {
    width: calc(100vw - 30px);
    height: calc(100vh - 120px);
    max-width: 350px;
    max-height: 500px;
  }

  .chatbot-toggle {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 20px);
    height: calc(100vh - 100px);
    border-radius: 15px;
  }

  .chatbot-header {
    padding: 0.8rem 1.2rem;
  }

  .chatbot-title {
    font-size: 1rem;
  }

  .chatbot-messages {
    padding: 0.8rem;
  }

  .message-content {
    max-width: 75%;
    font-size: 0.85rem;
  }

  .chatbot-input-area {
    padding: 0.8rem;
  }

  .chatbot-input {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .chatbot-send {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}



/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  display: flex;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Dark Mode Scroll to Top Button */
[data-theme="dark"] .scroll-to-top {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .scroll-to-top:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* ====================================
   FEEDBACK SLIDER STYLES
   ==================================== */

.feedback-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 1rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.feedback-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.feedback-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.015) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  pointer-events: none;
}

.feedback-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feedback-header {
  text-align: center;
  margin-bottom: 4rem;
}

.feedback-header .section-label {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #666;
}

.feedback-header h2 {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  color: #222;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.feedback-header p {
  font-size: 1.1rem;
  color: #888;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.feedback-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feedback-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.feedback-track {
  display: flex;
  width: 400%; /* 4 slides */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-card {
  flex: 0 0 25%; /* 1/4 width for 4 slides */
  padding: 3rem 2rem;
  background: white;
  text-align: center;
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-card.active {
  opacity: 1;
  transform: scale(1);
}

.feedback-card .feedback-content {
  max-width: 500px;
  margin: 0 auto;
}

.feedback-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #ffd700;
  font-size: 1.2rem;
}

.feedback-card blockquote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 2rem 0;
  font-style: italic;
  position: relative;
}

.feedback-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -20px;
  left: -20px;
  font-family: serif;
}

.feedback-card blockquote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: serif;
}

.feedback-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: #222;
  font-weight: 700;
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.feedback-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.feedback-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: white;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.feedback-nav-btn:hover {
  background: #000;
  color: white;
  border-color: #000;
  transform: scale(1.1);
}

.feedback-nav-btn:active {
  transform: scale(0.95);
}

.feedback-indicators {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.indicator.active {
  background: #000;
  transform: scale(1.3);
  border-color: rgba(0, 0, 0, 0.3);
}

.indicator:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

/* Responsive Design for Feedback Slider */
@media (max-width: 1024px) {
  .feedback-section {
    padding: 4rem 1rem;
  }

  .feedback-header h2 {
    font-size: 2.3rem;
  }

  .feedback-card {
    padding: 2.5rem 1.5rem;
  }

  .feedback-card blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .feedback-section {
    padding: 3.5rem 1rem;
  }

  .feedback-section::before {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -100px;
  }

  .feedback-section::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
  }

  .feedback-header {
    margin-bottom: 3rem;
  }

  .feedback-header h2 {
    font-size: 2rem;
  }

  .feedback-header p {
    font-size: 0.95rem;
  }

  .feedback-card {
    padding: 2rem 1rem;
  }

  .feedback-card blockquote {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .feedback-card blockquote::before,
  .feedback-card blockquote::after {
    font-size: 2rem;
  }

  .feedback-author {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .author-info h4 {
    font-size: 1rem;
  }

  .author-info p {
    font-size: 0.85rem;
  }

  .feedback-navigation {
    padding: 1.5rem;
  }

  .feedback-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .feedback-section {
    padding: 2.5rem 0.75rem;
  }

  .feedback-header h2 {
    font-size: 1.6rem;
  }

  .feedback-header .section-label {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .feedback-header p {
    font-size: 0.85rem;
  }

  .feedback-card {
    padding: 1.5rem 1rem;
  }

  .feedback-rating {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .feedback-card blockquote {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .feedback-card blockquote::before,
  .feedback-card blockquote::after {
    display: none;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-info h4 {
    font-size: 0.95rem;
  }

  .author-info p {
    font-size: 0.8rem;
  }

  .feedback-navigation {
    padding: 1rem;
  }

  .feedback-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* ====================================
   CONSULTATION PAGE STYLES
   ==================================== */

.consultation-hero {
  min-height: 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consultation-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.consultation-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.consultation-hero .section-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.consultation-hero h1 {
  font-size: 3.5rem;
  color: white;
  margin: 0 0 1.5rem 0;
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
}

.hero-highlight i {
  font-size: 1.2rem;
}

/* Consultation Value Section */
.consultation-value {
  padding: 5rem 2rem;
  background: var(--bg-primary);
}

.consultation-container {
  max-width: 1200px;
  margin: 0 auto;
}

.value-header {
  text-align: center;
  margin-bottom: 4rem;
}

.value-header h2 {
  font-size: 2.5rem;
  color: #222;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

[data-theme="dark"] .value-header h2 {
  color: #ffffff;
}

.value-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

[data-theme="dark"] .value-header p {
  color: #aaa;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

[data-theme="dark"] .value-card {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
}

[data-theme="dark"] .value-card:hover {
  border-color: rgba(138, 180, 248, 0.3);
}

.value-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

[data-theme="dark"] .value-icon {
  color: #8ab4f8;
}

.value-card h3 {
  font-size: 1.3rem;
  color: #222;
  margin: 0 0 1rem 0;
}

[data-theme="dark"] .value-card h3 {
  color: #ffffff;
}

.value-card p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

[data-theme="dark"] .value-card p {
  color: #b0b0b0;
}

/* Consultation Details */
.consultation-details {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}

[data-theme="dark"] .consultation-details {
  background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.details-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .details-card {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
}

.details-card h3 {
  font-size: 1.5rem;
  color: #222;
  margin: 0 0 1.5rem 0;
}

[data-theme="dark"] .details-card h3 {
  color: #ffffff;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.details-list li:last-child {
  margin-bottom: 0;
}

.details-list i {
  color: #667eea;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

[data-theme="dark"] .details-list i {
  color: #8ab4f8;
}

.details-list span {
  color: #666;
  line-height: 1.6;
}

[data-theme="dark"] .details-list span {
  color: #b0b0b0;
}

/* Consultation Services */
.consultation-services {
  padding: 5rem 2rem;
  background: var(--bg-primary);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-header h2 {
  font-size: 2.5rem;
  color: #222;
  margin: 0 0 1rem 0;
}

[data-theme="dark"] .services-header h2 {
  color: #ffffff;
}

.services-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

[data-theme="dark"] .services-header p {
  color: #aaa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

[data-theme="dark"] .service-item {
  background: linear-gradient(135deg, rgba(138, 180, 248, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
  border-color: rgba(138, 180, 248, 0.1);
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
}

[data-theme="dark"] .service-item:hover {
  border-color: #8ab4f8;
  box-shadow: 0 12px 24px rgba(138, 180, 248, 0.15);
}

.service-item i {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}

[data-theme="dark"] .service-item i {
  color: #8ab4f8;
}

.service-item h4 {
  margin: 0 0 0.5rem 0;
  color: #222;
  font-size: 1.1rem;
}

[data-theme="dark"] .service-item h4 {
  color: #ffffff;
}

.service-item p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

[data-theme="dark"] .service-item p {
  color: #b0b0b0;
}

/* Consultation Booking */
.consultation-booking {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}

[data-theme="dark"] .consultation-booking {
  background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.booking-info h2 {
  font-size: 2.2rem;
  color: #222;
  margin: 0 0 1rem 0;
}

[data-theme="dark"] .booking-info h2 {
  color: #ffffff;
}

.booking-info > p {
  color: #666;
  font-size: 1.05rem;
  margin: 0 0 2.5rem 0;
  line-height: 1.6;
}

[data-theme="dark"] .booking-info > p {
  color: #aaa;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.booking-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.booking-detail-item i {
  font-size: 1.5rem;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

[data-theme="dark"] .booking-detail-item i {
  color: #8ab4f8;
}

.booking-detail-item h4 {
  margin: 0 0 0.25rem 0;
  color: #222;
  font-size: 1rem;
}

[data-theme="dark"] .booking-detail-item h4 {
  color: #ffffff;
}

.booking-detail-item p {
  margin: 0;
  color: #666;
}

[data-theme="dark"] .booking-detail-item p {
  color: #b0b0b0;
}

.booking-testimonial {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  border-left: 4px solid #667eea;
  margin-top: 2rem;
}

[data-theme="dark"] .booking-testimonial {
  background: #2a2a2a;
  border-left-color: #8ab4f8;
}

.booking-testimonial blockquote {
  margin: 0 0 1rem 0;
  color: #666;
  font-style: italic;
  font-size: 1rem;
}

[data-theme="dark"] .booking-testimonial blockquote {
  color: #aaa;
}

.testimonial-author {
  margin: 0;
  color: #888;
  font-size: 0.95rem;
  font-weight: 600;
}

[data-theme="dark"] .testimonial-author {
  color: #999;
}

/* Booking Form */
.booking-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .booking-form-wrapper {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
}

.consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.consultation-form .form-group:last-of-type {
  margin-bottom: 2rem;
}

.consultation-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #222;
  font-weight: 600;
  font-size: 0.95rem;
}

[data-theme="dark"] .consultation-form .form-label {
  color: #ffffff;
}

.consultation-form .form-input,
.consultation-form .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  background: #f8f9fa;
  color: #333;
  transition: all 0.3s ease;
}

[data-theme="dark"] .consultation-form .form-input,
[data-theme="dark"] .consultation-form .form-textarea {
  background: #1a1a1a;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.consultation-form .form-input:focus,
.consultation-form .form-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

[data-theme="dark"] .consultation-form .form-input:focus,
[data-theme="dark"] .consultation-form .form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(138, 180, 248, 0.1);
}

.consultation-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ Section */
.consultation-faq {
  padding: 5rem 2rem;
  background: var(--bg-primary);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: #222;
  margin: 0;
}

[data-theme="dark"] .faq-header h2 {
  color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

[data-theme="dark"] .faq-item {
  background: linear-gradient(135deg, rgba(138, 180, 248, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
  border-color: rgba(138, 180, 248, 0.1);
}

.faq-item h4 {
  margin: 0 0 0.75rem 0;
  color: #222;
  font-size: 1.1rem;
}

[data-theme="dark"] .faq-item h4 {
  color: #ffffff;
}

.faq-item p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

[data-theme="dark"] .faq-item p {
  color: #b0b0b0;
}

/* CTA Section */
.consultation-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
  color: white;
}

.consultation-cta h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: white;
}

.consultation-cta p {
  font-size: 1.15rem;
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button.primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .consultation-hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .value-header h2,
  .services-header h2,
  .faq-header h2 {
    font-size: 2rem;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking-form-wrapper {
    padding: 2rem;
  }

  .consultation-form .form-input,
  .consultation-form .form-textarea {
    padding: 0.65rem 0.85rem;
  }

  .details-grid,
  .services-grid,
  .faq-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .consultation-hero {
    min-height: 350px;
    padding: 2rem 1rem;
  }

  .consultation-hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-highlight {
    flex-direction: column;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .value-header h2,
  .services-header h2,
  .faq-header h2 {
    font-size: 1.6rem;
  }

  .consultation-cta h2 {
    font-size: 1.8rem;
  }

  .value-grid,
  .services-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-detail-item {
    gap: 1rem;
  }

  .details-card,
  .value-card,
  .booking-form-wrapper {
    padding: 1.5rem;
  }

  .cta-button.primary {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}




