@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  list-style: none;
}

.header {
  top: 0;
  width: 100%;
  padding: 35px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  color: #111;
  font-weight: 600;
  transition: 0.4s ease;
}

span {
  color: rgb(206, 39, 95);
}

.navbar a {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  position: relative;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  margin: 0 20px;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: rgb(206, 39, 95);
  border-radius: 5px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar a:hover::after {
  transform: scaleX(1);
}

.navbar a:hover {
  color: rgb(206, 39, 95);
}

.contact {
  font-family: "Poppins", sans-serif;
  padding: 10px 20px;
  background-color: rgb(206, 39, 95);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.3 ease;
}

.contact:hover {
  background-color: #111;
  color: #fff;
  transition: 0.2s ease;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
  z-index: 101;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #111;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.home {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 30px 8%;
}

.home-content {
  margin-top: -5rem;
  max-width: 800px;
}

.home-content h3 {
  font-size: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-content h3.animate {
  opacity: 1;
  transform: translateY(0);
}

.home-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-content h2.animate {
  opacity: 1;
  transform: translateY(0);
}

.home-content h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-content h2.animate span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.home-content p {
  font-family: "Lexend", sans-serif;
  font-size: 17px;
  margin: 25px 0 30px;
  line-height: 22px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-content p.animate {
  opacity: 1;
  transform: translateY(0);
}

.btn-box {
  width: 100%;
  display: flex;
  gap: 2em;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-box.animate {
  opacity: 1;
  transform: translateY(0);
}

.btn-1 {
  padding: 14px 20px;
  background-color: black;
  color: white;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-box.animate .btn-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.btn-1:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
  transition: all 0.3s ease;
}

.btn-2 {
  padding: 14px 20px;
  background-color: rgb(206, 39, 95);
  color: white;
  border: 2px solid black;
  border-radius: 8px;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-box.animate .btn-2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.btn-2:hover {
  background-color: white;
  color: rgb(206, 39, 95);
  transition: all 0.3s ease;
}

.img-box {
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.img-box.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.img-box img {
  width: 550px;
  transition: transform 0.3s ease;
}

.img-box:hover img {
  transform: scale(1.05);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(206, 39, 95);
}

::-webkit-scrollbar-track {
  background-color: #fff;
  width: 50px;
}

.skills-section {
  width: 1280px;
  min-height: 787px;
  gap: 60px;
  margin-left: 7%;
  margin-top: 120px;
  margin-bottom: 70px;
}

.skills-content {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 70px;
}

.skills-content h3 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgb(206, 39, 95);
  margin-bottom: 15px;
}

.skills-content p {
  width: 100%;
  max-width: 1030px;
  height: 48px;
  font-weight: 500;
  font-style: light;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #111;
}

.skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.skills-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.skills-wrapper-1,
.skills-wrapper-2,
.skills-wrapper-3,
.skills-wrapper-4 {
  padding: 30px;
  background-color: #ffffff;
  border: 2px solid #111;
  position: relative;
  width: 610px;
  min-height: 276px;
  border-radius: 20px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.skills-wrapper-1.animate,
.skills-wrapper-2.animate,
.skills-wrapper-3.animate,
.skills-wrapper-4.animate {
  opacity: 1;
  transform: translateY(0);
}

.skills-wrapper-1:hover,
.skills-wrapper-2:hover,
.skills-wrapper-3:hover,
.skills-wrapper-4:hover {
  border-color: rgb(206, 39, 95);
  box-shadow: 0 8px 24px rgba(206, 39, 95, 0.2);
  transform: translateY(-8px);
}

.skills-wrapper-1.active,
.skills-wrapper-2.active,
.skills-wrapper-3.active,
.skills-wrapper-4.active {
  border-color: rgb(206, 39, 95);
  box-shadow: 0 8px 24px rgba(206, 39, 95, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, rgba(206, 39, 95, 0.05) 100%);
}

.skills-wrapper-1:hover .skills-header img,
.skills-wrapper-2:hover .skills-header img,
.skills-wrapper-3:hover .skills-header img,
.skills-wrapper-4:hover .skills-header img {
  transform: scale(1.1) rotate(5deg);
}

.skills-wrapper-1::before,
.skills-wrapper-2::before,
.skills-wrapper-3::before,
.skills-wrapper-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(206, 39, 95, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.skills-wrapper-1:hover::before,
.skills-wrapper-2:hover::before,
.skills-wrapper-3:hover::before,
.skills-wrapper-4:hover::before {
  left: 100%;
}

.skills-header {
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 20px;
  gap: 14px;
}

.skills h5 {
  font-weight: 600;
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  line-height: 150%;
  color: #111;
  transition: color 0.3s ease;
}

.skills-wrapper-1:hover h5,
.skills-wrapper-2:hover h5,
.skills-wrapper-3:hover h5,
.skills-wrapper-4:hover h5 {
  color: rgb(206, 39, 95);
}

.skills p {
  font-family: "Lexend", sans-serif;
  margin: 0;
  width: 100%;
  color: #111;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Contact Section */
.contact-section {
  width: 1280px;
  margin-left: 7%;
  margin-top: 120px;
  margin-bottom: 100px;
  padding: 0 8%;
}

.contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 70px;
}

.contact-content h3 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgb(206, 39, 95);
  margin-bottom: 15px;
}

.contact-content p {
  width: 100%;
  max-width: 1030px;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #111;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.info-item h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
}

.info-item p {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: #111;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: #111;
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: color 0.3s ease;
}

.social-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: rgb(206, 39, 95);
  border-radius: 5px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.social-link:hover {
  color: rgb(206, 39, 95);
}

.social-link:hover::after {
  transform: scaleX(1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form.animate {
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: #111;
  background-color: #ffffff;
  border: 2px solid #111;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b3b3b3;
  font-family: "Lexend", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgb(206, 39, 95);
  box-shadow: 0 0 0 3px rgba(206, 39, 95, 0.1);
}

.contact-form textarea {
  min-height: 150px;
}

.submit-btn {
  padding: 16px 32px;
  background-color: rgb(206, 39, 95);
  color: #fff;
  border: 2px solid rgb(206, 39, 95);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #fff;
  color: rgb(206, 39, 95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 39, 95, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Success Notification Popup */
.notification-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: #ffffff;
  border: 2px solid rgb(206, 39, 95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 500px;
  width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}

.notification-popup-content {
  text-align: center;
}

.notification-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: rgba(206, 39, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: rgb(206, 39, 95);
}

.notification-popup h4 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.notification-popup p {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: #111;
  line-height: 1.6;
  margin-bottom: 24px;
}

.notification-popup .notification-email {
  color: rgb(206, 39, 95);
  font-weight: 500;
}

.notification-close-btn {
  padding: 12px 32px;
  background-color: rgb(206, 39, 95);
  color: #fff;
  border: 2px solid rgb(206, 39, 95);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notification-close-btn:hover {
  background-color: #fff;
  color: rgb(206, 39, 95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 39, 95, 0.3);
}

.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.notification-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Error Notification Popup */
.notification-popup.error {
  border-color: #dc3545;
}

.notification-popup.error .notification-icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.notification-popup.error h4 {
  color: #dc3545;
}

.notification-popup.error .notification-close-btn {
  background-color: #dc3545;
  border-color: #dc3545;
}

.notification-popup.error .notification-close-btn:hover {
  background-color: #fff;
  color: #dc3545;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Form Error States */
.form-group.error input,
.form-group.error textarea {
  border-color: #dc3545;
}

.form-group.error input:focus,
.form-group.error textarea:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
  color: #dc3545;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* Footer */
.footer {
  background-color: #ffffff;
  border-top: 2px solid #111;
  margin-top: 100px;
  padding: 60px 8% 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}

.footer-section h4,
.footer-section h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #111;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-logo span {
  color: rgb(206, 39, 95);
}

.footer-tagline {
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  color: #111;
  line-height: 1.6;
  max-width: 250px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  color: #111;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: rgb(206, 39, 95);
  border-radius: 5px;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: rgb(206, 39, 95);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  color: #111;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
}

.footer-bottom p {
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  color: #b3b3b3;
}

/* Responsive Styles */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  .skills-section {
    width: 100%;
    margin-left: 0;
    padding: 0 5%;
  }

  .skills-wrapper-1,
  .skills-wrapper-2,
  .skills-wrapper-3,
  .skills-wrapper-4 {
    width: 100%;
    max-width: 100%;
  }

  .contact-section {
    width: 100%;
    margin-left: 0;
    padding: 0 5%;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .header {
    padding: 20px 5%;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

  .navbar a {
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
  }

  .navbar a:last-child {
    border-bottom: none;
  }

  .contact {
    display: none;
  }

  .home {
    flex-direction: column;
    padding: 20px 5%;
    gap: 2rem;
  }

  .home-content {
    margin-top: 0;
    text-align: center;
  }

  .home-content h2 {
    font-size: 32px;
  }

  .home-content h3 {
    font-size: 18px;
  }

  .home-content p {
    font-size: 16px;
  }

  .img-box {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .img-box img {
    width: 100%;
    max-width: 400px;
  }

  .btn-box {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-1,
  .btn-2 {
    width: 100%;
  }

  .skills-section {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 0 5%;
  }

  .skills-content {
    margin-bottom: 40px;
  }

  .skills-content h3 {
    font-size: 28px;
  }

  .skills-content p {
    font-size: 18px;
    height: auto;
  }

  .skills {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .skills-wrapper-1,
  .skills-wrapper-2,
  .skills-wrapper-3,
  .skills-wrapper-4 {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 25px;
  }

  .skills-header {
    padding: 0;
    margin-bottom: 15px;
  }

  .skills p {
    margin-left: 0;
    width: 100%;
  }

  .contact-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0 5%;
  }

  .contact-content h3 {
    font-size: 28px;
  }

  .contact-content p {
    font-size: 18px;
    height: auto;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    gap: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
  }

  .footer {
    padding: 40px 5% 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .header {
    padding: 15px 4%;
  }

  .logo {
    font-size: 20px;
  }

  .header-buttons {
    gap: 10px;
  }

  .contact {
    display: none;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }

  .home {
    padding: 15px 4%;
  }

  .home-content h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .home-content h3 {
    font-size: 16px;
  }

  .home-content p {
    font-size: 15px;
    margin: 20px 0 25px;
  }

  .img-box img {
    max-width: 100%;
  }

  .btn-1,
  .btn-2 {
    font-size: 16px;
    padding: 12px 18px;
  }

  .skills-section {
    margin-top: 40px;
    padding: 0 4%;
  }

  .skills-content {
    margin-bottom: 30px;
  }

  .skills-content h3 {
    font-size: 24px;
  }

  .skills-content p {
    font-size: 16px;
  }

  .skills-wrapper-1,
  .skills-wrapper-2,
  .skills-wrapper-3,
  .skills-wrapper-4 {
    padding: 20px;
    border-radius: 15px;
  }

  .skills-header img {
    width: 50px;
    height: 50px;
  }

  .skills h5 {
    font-size: 20px;
  }

  .skills p {
    font-size: 15px;
  }

  .contact-section {
    margin-top: 40px;
    padding: 0 4%;
  }

  .contact-content h3 {
    font-size: 24px;
  }

  .contact-content p {
    font-size: 16px;
  }

  .contact-container {
    gap: 1.5rem;
  }

  .info-item h4 {
    font-size: 18px;
  }

  .info-item p {
    font-size: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }

  .footer {
    padding: 30px 4% 15px;
    margin-top: 60px;
  }

  .footer-section h4,
  .footer-section h5 {
    font-size: 16px;
  }

  .footer-logo {
    font-size: 20px;
  }

  .footer-tagline,
  .footer-links a,
  .footer-contact {
    font-size: 14px;
  }

  .notification-popup {
    max-width: 90%;
    padding: 30px 20px;
  }

  .notification-popup h4 {
    font-size: 20px;
  }

  .notification-popup p {
    font-size: 14px;
  }

  .notification-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Experience Popup Modal */
.experience-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.experience-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #ffffff;
  border: 2px solid #111;
  border-radius: 24px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-popup.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}

.experience-popup-content {
  padding: 50px 40px 40px;
  position: relative;
}

.experience-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s ease;
  border-radius: 8px;
  padding: 8px;
}

.experience-close-btn:hover {
  transform: rotate(90deg);
  background-color: rgba(206, 39, 95, 0.1);
}

.experience-close-btn span {
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.experience-close-btn span:nth-child(1) {
  transform: rotate(45deg);
}

.experience-close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}

.experience-close-btn:hover span {
  background-color: rgb(206, 39, 95);
}

.experience-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8e8e8;
}

.experience-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(206, 39, 95, 0.1) 0%,
    rgba(206, 39, 95, 0.05) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(206, 39, 95);
  border: 2px solid rgba(206, 39, 95, 0.2);
}

.experience-icon svg {
  width: 36px;
  height: 36px;
}

.experience-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.experience-subtitle {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.experience-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.experience-item {
  display: flex;
  gap: 30px;
  position: relative;
  padding-left: 20px;
}

.experience-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgb(206, 39, 95) 0%,
    rgba(206, 39, 95, 0.3) 100%
  );
  border-radius: 2px;
}

.experience-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50px;
  width: 15px;
  height: 15px;
  background-color: rgb(206, 39, 95);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px rgb(206, 39, 95);
}

.experience-year {
  min-width: 140px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgb(206, 39, 95);
  padding-top: 5px;
}

.experience-details {
  flex: 1;
}

.experience-details h4 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.experience-company {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-bottom: 12px;
}

.experience-description {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 16px;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.experience-tags .tag {
  font-family: "Lexend", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  background-color: rgba(206, 39, 95, 0.1);
  color: rgb(206, 39, 95);
  border-radius: 20px;
  border: 1px solid rgba(206, 39, 95, 0.2);
  transition: all 0.3s ease;
}

.experience-tags .tag:hover {
  background-color: rgb(206, 39, 95);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(206, 39, 95, 0.3);
}

.experience-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #e8e8e8;
  margin-top: 20px;
}

.experience-footer p {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  color: #666;
  font-style: italic;
}

/* Experience Popup Responsive */
@media (max-width: 768px) {
  .experience-popup {
    max-width: 95%;
    border-radius: 20px;
  }

  .experience-popup-content {
    padding: 40px 25px 30px;
  }

  .experience-close-btn {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }

  .experience-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .experience-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .experience-icon svg {
    width: 30px;
    height: 30px;
  }

  .experience-header h3 {
    font-size: 26px;
  }

  .experience-subtitle {
    font-size: 16px;
  }

  .experience-item {
    flex-direction: column;
    gap: 15px;
    padding-left: 25px;
  }

  .experience-year {
    min-width: auto;
    font-size: 15px;
  }

  .experience-details h4 {
    font-size: 20px;
  }

  .experience-company {
    font-size: 15px;
  }

  .experience-description {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .experience-popup {
    max-width: 98%;
    max-height: 95vh;
  }

  .experience-popup-content {
    padding: 35px 20px 25px;
  }

  .experience-header h3 {
    font-size: 22px;
  }

  .experience-subtitle {
    font-size: 14px;
  }

  .experience-item {
    padding-left: 20px;
  }

  .experience-details h4 {
    font-size: 18px;
  }

  .experience-tags .tag {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/* Small Mobile Phones */
@media (max-width: 320px) {
  .home-content h2 {
    font-size: 22px;
  }

  .home-content p {
    font-size: 14px;
  }

  .skills-content h3 {
    font-size: 20px;
  }

  .contact-content h3 {
    font-size: 20px;
  }

  .btn-1,
  .btn-2 {
    font-size: 14px;
    padding: 10px 16px;
  }
}
