/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Loading Spinner - Hand Animation */
.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-spinner.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner-content {
  text-align: center;
}

.welcome-text {
  color: #FFD700;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.loading-text {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin: 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.hand-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.🤚 {
  --skin-color: #E4C560;
  --tap-speed: 0.6s;
  --tap-stagger: 0.1s;
  position: relative;
  width: 80px;
  height: 60px;
  margin-left: 80px;
}

.🤚:before {
  content: '';
  display: block;
  width: 180%;
  height: 75%;
  position: absolute;
  top: 70%;
  right: 20%;
  background-color: black;
  border-radius: 40px 10px;
  filter: blur(10px);
  opacity: 0.3;
}

.🌴 {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--skin-color);
  border-radius: 10px 40px;
}

.👍 {
  position: absolute;
  width: 120%;
  height: 38px;
  background-color: var(--skin-color);
  bottom: -18%;
  right: 1%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-20deg);
  border-radius: 30px 20px 20px 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.👍:after {
  width: 20%;
  height: 60%;
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: -8%;
  left: 5px;
  border-radius: 60% 10% 10% 30%;
  border-right: 2px solid rgba(0, 0, 0, 0.05);
}

.👉 {
  position: absolute;
  width: 80%;
  height: 35px;
  background-color: var(--skin-color);
  bottom: 32%;
  right: 64%;
  transform-origin: 100% 20px;
  animation-duration: calc(var(--tap-speed) * 2);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  transform: rotate(10deg);
}

.👉:before {
  content: '';
  position: absolute;
  width: 140%;
  height: 30px;
  background-color: var(--skin-color);
  bottom: 8%;
  right: 65%;
  transform-origin: calc(100% - 20px) 20px;
  transform: rotate(-60deg);
  border-radius: 20px;
}

.👉:nth-child(1) {
  animation-delay: 0;
  filter: brightness(70%);
  animation-name: tap-upper-1;
}

.👉:nth-child(2) {
  animation-delay: var(--tap-stagger);
  filter: brightness(80%);
  animation-name: tap-upper-2;
}

.👉:nth-child(3) {
  animation-delay: calc(var(--tap-stagger) * 2);
  filter: brightness(90%);
  animation-name: tap-upper-3;
}

.👉:nth-child(4) {
  animation-delay: calc(var(--tap-stagger) * 3);
  filter: brightness(100%);
  animation-name: tap-upper-4;
}

@keyframes tap-upper-1 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.4);
  }

  40% {
    transform: rotate(50deg) scale(0.4);
  }
}

@keyframes tap-upper-2 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.6);
  }

  40% {
    transform: rotate(50deg) scale(0.6);
  }
}

@keyframes tap-upper-3 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(0.8);
  }

  40% {
    transform: rotate(50deg) scale(0.8);
  }
}

@keyframes tap-upper-4 {
  0%, 50%, 100% {
    transform: rotate(10deg) scale(1);
  }

  40% {
    transform: rotate(50deg) scale(1);
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Active menu item styling */
.menu-item.current > .menu-link {
  color: #FFD700;
}

.menu-item.current > .menu-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFD700;
}

/* Typewriter Effect */
.typewriter-text {
  overflow: hidden;
  border-right: .15em solid #FFD700;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: .15em;
  animation: 
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700; /* Gold color for better visibility */
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.6), 0 0 35px rgba(255, 215, 0, 0.4);
  /* Enhanced multi-layer glow effect */
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

.typewriter-cursor {
  animation: blink 1s infinite;
  color: #FFD700; /* Match the typewriter text color */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
  font-weight: 700;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Fade In with Blur Animation */
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.fade-in-blur {
  animation: fadeInBlur 1s ease-out forwards;
  animation-delay: 4s;
  color: #FFFFFF; /* White color for better visibility */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Glow effect */
}

/* Fade In Animation for Profession Items */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.profession-item {
  color: #FFFFFF; /* White color for better visibility */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Glow effect */
  margin-bottom: 0.5rem;
  font-weight: 700; /* Make the text thicker/bolder */
  letter-spacing: 0.5px; /* Slightly increase letter spacing for better readability */
}

#role-text {
  font-weight: 800; /* Make the rotating role text even bolder */
  color: #FFD700; /* Gold color for better visibility */
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8); /* Enhanced glow effect */
  transition: all 0.3s ease; /* Smooth transition for text changes */
}

.mission-description {
  color: #FFFFFF; /* White color for better visibility */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Glow effect */
}

