* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background-color: #f1f1f1;
  color: #2F2F2F;
  line-height: 1.6;
}

.top-bar {
  height: 8px;
  background: linear-gradient(to right, #8C9A65, #A8CBB7);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.navLinks {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navLinks a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #2F2F2F;
  position: relative;
}

.navLinks a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #8C9A65;
  transition: 0.3s;
}

.navLinks a:hover::after {
  width: 100%;
}

.social-icons {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  color: #8C9A65;
  font-size: 1.2rem;
  transition: 0.3s;
  text-decoration: none;
}

.icon-circle:hover {
  background: #8C9A65;
  color: #fff;
}

.hero-section {
  background: url('images/wall2.jpeg') center/cover no-repeat;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #2F2F2F;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.hero-text {
  max-width: 700px;
  margin: auto;
}


.hero-text h1 { 
  font-size: 2.5rem; 
  font-weight: bold; 
  line-height: 1.2; 
  margin-bottom: 20px; 
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight {
  color: #8C9A65;
}

.highlight.typing {
  display: inline;             
  vertical-align: baseline;      
  border-right: 2px solid #8C9A65; 
  white-space: nowrap;           
  overflow: hidden;              
  font-weight: inherit;          
  font-size: inherit;            
  line-height: inherit;          
  animation: blink 0.7s infinite;
}

.wave-hand {
  display: inline-block;
  animation: wave 1s infinite;
  transform-origin: 70% 70%; 
  margin-left: 5px; 
  font-size: inherit;
}

.hero-text p:last-of-type {
  margin-bottom: 2rem;
}

.hero-btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  background: #8C9A65;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #A8CBB7;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about {
  max-width: 900px;
  margin: 120px auto;
  padding: 60px 30px;
  text-align: center;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(circle at top, #A8CBB733 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2F2F2F;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 60ch;          
  margin: 0 auto;        
  text-align: justify;    
  text-align-last: center;
  hyphens: auto; 
}

.wrapp {
  background-color: white;
  padding: 75px;
}

.projects {
  background: #f1f1f1;
  border: 1px solid #8C9A65;
  border-radius: 15px;
  color: #2F2F2F;
  padding: 50px 5%;
  margin: 50px auto;
  max-width: 1100px;
  text-align: center;
  box-sizing: border-box;
}

.projectsDiv {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.projectsDiv h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.projectsDiv h2 span {
  color: #A8CBB7;
}

#proDesc {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.6;
  color: #AAAAAA;
}

.progrid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cardd {
  flex: 1;
  min-width: 30%; 
  max-width: 350px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #8C9A65; 
  box-shadow: 0 0 0 1px #A8CBB7; 
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cardd:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3), 0 0 0 1px #A8CBB7;
}

@keyframes blink {
  0% { border-color: transparent; }
  50% { border-color: #8C9A65; }
  100% { border-color: transparent; }
}

@keyframes wave {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(15deg); }
  60% { transform: rotate(-10deg); }
  75% { transform: rotate(15deg); }
  100% { transform: rotate(0deg); }
}

.cardd img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.cardd h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2F2F2F;
}

.cardd .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #8C9A65;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
}

.cardd .arrow:hover {
  background-color: #A8CBB7;
}

.cardd .arrow i {
  color: #111;
  font-size: 1rem;
  transform: rotate(-30deg);
  transition: transform 0.3s ease;
}

.around {
  padding: 75px;
  background-color: #f1f1f1;
}

.around {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.tools {
  text-align: center;
  margin: 60px auto;
}

.tools-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.tool-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  width: 130px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.tool-card img {
  width: 45px;
  height: 45px;
  margin-bottom: 12px;
}

.percentage {
  font-weight: bold;
  font-size: 1.1rem;
  margin: 5px 0;
  color: #333;
}

.tool-name {
  font-size: 0.9rem;
  color: #555;
}

.extra-skills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 60px;
  gap: 40px;
}

.extra-skills {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.extra-skills h2 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}

.extra-skills .skills-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #444;
}

.skill-icon i {
  font-size: 1.2rem;
  color: #333;
}

.contactPart {
  padding: 60px 20px;
  text-align: center;
  max-width: 800px;
  margin: 60px auto;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.trial {
  background-color: white;
  padding: 75px;
}

.contactPart h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #2F2F2F;
}

.contactPart p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm {
  background-color: #f1f1f1;
}

.contactForm input,
.contactForm textarea {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
  width: 100%;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.contactForm input:focus,
.contactForm textarea:focus {
  border-color: #8C9A65;
  box-shadow: 0 4px 12px rgba(140,154,101,0.2);
}

.contactForm button.btn {
  align-self: center;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
  background: #8C9A65;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.contactForm button.btn:hover {
  background: #A8CBB7;
  transform: translateY(-2px);
}

footer {
  background: #A8CBB7;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

footer h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

footer .footer-links {
  margin: 1rem 0;
}

footer .footer-links a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: opacity 0.3s;
}

footer .footer-links a:hover {
  opacity: 0.7;
}

footer .copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.animate {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up {
  transform: translateY(40px);
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  transform: scale(0.9);
}
.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .cardd {
    min-width: 45%; 
  }
  
  .projectsDiv {
    gap: 30px;
  }
}

@media (max-width: 600px) {

    .glass-nav {
    position: static;
    transform: none;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem 1rem;
  }

  .social-icons {
    position: static;
    margin-top: 1rem;
    justify-content: center;
  }

   .navLinks a {
    font-size: 0.85rem;
  }
  .navLinks {
    gap: 1rem;
  }

  header.hero-section {
    padding-top: 5rem; 
  }

  .hero-section {
    height: auto;
    padding: 100px 20px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }

  .projectsDiv {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  #proDesc {
    max-width: 100%;
  }

  .cardd {
    min-width: 90%; 
    padding: 15px;
  }

  .projectsDiv h2 {
    font-size: 1.5rem;
  }

  .cardd h3 {
    font-size: 1rem;
  }

  .tools-grid {
    flex-direction: column;
    align-items: center;
  }

  .tool-card {
    width: 80%;
    max-width: 200px;
  }

  .extra-skills-row {
    flex-direction: column;
    gap: 40px;
  }

  footer {
    padding: 2rem 1rem;
  }

  footer h2 {
    font-size: 1.4rem;
  }

  footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cardd {
    position: relative;
    padding-bottom: 60px;
  }

  .cardd .arrow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .social-icons {
    display: none;
  }

  @media (max-width: 480px) {
  .hero {
    padding-top: 7rem; 
  }

  .hero-text {
    margin-top: 1.5rem;
  }
}
   .cardd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem; 
  }

  .cardd .arrow {
    position: static;              
    margin-top: 0.8rem;          
    transform: none;              
  }

  .cardd h3 {
    margin-bottom: 0.5rem;     
  }
}
