@charset "UTF-8";
.contact-content {
  padding: 5rem 0;
}
.contact-content .contact-form-wrapper h2,
.contact-content .contact-info-wrapper h2 {
  color: #2d7a4f;
  font-size: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}
.contact-content .contact-form-wrapper h2:hover,
.contact-content .contact-info-wrapper h2:hover {
  transform: translateY(-5px);
}
.contact-content .contact-form-wrapper {
  margin-bottom: 3rem;
}
.contact-content .contact-form-wrapper .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-content .contact-form-wrapper .contact-form .form-group label {
  display: block;
  color: #2d7a4f;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-content .contact-form-wrapper .contact-form .form-group input,
.contact-content .contact-form-wrapper .contact-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.contact-content .contact-form-wrapper .contact-form .form-group input:focus,
.contact-content .contact-form-wrapper .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #2d7a4f;
}
.contact-content .contact-form-wrapper .contact-form .form-group textarea {
  resize: vertical;
}
.contact-content .contact-form-wrapper .form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  display: none;
}
.contact-content .contact-form-wrapper .form-message.success {
  background-color: #e8f5ed;
  color: #2d7a4f;
  display: block;
}
.contact-content .contact-form-wrapper .form-message.error {
  background-color: #ffe8e8;
  color: #d32f2f;
  display: block;
}
.contact-content .contact-info .contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #e8f5ed;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-content .contact-info .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.contact-content .contact-info .contact-item .contact-icon {
  font-size: 2rem;
}
.contact-content .contact-info .contact-item .contact-details h3 {
  color: #2d7a4f;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.contact-content .contact-info .contact-item .contact-details a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-content .contact-info .contact-item .contact-details a:hover {
  color: #2d7a4f;
}
.contact-content .contact-info .contact-item .contact-details p {
  color: #666666;
}
.contact-content .social-links {
  margin-top: 3rem;
}
.contact-content .social-links h3 {
  color: #2d7a4f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact-content .social-links .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-content .social-links .social-icons .social-icon {
  padding: 0.75rem 1.5rem;
  background-color: #2d7a4f;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.contact-content .social-links .social-icons .social-icon:hover {
  background-color: #1e5a3a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 122, 79, 0.3);
}

.about-hero,
.projects-hero,
.contact-hero {
  background: linear-gradient(135deg, #2d7a4f 0%, #1e5a3a 100%);
  padding: 4rem 0;
  color: #ffffff;
  text-align: center;
}
.about-hero h1,
.projects-hero h1,
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.about-hero h1:hover,
.projects-hero h1:hover,
.contact-hero h1:hover {
  transform: translateY(-5px);
}
.about-hero .subtitle,
.projects-hero .subtitle,
.contact-hero .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-content {
  padding: 5rem 0;
}
.about-content .about-text h2 {
  color: #2d7a4f;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.about-content .about-text h2:hover {
  transform: translateY(-5px);
}
.about-content .about-text p {
  margin-bottom: 1.5rem;
  color: #666666;
  line-height: 1.8;
}
.about-content .about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-content .about-image .image-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e8f5ed 0%, #4ca76c 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.about-content .about-image .image-placeholder:hover {
  transform: scale(1.05);
}
.about-content .about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.skills-detailed {
  padding: 5rem 0;
  background-color: #e8f5ed;
}
.skills-detailed .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d7a4f;
  transition: transform 0.3s ease;
}
.skills-detailed .section-title:hover {
  transform: translateY(-5px);
}
.skills-detailed .skill-category {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skills-detailed .skill-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.skills-detailed .skill-category h3 {
  color: #2d7a4f;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e8f5ed;
}
.skills-detailed .skill-category .skill-list {
  list-style: none;
}
.skills-detailed .skill-category .skill-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666666;
}
.skills-detailed .skill-category .skill-list li:before {
  content: "✔";
  color: #2d7a4f;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.education {
  padding: 5rem 0;
}
.education .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d7a4f;
  transition: transform 0.3s ease;
}
.education .section-title:hover {
  transform: translateY(-5px);
}
.education .education-card {
  background-color: #e8f5ed;
  padding: 2.5rem;
  border-radius: 10px;
  border-left: 5px solid #2d7a4f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.education .education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.education .education-card h3 {
  color: #2d7a4f;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.education .education-card h4 {
  color: #666666;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.education .education-card .education-year {
  color: #4ca76c;
  font-weight: 600;
  margin-bottom: 1rem;
}
.education .education-card p {
  color: #666666;
  line-height: 1.8;
}