.statistics-section {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.stat-number {
  font-weight: bold;
  color: #FFD700; /* Gold color for numbers */
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #FFFFFF;
  margin: 0;
}

/* Sticky Social Buttons Container */
.sticky-social-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.sticky-social-buttons {
  animation: slideInRight 0.5s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
  width: 50px;
  height: 50px;
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sticky-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  width: 150px;
  border-radius: 30px;
}

/* Sticky Email Button */
.sticky-email {
  width: 50px;
  height: 50px;
  background-color: #007bff; /* Email blue */
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sticky-email:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  width: 150px;
  border-radius: 30px;
}

/* Let's Talk Text */
.lets-talk-text {
  position: absolute;
  right: -100px;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
}

.sticky-whatsapp:hover .lets-talk-text,
.sticky-email:hover .lets-talk-text {
  right: 20px;
  opacity: 1;
}

.sticky-whatsapp i,
.sticky-email i {
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sticky-whatsapp:hover i,
.sticky-email:hover i {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Programming Languages Circular Rotation */
.languages-rotation-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.languages-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vmin;
  height: 70vmin;
  transform: translate(-50%, -50%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.languages-item {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.7;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px currentColor;
}

.languages-item:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  text-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}

/* Position each language item in a circle and assign different colors */
.languages-orbit .languages-item:nth-child(1) { 
  transform: translate(-50%, -50%) rotate(0deg) translate(35vmin) rotate(0deg); 
  color: #f7df1e; /* JavaScript - yellow */
}

.languages-orbit .languages-item:nth-child(2) { 
  transform: translate(-50%, -50%) rotate(30deg) translate(35vmin) rotate(-30deg); 
  color: #3776ab; /* Python - blue */
}

.languages-orbit .languages-item:nth-child(3) { 
  transform: translate(-50%, -50%) rotate(60deg) translate(35vmin) rotate(-60deg); 
  color: #f89820; /* Java - orange */
}

.languages-orbit .languages-item:nth-child(4) { 
  transform: translate(-50%, -50%) rotate(90deg) translate(35vmin) rotate(-90deg); 
  color: #00599c; /* C++ - dark blue */
}

.languages-orbit .languages-item:nth-child(5) { 
  transform: translate(-50%, -50%) rotate(120deg) translate(35vmin) rotate(-120deg); 
  color: #61dafb; /* React - light blue */
}

.languages-orbit .languages-item:nth-child(6) { 
  transform: translate(-50%, -50%) rotate(150deg) translate(35vmin) rotate(-150deg); 
  color: #339933; /* Node.js - green */
}

.languages-orbit .languages-item:nth-child(7) { 
  transform: translate(-50%, -50%) rotate(180deg) translate(35vmin) rotate(-180deg); 
  color: #e34f26; /* HTML - orange-red */
}

.languages-orbit .languages-item:nth-child(8) { 
  transform: translate(-50%, -50%) rotate(210deg) translate(35vmin) rotate(-210deg); 
  color: #777bb4; /* PHP - purple */
}

.languages-orbit .languages-item:nth-child(9) { 
  transform: translate(-50%, -50%) rotate(240deg) translate(35vmin) rotate(-240deg); 
  color: #f05138; /* Swift - red */
}

.languages-orbit .languages-item:nth-child(10) { 
  transform: translate(-50%, -50%) rotate(270deg) translate(35vmin) rotate(-270deg); 
  color: #cc342d; /* Ruby - red */
}

.languages-orbit .languages-item:nth-child(11) { 
  transform: translate(-50%, -50%) rotate(300deg) translate(35vmin) rotate(-300deg); 
  color: #00acd7; /* Go - blue */
}

.languages-orbit .languages-item:nth-child(12) { 
  transform: translate(-50%, -50%) rotate(330deg) translate(35vmin) rotate(-330deg); 
  color: #3178c6; /* TypeScript - blue */
}

/* Services Section */
.section-services {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.section-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
              radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.service-subtitle {
  color: #a0a0c0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  height: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.3);
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.service-item:hover .service-icon {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

.service-item:hover .service-icon::after {
  transform: scale(1);
}

.service-item h4 {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.service-item:hover h4 {
  color: #FFFFFF;
}

.service-item p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #a0a0c0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: #FFD700;
  transform: translateX(5px);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

/* Animated service items with staggered delays */
.service-item-1 { animation: serviceAppear 0.6s ease-out 0.1s both; }
.service-item-2 { animation: serviceAppear 0.6s ease-out 0.2s both; }
.service-item-3 { animation: serviceAppear 0.6s ease-out 0.3s both; }
.service-item-4 { animation: serviceAppear 0.6s ease-out 0.4s both; }
.service-item-5 { animation: serviceAppear 0.6s ease-out 0.5s both; }
.service-item-6 { animation: serviceAppear 0.6s ease-out 0.6s both; }
.service-item-7 { animation: serviceAppear 0.6s ease-out 0.7s both; }
.service-item-8 { animation: serviceAppear 0.6s ease-out 0.8s both; }
.service-item-9 { animation: serviceAppear 0.6s ease-out 0.9s both; }
.service-item-10 { animation: serviceAppear 0.6s ease-out 1.0s both; }
.service-item-11 { animation: serviceAppear 0.6s ease-out 1.1s both; }
.service-item-12 { animation: serviceAppear 0.6s ease-out 1.2s both; }
.service-item-13 { animation: serviceAppear 0.6s ease-out 1.3s both; }
.service-item-14 { animation: serviceAppear 0.6s ease-out 1.4s both; }
.service-item-15 { animation: serviceAppear 0.6s ease-out 1.5s both; }

@keyframes serviceAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* View All Services Button */
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.enhanced-process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.btn-outline-light::before {

  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.btn-outline-light:hover::before {
  left: 100%;
}

/* Mobile View Enhancements */
@media (max-width: 767.98px) {
  /* Adjust hero text for mobile */
  .typewriter-text {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  
  /* Adjust profession item for mobile */
  .profession-item {
    font-size: 1.8rem;
  }
  
  /* Adjust mission description for mobile */
  .mission-description {
    font-size: 1rem;
  }
  
  /* Adjust statistics section for mobile */
  .statistics-section {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.5rem !important;
  }
  
  /* Adjust programming languages for mobile */
  .languages-orbit {
    width: 80vmin;
    height: 80vmin;
  }
  
  .languages-orbit .languages-item:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translate(40vmin) rotate(0deg); }
  .languages-orbit .languages-item:nth-child(2) { transform: translate(-50%, -50%) rotate(30deg) translate(40vmin) rotate(-30deg); }
  .languages-orbit .languages-item:nth-child(3) { transform: translate(-50%, -50%) rotate(60deg) translate(40vmin) rotate(-60deg); }
  .languages-orbit .languages-item:nth-child(4) { transform: translate(-50%, -50%) rotate(90deg) translate(40vmin) rotate(-90deg); }
  .languages-orbit .languages-item:nth-child(5) { transform: translate(-50%, -50%) rotate(120deg) translate(40vmin) rotate(-120deg); }
  .languages-orbit .languages-item:nth-child(6) { transform: translate(-50%, -50%) rotate(150deg) translate(40vmin) rotate(-150deg); }
  .languages-orbit .languages-item:nth-child(7) { transform: translate(-50%, -50%) rotate(180deg) translate(40vmin) rotate(-180deg); }
  .languages-orbit .languages-item:nth-child(8) { transform: translate(-50%, -50%) rotate(210deg) translate(40vmin) rotate(-210deg); }
  .languages-orbit .languages-item:nth-child(9) { transform: translate(-50%, -50%) rotate(240deg) translate(40vmin) rotate(-240deg); }
  .languages-orbit .languages-item:nth-child(10) { transform: translate(-50%, -50%) rotate(270deg) translate(40vmin) rotate(-270deg); }
  .languages-orbit .languages-item:nth-child(11) { transform: translate(-50%, -50%) rotate(300deg) translate(40vmin) rotate(-300deg); }
  .languages-orbit .languages-item:nth-child(12) { transform: translate(-50%, -50%) rotate(330deg) translate(40vmin) rotate(-330deg); }
  
  .languages-item {
    font-size: 1rem;
  }
  
  /* Adjust ticker text for mobile */
  .ticker-wrap .ticker .ticker-item {
    font-size: max(5em, 10vw);
    letter-spacing: -5px;
  }
  
  /* Adjust sticky buttons for mobile */
  .sticky-social-buttons {
    bottom: 15px;
    right: 15px;
  }
  
  .sticky-whatsapp, .sticky-email {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .sticky-email {
    font-size: 16px;
  }
  
  /* Services section mobile adjustments */
  .service-item {
    padding: 20px 15px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-item h4 {
    font-size: 1.1rem;
  }
  
  .service-item p {
    font-size: 0.85rem;
  }
  
  .service-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  /* Further adjustments for small mobile devices */
  .typewriter-text {
    font-size: 0.9rem;
  }
  
  .profession-item {
    font-size: 1.5rem;
  }
  
  .mission-description {
    font-size: 0.9rem;
  }
  
  .languages-orbit {
    width: 90vmin;
    height: 90vmin;
  }
  
  .languages-orbit .languages-item:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg) translate(45vmin) rotate(0deg); }
  .languages-orbit .languages-item:nth-child(2) { transform: translate(-50%, -50%) rotate(30deg) translate(45vmin) rotate(-30deg); }
  .languages-orbit .languages-item:nth-child(3) { transform: translate(-50%, -50%) rotate(60deg) translate(45vmin) rotate(-60deg); }
  .languages-orbit .languages-item:nth-child(4) { transform: translate(-50%, -50%) rotate(90deg) translate(45vmin) rotate(-90deg); }
  .languages-orbit .languages-item:nth-child(5) { transform: translate(-50%, -50%) rotate(120deg) translate(45vmin) rotate(-120deg); }
  .languages-orbit .languages-item:nth-child(6) { transform: translate(-50%, -50%) rotate(150deg) translate(45vmin) rotate(-150deg); }
  .languages-orbit .languages-item:nth-child(7) { transform: translate(-50%, -50%) rotate(180deg) translate(45vmin) rotate(-180deg); }
  .languages-orbit .languages-item:nth-child(8) { transform: translate(-50%, -50%) rotate(210deg) translate(45vmin) rotate(-210deg); }
  .languages-orbit .languages-item:nth-child(9) { transform: translate(-50%, -50%) rotate(240deg) translate(45vmin) rotate(-240deg); }
  .languages-orbit .languages-item:nth-child(10) { transform: translate(-50%, -50%) rotate(270deg) translate(45vmin) rotate(-270deg); }
  .languages-orbit .languages-item:nth-child(11) { transform: translate(-50%, -50%) rotate(300deg) translate(45vmin) rotate(-300deg); }
  .languages-orbit .languages-item:nth-child(12) { transform: translate(-50%, -50%) rotate(330deg) translate(45vmin) rotate(-330deg); }
  
  .languages-item {
    font-size: 0.8rem;
  }
  
  .ticker-wrap .ticker .ticker-item {
    font-size: max(4em, 8vw);
  }
  
  /* Services section adjustments for small screens */
  .service-item h4 {
    font-size: 1rem;
  }
  
  .service-item p {
    font-size: 0.8rem;
  }
  
  .service-subtitle {
    font-size: 0.9rem;
  }
}

/* Enhanced Popup Form Styles */
.popup-overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Darker overlay for better contrast */
  backdrop-filter: blur(8px); /* Increased blur effect */
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease; /* Slower transition for smoother effect */
}

.popup-overlay.active {
  display: flex !important; /* Force display when active */
  opacity: 1;
}

.popup-content {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  padding: 50px; /* Increased padding */
  border-radius: 20px; /* More rounded corners */
  width: 95%; /* Wider modal */
  max-width: 1000px; /* Larger max-width */
  position: relative;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7); /* Larger shadow */
  transform: translateY(-20px);
  transition: transform 0.5s ease, opacity 0.5s ease; /* Slower transitions */
  opacity: 0;
  color: #fff;
  border: 2px solid rgba(255, 215, 0, 0.3); /* More visible border */
  animation: popupAppear 0.5s ease forwards; /* Slower animation */
  /* Added glow effect */
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.2);
  max-height: 90vh; /* Limit height to 90% of viewport */
  display: flex;
  flex-direction: column;
}

.popup-body {
  overflow-y: auto; /* Enable vertical scrolling */
  flex: 1;
  padding-right: 5px; /* Space for scrollbar */
  margin-right: -5px; /* Compensate for padding */
}

/* Custom scrollbar styling */
.popup-body::-webkit-scrollbar {
  width: 8px;
}

.popup-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.5);
  border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.7);
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
  opacity: 1;
}

@keyframes popupAppear {
  0% {
    transform: translateY(-30px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.close-popup {
  position: absolute;
  top: 25px; /* Adjusted position */
  right: 25px; /* Adjusted position */
  font-size: 32px; /* Larger close button */
  font-weight: bold;
  cursor: pointer;
  color: #FFD700;
  transition: all 0.3s ease;
  width: 40px; /* Larger button */
  height: 40px; /* Larger button */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
  /* Added glow effect */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.close-popup:hover {
  color: #ffaa00;
  background: rgba(255, 255, 255, 0.2); /* More visible background */
  transform: rotate(90deg) scale(1.1); /* Added scale effect */
  /* Enhanced glow effect */
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.popup-title {
  color: #FFD700;
  font-weight: 700; /* Bolder title */
  font-size: 32px; /* Larger title */
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* More prominent glow */
  text-align: center;
}

.popup-subtitle {
  color: #c0c0e0; /* Lighter subtitle color */
  font-size: 18px; /* Larger subtitle */
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
}

/* Form Controls - Enhanced for select dropdown */
.form-control {
  width: 100%;
  padding: 16px 18px; /* Larger padding */
  border: 2px solid rgba(255, 255, 255, 0.3); /* Thicker border */
  border-radius: 10px; /* More rounded corners */
  margin-bottom: 5px;
  font-size: 17px; /* Larger font */
  background: rgba(255, 255, 255, 0.08); /* Lighter background */
  color: #fff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  /* Added glow effect on focus */
  box-shadow: 0 0 0 rgba(255, 215, 0, 0);
  appearance: none; /* Remove default styling for select */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.form-control:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2); /* Enhanced glow */
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.form-control option {
  background-color: #1a1a2e;
  color: #fff;
}

textarea.form-control {
  min-height: 140px; /* Larger textarea */
  resize: vertical;
}

.btn-primary {
  background: linear-gradient(45deg, #FFD700, #ffaa00);
  color: #1a1a2e;
  border: none;
  padding: 16px; /* Larger padding */
  border-radius: 10px; /* More rounded corners */
  cursor: pointer;
  font-size: 18px; /* Larger font */
  font-weight: 700; /* Bolder text */
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px; /* More spacing */
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4); /* Larger shadow */
  width: 100%;
  margin-top: 15px; /* More spacing */
  position: relative;
  overflow: hidden;
  /* Added glow effect */
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ffaa00, #FFD700);
  transform: translateY(-3px); /* More lift */
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5); /* Larger shadow */
  /* Enhanced glow effect */
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5), 0 0 25px rgba(255, 215, 0, 0.4);
}

.contact-title {
  font-weight: 700; /* Bolder title */
  font-size: 24px; /* Larger title */
  margin-bottom: 8px;
  color: #FFD700; /* Gold color */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* Glow effect */
}

.availability-info {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.7), rgba(22, 33, 62, 0.7));
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.availability-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.availability-header {
  position: relative;
  padding-bottom: 10px;
}

.availability-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.availability-info h5 {
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.availability-info ul {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
}

.availability-info li {
  position: relative;
  padding-left: 0;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding: 8px 12px;
  margin-left: -12px;
  margin-right: -12px;
}

.availability-info li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.availability-info li strong {
  font-weight: 600;
  transition: color 0.3s ease;
}

.availability-info li:hover strong {
  color: #FFD700;
}

.availability-info li:last-child {
  margin-bottom: 0;
}

.availability-info li i {
  font-size: 1rem;
  min-width: 20px;
  transition: transform 0.3s ease;
}

.availability-info li:hover i {
  transform: scale(1.2);
}

/* Mobile adjustments for availability info */
@media (max-width: 767.98px) {
  .availability-info {
    margin-top: 20px !important;
    padding: 20px !important;
  }
  
  .availability-info h5 {
    font-size: 1.2rem;
  }
  
  .availability-info li {
    font-size: 0.9rem;
    padding: 6px 10px;
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media (max-width: 480px) {
  .availability-info {
    padding: 15px !important;
  }
  
  .availability-info h5 {
    font-size: 1.1rem;
  }
  
  .availability-info li {
    font-size: 0.85rem;
  }
}

/* Mobile adjustments for popup */
@media (max-width: 767.98px) {
  .popup-content {
    padding: 35px 25px; /* Adjusted padding */
    width: 98%; /* Nearly full width */
    max-width: none; /* No max-width constraint */
    margin: 0 5px; /* Small margins */
    border-radius: 15px; /* Adjusted border radius */
    max-height: 95vh; /* Increase height limit on mobile */
  }
  
  .popup-body {
    padding-right: 3px;
    margin-right: -3px;
  }
  
  .close-popup {
    top: 20px;
    right: 20px;
    font-size: 28px; /* Adjusted size */
    width: 35px; /* Adjusted size */
    height: 35px; /* Adjusted size */
  }
  
  .popup-title {
    font-size: 28px; /* Adjusted size */
    margin-bottom: 10px;
  }
  
  .popup-subtitle {
    font-size: 16px; /* Adjusted size */
  }
  
  .contact-title {
    font-size: 22px; /* Adjusted size */
  }
  
  .form-control {
    padding: 14px 15px; /* Adjusted padding */
    font-size: 16px; /* Adjusted size */
    border-radius: 8px; /* Adjusted border radius */
  }
  
  .btn-primary {
    padding: 14px; /* Adjusted padding */
    font-size: 16px; /* Adjusted size */
    border-radius: 8px; /* Adjusted border radius */
    letter-spacing: 1px; /* Adjusted spacing */
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 30px 20px; /* Adjusted padding */
    max-height: 97vh; /* Maximum height on small screens */
  }
  
  .popup-title {
    font-size: 26px; /* Adjusted size */
  }
  
  .popup-subtitle {
    font-size: 15px; /* Adjusted size */
  }
  
  .contact-title {
    font-size: 20px; /* Adjusted size */
  }
  
  .form-control {
    padding: 12px 12px; /* Adjusted padding */
    font-size: 15px; /* Adjusted size */
  }
  
  .btn-primary {
    padding: 12px; /* Adjusted padding */
    font-size: 15px; /* Adjusted size */
  }
}

/* Large screen adjustments */
@media (min-width: 992px) {
  .popup-content {
    max-width: 1100px; /* Even larger max-width */
  }
}

/* Form validation styles */
.form-control.error {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.2);
}

.form-control.success {
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Contact method hover effects */
.contact-method {
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-method:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.3) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-method h5 {
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-method:hover h5 {
  color: #FFD700;
}

.contact-method p {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Availability Information Styles */
.availability-info h5 {
  font-weight: 600;
  font-size: 1.2rem;
}

.availability-info ul {
  list-style-type: none;
  padding: 0;
}

.availability-info li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.availability-info li:hover {
  color: #FFD700;
}

.availability-info li:before {
  content: "•";
  color: #FFD700;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.availability-info li:last-child {
  margin-bottom: 0;
}

/* Mobile adjustments for availability info */
@media (max-width: 767.98px) {
  .availability-info {
    margin-top: 20px !important;
  }
  
  .availability-info h5 {
    font-size: 1.1rem;
  }
  
  .availability-info li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .availability-info h5 {
    font-size: 1rem;
  }
  
  .availability-info li {
    font-size: 0.85rem;
  }
}

/* Enhanced Works Section */
.section-works {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
              radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.work-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.3);
}

.work-item a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.work-item img {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.work-item:hover img {
  transform: scale(1.05);
}

.work-item .ticker-wrap {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-item:hover .ticker-wrap {
  opacity: 1;
}

.work-item h2 {
  color: #FFD700;
  font-weight: 700;
  transition: color 0.3s ease;
  margin-top: 20px;
}

.work-item:hover h2 {
  color: #FFFFFF;
}

.work-item p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.work-link {
  color: #a0a0c0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  display: block;
}

.work-link:hover {
  color: #FFD700;
  transform: translateX(5px);
}

.work-link i {
  transition: transform 0.3s ease;
}

.work-link:hover i {
  transform: translateX(3px);
}

/* Works section mobile adjustments */
@media (max-width: 767.98px) {
  .section-works {
    padding: 50px 0;
  }
  
  .work-item {
    margin-bottom: 25px;
  }
  
  .work-item h2 {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  
  .work-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-works {
    padding: 40px 0;
  }
  
  .work-item h2 {
    font-size: 1.3rem;
  }
  
  .work-item p {
    font-size: 0.85rem;
  }
}

/* Enhanced Process Section */
.section-process {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
              radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

/* Process Step Animation */
/* Timeline Item Animation */
@keyframes timelineItemAppear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item {
  text-align: center;
  position: relative;
  flex: 1;
  animation: timelineItemAppear 0.6s ease-out 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; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes processStepAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.enhanced-process-step {
  animation: processStepAppear 0.6s ease-out forwards;
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.enhanced-process-step:nth-child(1) { animation-delay: 0.1s; }
.enhanced-process-step:nth-child(2) { animation-delay: 0.2s; }
.enhanced-process-step:nth-child(3) { animation-delay: 0.3s; }
.enhanced-process-step:nth-child(4) { animation-delay: 0.4s; }

.enhanced-process-step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.enhanced-process-step:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.process-step-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.enhanced-process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.process-step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 2;
}

.enhanced-process-step h3 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.enhanced-process-step p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.process-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.process-step-list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #c0c0e0;
}

.process-step-list li:last-child {
  margin-bottom: 0;
}

.process-step-list li i {
  font-size: 0.8rem;
}

.process-step-list li span {
  vertical-align: middle;
}

/* Process Timeline */
.process-timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.5), transparent);
}

.timeline-item {
  text-align: center;
  position: relative;
  flex: 1;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3);
}

.timeline-marker::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1a1a2e;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1rem;
}

.timeline-content p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Process section mobile adjustments */
@media (max-width: 767.98px) {
  .section-process {
    padding: 50px 0;
  }
  
  .enhanced-process-step {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .enhanced-process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .enhanced-process-step p {
    font-size: 0.9rem;
  }
  
  .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .process-step-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .process-step-list li {
    font-size: 0.85rem;
  }
  
  .process-timeline {
    flex-direction: column;
  }
  
  .process-timeline::before {
    top: 0;
    left: 20px;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.5), transparent);
  }
  
  .timeline-item {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 40px;
  }
  
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  
  .timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
  
  .timeline-content {
    padding: 12px;
  }
  
  .timeline-content h5 {
    font-size: 0.95rem;
  }
  
  .timeline-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-process {
    padding: 40px 0;
  }
  
  .enhanced-process-step h3 {
    font-size: 1.2rem;
  }
  
  .enhanced-process-step p {
    font-size: 0.85rem;
  }
  
  .process-step-list li {
    font-size: 0.8rem;
  }
  
  .timeline-content {
    padding: 10px;
  }
  
  .timeline-content h5 {
    font-size: 0.9rem;
  }
  
  .timeline-content p {
    font-size: 0.75rem;
  }
}

/* Testing Section */
.section-testing {
  background: linear-gradient(180deg, rgba(17, 24, 47, 0.7) 0%, rgba(12, 18, 35, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-testing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
              radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.testing-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  backdrop-filter: blur(5px);
}

.testing-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testing-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a2e;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.testing-item:hover .testing-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.testing-item h3 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.testing-item p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Testing section mobile adjustments */
@media (max-width: 767.98px) {
  .section-testing {
    padding: 50px 0;
  }
  
  .testing-item {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .testing-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .testing-item p {
    font-size: 0.9rem;
  }
  
  .testing-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .section-testing {
    padding: 40px 0;
  }
  
  .testing-item h3 {
    font-size: 1.2rem;
  }
  
  .testing-item p {
    font-size: 0.85rem;
  }
}

/* Partners Section */
.section-partners {
  background: linear-gradient(180deg, rgba(12, 18, 35, 0.7) 0%, rgba(8, 12, 24, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
              radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.partner-item {
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  padding: 20px;
}

.partner-item:hover .partner-logo {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.partner-logo-placeholder {
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}

.partner-item:hover .partner-logo-placeholder {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.partner-content h4 {
  transition: all 0.3s ease;
}

.partner-item:hover .partner-content h4 {
  color: #FFFFFF !important;
}

/* Partners section mobile adjustments */
@media (max-width: 767.98px) {
  .section-partners {
    padding: 50px 0;
  }
  
  .partner-logo {
    height: 80px;
    padding: 15px;
  }
  
  
  .partner-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .section-partners {
    padding: 40px 0;
  }
  
  .partner-logo {
    height: 70px;
    padding: 10px;
  }
  
  .partner-content p {
    font-size: 0.8rem;
  }
}

/* Education Section */
.section-education {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-education::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05) 0%, transparent 30%),
              radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.education-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  height: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.education-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.3);
}

.education-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.education-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.education-item:hover .education-icon {
  background: rgba(255, 215, 0, 0.2);
  transform: scale(1.1);
}

.education-item:hover .education-icon::after {
  transform: scale(1);
}

.education-item h4 {
  color: #FFD700;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.education-item:hover h4 {
  color: #FFFFFF;
}

.education-item h5 {
  color: #a0a0c0;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.education-item p {
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.education-details {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item i {
  min-width: 20px;
}

/* Journey Timeline */
.journey-timeline {
  margin-top: 60px;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 20px;
  height: calc(100% - 60px);
  width: 2px;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.5), transparent);
}

.timeline-item {
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.timeline-marker {
  width: 40px;
  height: 40px;
  min-width: 40px;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.timeline-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.timeline-content h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Education section mobile adjustments */
@media (max-width: 767.98px) {
  .section-education {
    padding: 50px 0;
  }
  
  .education-item {
    padding: 20px 15px;
  }
  
  .education-icon {
    width: 70px;
    height: 70px;
  }
  
  .education-item h4 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
  }
  
  .education-item h5 {
    font-size: 1rem;
  }
  
  .education-item p {
    font-size: 0.9rem;
  }
  
  .journey-timeline::before {
    left: 15px;
    top: 25px;
    height: calc(100% - 50px);
  }
  
  .timeline-marker {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .timeline-content h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-education {
    padding: 40px 0;
  }
  
  .education-item h4 {
    font-size: 1.2rem;
  }
  
  .education-item h5 {
    font-size: 0.9rem;
  }
  
  .education-item p {
    font-size: 0.85rem;
  }
  
  .detail-item span {
    font-size: 0.85rem;
  }
  
  .timeline-content h5 {
    font-size: 1rem;
  }
  
  .timeline-content p {
    font-size: 0.85rem;
  }
}

/* Timeline Animation */
.timeline-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Portfolio Page Styles */
.portfolio-filter {
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.scroll-detect.text-center.mb-5.mb-lg-6 {
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.portfolio-filter a {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 8px 20px;
  display: inline-block;
  margin: 5px;
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.portfolio-filter a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.5s;
}

.portfolio-filter a:hover::before,
.portfolio-filter a.active::before {
  left: 100%;
}

.portfolio-filter a:hover,
.portfolio-filter a.active {
  background: rgba(255, 215, 0, 0.1);
  border-color: #FFD700;
  color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  font-weight: 600;
  /* Add subtle scale effect */
  transform: translateY(-2px) scale(1.05);
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.3);
  /* Add subtle glow effect */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
  /* Add scale effect for better visual impact */
  transform: translateY(-10px) scale(1.02);
}

.portfolio-image {
  overflow: hidden;
  position: relative;
  height: 250px;
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.1s;
  animation-fill-mode: both;
}

.portfolio-image img {
  transition: transform 0.5s ease, filter 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.portfolio-card:hover .portfolio-image img {
  filter: brightness(1.1);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transform: translateY(20px);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-description h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #FFD700;
  transition: color 0.3s ease;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.5px;
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.portfolio-description p {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.portfolio-description .button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 8px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.portfolio-description .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.5s;
}

.portfolio-description .button:hover::before {
  left: 100%;
}

.portfolio-description .button:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  /* Add subtle scale effect */
  transform: translateY(-2px) scale(1.05);
}

/* Portfolio item tags */
.portfolio-tags {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.portfolio-tag {
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.portfolio-card:hover .portfolio-tag {
  background: rgba(255, 215, 0, 0.3);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Portfolio item animation */
@keyframes portfolioItemAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-item {
  animation: portfolioItemAppear 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }
.portfolio-item:nth-child(7) { animation-delay: 0.7s; }
.portfolio-item:nth-child(8) { animation-delay: 0.8s; }
.portfolio-item:nth-child(9) { animation-delay: 0.9s; }

/* Portfolio filtering transition */
.portfolio-item {
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#portfolio-items {
  animation: fadeIn 0.8s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Footer animation */
#footer {
  animation: fadeIn 0.8s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* Portfolio filtering animation */
@keyframes filterFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes filterFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-item {
  animation-fill-mode: both;
}

.portfolio-item {
  animation-fill-mode: both;
}

/* Load More Button */
.button.button-border.button-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 0.6s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.button.button-border.button-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.5s;
}

.button.button-border.button-light:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #FFD700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.button.button-border.button-light:hover::before {
  left: 100%;
}

/* Portfolio page mobile adjustments */
@media (max-width: 767.98px) {
  .portfolio-filter {
    margin-bottom: 30px;
  }
  
  .portfolio-filter ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .portfolio-filter li {
    margin: 0 5px 10px;
  }
  
  .portfolio-filter a {
    font-size: 0.85rem;
    padding: 6px 15px !important;
  }
  
  .portfolio-description h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  
  .portfolio-description p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .portfolio-description .button {
    font-size: 0.85rem;
    padding: 6px 15px;
  }
  
  .portfolio-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .portfolio-filter {
    margin-bottom: 25px;
  }
  
  .portfolio-filter a {
    font-size: 0.8rem;
    padding: 5px 12px !important;
  }
  
  .portfolio-description h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .portfolio-description p {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  
  .portfolio-description .button {
    font-size: 0.8rem;
    padding: 5px 12px;
  }
  
  .portfolio-image {
    height: 180px;
  }
  
  .portfolio-overlay {
    padding: 15px;
  }
  
  .portfolio-description h3 {
    font-size: 1rem;
  }
  
  .portfolio-description p {
    font-size: 0.75rem;
  }
}

/* Form message container */
.form-message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.2);
  border: 1px solid #28a745;
  color: #28a745;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid #dc3545;
  color: #dc3545;
}

.animated-lead {
  animation: fadeIn 0.6s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
