@import url('https://fonts.googleapis.com/css2?family=poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #888888;
  --secondary-color: #1e1e1e;
  --background-primary: #121212;
  --background-secondary: #1e1e1e;
  --text-primary: #ffffff;
  --text-muted: #ffffff;
  --border-color: #444444;
  --accent-color: #888888;
  --border-radius-lg: 40px;
  --border-radius-md: 18px;
  --border-radius-sm: 8px;
  --box-shadow: 0 2px 16px rgba(136, 136, 136, 0.08);
  --box-shadow-hover: 0 4px 24px rgba(136, 136, 136, 0.2);
  --transition: all 0.3s ease;
  --section-padding: 60px 9% 0;
  --card-padding: 28px 22px;
  --btn-padding: 10px 30px;
  --gap-lg: 50px;
  --gap-md: 40px;
  --gap-sm: 30px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'poppins',sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(18, 18, 18, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    transition: right 0.3s ease;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
  }
}

body {
  padding-top: 70px;
  background: var(--background-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.main-content {
  position: relative;
}

section {
  scroll-margin-top: 80px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 70px;
  }
}

.home {
  background: var(--background-primary);
  min-height: 100vh;
  padding: 40px 5%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-info {
  max-width: 800px;
  margin: 0 auto;
}

.home-img-box {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  position: relative;
}

.home-img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(136, 136, 136, 0.3);
  transition: all 0.3s ease;
}

.home-img-box:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(136, 136, 136, 0.4);
}

@media (max-width: 768px) {
  .home {
    padding: 40px 5%;
  }
  body {
    padding-top: 70px;
  }
}

.home-info h1 {
  font-size: clamp(28px, 6vw, 45px);
  line-height: 1.2;
  margin-bottom: 15px;
}

.home-info h2 {
  display: inline-block;
  font-size: clamp(18px, 4vw, 28px);
  margin-top: -5px;
}

.home-info h2 span {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: .7px var(--primary-color);
  animation: display-text 16s linear infinite;
  animation-delay: calc(-4s* var(--i));
}

@keyframes display-text {
  25%,
  100% {
    display: none;
  }
}

.home-info h2 span::before {
  content: attr(data-text);
  position: absolute;
  width: 0;
  border-right: 2px solid var(--primary-color);
  color: var(--primary-color);
  white-space: nowrap;
  overflow: hidden;
  animation: fil-text 4s linear infinite;
  animation-delay: calc(-4s* var(--i));
}

@keyframes fil-text {
  10%,
  100% {
    width: 0;
  }
  70%,
  90% {
    width: 100%;
  }
}

.home-info p {
  font-size: clamp(14px, 2vw, 16px);
  margin: 20px auto 35px;
  line-height: 1.6;
  max-width: 650px;
}

.home-info .btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
  box-shadow: none;
  font-size: 17px;
  color: var(--background-primary);
  font-weight: 600;
  transition: var(--transition);
}

.btn:hover {
  background: transparent;
  color: var(--primary-color);
  box-shadow: 0 0 10px rgba(136, 136, 136, 0.5);
}

.home-info .btn-social .social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-info .btn-social .social a {
  display: inline-flex;
  padding: 12px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  color: var(--primary-color);
  transition: var(--transition);
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .home-info .btn-social .social a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

.home-info .btn-social .social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(136, 136, 136, 0.5);
}

.home-info .btn-social .social .github:hover {
  background: #333;
  color: white;
}

.home-info .btn-social .social .linkedin:hover {
  background: #0077b5;
  color: white;
}

.home-info .btn-social .social .twitter-x:hover {
  background: #000;
  color: white;
}

.home-info .btn-social .social .instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.about-left .img-box {
  position: relative;
  width: clamp(200px, 25vw, 300px);
  height: clamp(200px, 25vw, 300px);
  margin: 0 auto;
}

.about-left .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(136, 136, 136, 0.3), 0 0 40px rgba(136, 136, 136, 0.1);
  transition: all 0.3s ease;
}

.about-left .img-box:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(136, 136, 136, 0.4), 0 0 60px rgba(136, 136, 136, 0.2);
}

@media (max-width: 768px) {
  .about-left .img-box {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .about-left .img-box {
    width: 180px;
    height: 180px;
  }
}

.About {
  background: var(--background-secondary);
  min-height: 100vh;
  padding: 40px 5%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}



.Service {
  background: var(--background-primary);
  min-height: 100vh;
  padding: 40px 5%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.Portfolio {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  min-height: 100vh;
  padding: 60px 5%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
}

.portfolio-header {
  margin-bottom: 60px;
}

.portfolio-header h3 {
  color: #aaa;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.portfolio-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin: 0;
}

.portfolio-header h2 span {
  color: var(--primary-color);
  font-weight: 600;
}

.portfolio-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.project-navigation {
  display: flex;
  gap: 20px;
  z-index: 20;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(136, 136, 136, 0.2);
  border-color: var(--primary-color);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(136, 136, 136, 0.3);
}

.project-cards {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 550px;
  perspective: 1000px;
  margin-bottom: 10px;
}

.project-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-15deg) rotateX(5deg);
  width: 100%;
  max-width: 350px;
  height: 520px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.project-card.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
  border-radius: 20px;
  opacity: 0.6;
  filter: blur(8px);
  z-index: -1;
}

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.card-content img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.card-info {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 600;
}