.resume-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.resume-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #2d7a4f;
  transition: transform 0.3s ease;
}
.resume-section .section-title:hover {
  transform: translateY(-5px);
}
.resume-section .resume-content {
  text-align: center;
  background-color: #e8f5ed;
  padding: 3rem 2rem;
  border-radius: 10px;
  border-left: 5px solid #2d7a4f;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resume-section .resume-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.resume-section .resume-content .resume-text {
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.resume-section .resume-content .resume-btn {
  display: inline-block;
  background-color: #2d7a4f;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.resume-section .resume-content .resume-btn:hover {
  background-color: #1e5a3a;
  transform: translateY(-3px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}
.navbar .grid-con {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.navbar .logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d7a4f;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .logo a:hover {
  color: #4ca76c;
}
.navbar .burger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  z-index: 1001;
}
.navbar .burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #2d7a4f;
  display: block;
  transition: all 0.3s ease;
}
.navbar .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.navbar .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.navbar .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.navbar .nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  margin-top: 1rem;
}
.navbar .nav-links.active {
  display: flex;
}
.navbar .nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: block;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.navbar .nav-links li a:hover, .navbar .nav-links li a.active {
  color: #ffffff;
  background-color: #2d7a4f;
}

.hero {
  background: linear-gradient(135deg, #e8f5ed 0%, #ffffff 100%);
  padding: 5rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero .hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
  transition: transform 0.3s ease;
}
.hero .hero-content h1:hover {
  transform: translateY(-5px);
}
.hero .hero-content h1 .highlight {
  color: #2d7a4f;
}
.hero .hero-content h2 {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}
.hero .hero-content h2:hover {
  transform: translateY(-5px);
}
.hero .hero-content .hero-description {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.btn.btn-primary {
  background-color: #2d7a4f;
  color: #ffffff;
  border-color: #2d7a4f;
}
.btn.btn-primary:hover {
  background-color: #1e5a3a;
  border-color: #1e5a3a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 122, 79, 0.3);
}
.btn.btn-secondary {
  background-color: transparent;
  color: #2d7a4f;
  border-color: #2d7a4f;
}
.btn.btn-secondary:hover {
  background-color: #2d7a4f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 122, 79, 0.3);
}

.skills-overview {
  padding: 5rem 0;
  background-color: #ffffff;
}
.skills-overview .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d7a4f;
  transition: transform 0.3s ease;
}
.skills-overview .section-title:hover {
  transform: translateY(-5px);
}
.skills-overview .skill-card {
  background-color: #e8f5ed;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.skills-overview .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 122, 79, 0.2);
}
.skills-overview .skill-card .skill-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.skills-overview .skill-card h3 {
  color: #2d7a4f;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.skills-overview .skill-card p {
  color: #666666;
}

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 2rem 0;
  margin-top: 3rem;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
footer .footer-content p {
  margin: 0;
}
footer .footer-content .footer-links {
  display: flex;
  gap: 1.5rem;
}
footer .footer-content .footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-content .footer-links a:hover {
  color: #4ca76c;
}

@media screen and (min-width: 768px) {
  .navbar .burger-menu {
    display: none;
  }
  .navbar .nav-links {
    display: flex;
    flex-direction: row;
    margin-top: 0;
    padding: 0;
    justify-self: end;
  }
  .hero .hero-content {
    text-align: left;
  }
  .hero .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero .hero-content h2 {
    font-size: 2rem;
  }
  .hero .hero-content .hero-description {
    margin-left: 0;
    margin-right: 0;
  }
  .hero .hero-content .hero-buttons {
    justify-content: flex-start;
  }
  .about-content .about-text {
    padding-right: 2rem;
  }
  .contact-content .contact-form-wrapper {
    padding-right: 2rem;
  }
  .contact-content .contact-info-wrapper {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .hero .hero-content h1 {
    font-size: 4rem;
  }
  .hero .hero-content h2 {
    font-size: 2.5rem;
  }
}
.demo-reel {
  padding: 5rem 0;
  background-color: #ffffff;
}
.demo-reel .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.demo-reel .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2d7a4f;
  transition: transform 0.3s ease;
}
.demo-reel .section-title:hover {
  transform: translateY(-5px);
}
.demo-reel .reel-wrapper {
  background-color: #e8f5ed;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  max-width: 800px;
  margin: 0 auto;
}
.demo-reel .reel-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 122, 79, 0.2);
}
.demo-reel .reel-wrapper video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #000;
}

.projects-grid {
  padding: 5rem 0;
}
.projects-grid .project-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.projects-grid .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(45, 122, 79, 0.2);
}
.projects-grid .project-card .project-image .image-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #e8f5ed 0%, #4ca76c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}
.projects-grid .project-card .project-info {
  padding: 1.5rem;
}
.projects-grid .project-card .project-info h3 {
  color: #2d7a4f;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.projects-grid .project-card .project-info .project-category {
  color: #4ca76c;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.projects-grid .project-card .project-info p {
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.projects-grid .project-card .project-info .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.projects-grid .project-card .project-info .project-tags .tag {
  background-color: #e8f5ed;
  color: #2d7a4f;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.projects-grid .project-card .project-info .project-tags .tag:hover {
  transform: scale(1.1);
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2d7a4f 0%, #1e5a3a 100%);
  text-align: center;
}
.cta-section .cta-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.cta-section .cta-content h2:hover {
  transform: translateY(-5px);
}
.cta-section .cta-content p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.video-project-section {
  padding: 5rem 0;
  text-align: center;
}

.video-project-section h2 {
  font-size: 2.2rem;
  color: #2d7a4f;
  margin-bottom: 2rem;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}