.card-info p {
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.project-link {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--background-primary);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.project-link:hover {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(136, 136, 136, 0.3);
}

.project-counter {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
}

.project-counter #current-project {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.top-glow {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px var(--primary-color);
}

@media (max-width: 768px) {
  .Portfolio {
    padding: 40px 5%;
  }
  
  .portfolio-header {
    margin-bottom: 40px;
  }
  
  .project-cards {
    height: 480px;
    margin-bottom: 8px;
  }
  
  .project-card {
    max-width: 90%;
    height: 460px;
  }
  
  .card-info {
    padding: 20px;
  }
  
  .card-info h3 {
    font-size: 1.2rem;
  }
  
  .card-info p {
    font-size: 0.9rem;
  }
  
  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .project-cards {
    height: 450px;
    margin-bottom: 5px;
  }
  
  .project-card {
    height: 430px;
  }
  
  .card-content img {
    height: 55%;
  }
  
  .card-info {
    padding: 15px;
  }
  
  .project-link {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

.Contact {
  background: var(--background-secondary);
  min-height: 100vh;
  padding: 40px 5%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.about-content {
  display: flex;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
  }
}

.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}



.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .values-grid {
    gap: 10px;
  }
}

.value-item {
  background: var(--secondary-color);
  padding: 15px;
  border-radius: var(--border-radius-md);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}

.value-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-hover);
}

.value-item i {
  display: block;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.about-right {
  flex: 2;
}

.about-right h2 {
  color: var(--primary-color);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.about-intro {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .about-intro {
    margin: 0 auto 30px;
  }
}

.journey-timeline {
  position: relative;
  padding-left: 30px;
}

@media (max-width: 768px) {
  .journey-timeline {
    padding-left: 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.4s;
}

.timeline-dot {
  position: absolute;
  left: -37px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid var(--background-secondary);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.timeline-content p {
  color: var(--text-muted);
  line-height: 1.5;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



.service-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service-content h2 {
  color: var(--primary-color);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 50px;
  text-transform: uppercase;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.service-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .service-item:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-item:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }
  
  .service-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .service-grid {
    gap: 15px;
  }
  
  .service-item {
    padding: 15px;
  }
  
  .service-tags {
    gap: 5px;
  }
  
  .tag {
    padding: 4px 8px;
    font-size: 10px;
  }
}

.service-item {
  background: var(--secondary-color);
  border-radius: var(--border-radius-md);
  padding: clamp(25px, 5vw, 35px);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.service-item:hover::before {
  left: 0;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .service-tags {
    gap: 6px;
  }
}

.tag {
  background: rgba(136, 136, 136, 0.1);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 500;
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

.service-item h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--text-primary);
}

.service-item p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-result {
  padding-top: 15px;
  border-top: 1px solid rgba(124, 240, 61, 0.2);
}

.service-result small {
  color: var(--primary-color);
  font-weight: 500;
}

.tech-stack {
  margin-top: 60px;
  text-align: center;
}

.tech-stack h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.tech-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.tech-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tech-item span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .tech-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .tech-item {
    padding: 12px;
  }
  
  .tech-item img {
    width: 35px;
    height: 35px;
  }
  
  .tech-item span {
    font-size: 11px;
  }
}

.contact-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }
}

.contact-left {
  flex: 1;
}

.contact-left h2 {
  color: var(--primary-color);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-tagline {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--text-primary);
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .social-links {
    justify-content: center;
    gap: 12px;
  }
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--background-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(136, 136, 136, 0.4);
}

.github {
  color: white !important;
}

.github:hover {
  background: #333 !important;
  color: white !important;
}

.linkedin {
  color: #0077b5 !important;
}

.linkedin:hover {
  background: #0077b5 !important;
  color: white !important;
}

.twitter-x {
  color: white !important;
  font-weight: bold;
  font-size: 18px;
}

.twitter-x:hover {
  background: #000 !important;
  color: white !important;
}

.instagram {
  color: #e4405f !important;
}

.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: white !important;
}

.evolution-title {
  color: white !important;
}

.contact-form {
  flex: 1;
  background: var(--background-primary);
  padding: clamp(25px, 5vw, 40px);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
  max-width: 100%;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .form-group {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.contact-form input,
.contact-form textarea {
  padding: clamp(12px, 3vw, 15px) clamp(15px, 4vw, 18px);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: var(--secondary-color);
  color: var(--text-primary);
  font-size: clamp(14px, 2.5vw, 16px);
  transition: var(--transition);
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(136, 136, 136, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 15px;
  padding: clamp(12px, 3vw, 15px) clamp(20px, 5vw, 30px);
  font-size: clamp(14px, 2.5vw, 16px);
}



