/* LIGHT MINT GREEN & SKY NAVY BLUE PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Open+Sans:wght@400;600&family=Playfair+Display:wght@700&display=swap');

:root {
  /* Primary Colors */
  --mint-green: #3DDC97;
  --mint-green-dark: #2ECC85;
  --mint-green-light: #5FE8AC;

  /* Secondary Colors */
  --sky-navy: #5B7DB1;
  --sky-navy-dark: #4A6A9C;
  --sky-navy-light: #7593C4;

  /* Background & Surface */
  --bg-light: #F9FBFA;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;

  /* Text Colors */
  --text-primary: #1F2933;
  --text-secondary: #4B5563;
  --text-light: #6B7280;

  /* Utility */
  --shadow-sm: 0 2px 8px rgba(91, 125, 177, 0.08);
  --shadow-md: 0 4px 16px rgba(91, 125, 177, 0.12);
  --shadow-lg: 0 8px 24px rgba(91, 125, 177, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-primary);
}

/* Utility classes */
.hidden {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fall {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(91, 125, 177, 0.1);
}

.header-list {
  margin: 0;
  padding: 0;
}

.div-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--sky-navy);
  letter-spacing: 0.5px;
}

.ul-list {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}

.ul-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ul-list li a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.ul-list li a:hover {
  color: var(--sky-navy);
  /* Burnt Orange */
}

.ul-list li i {
  display: none;
}

.ul-list li.active a {
  color: var(--sky-navy);
  font-weight: 600;
}

/* Home Section */
.home {
  margin: 160px 100px 100px;
}

.home-container {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.home-p {
  color: var(--sky-navy);
  background-color: rgba(91, 125, 177, 0.1);
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 25px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.home-s {
  color: var(--sky-navy);
  font-weight: bold;
}

.info-home h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  margin-bottom: 15px;
  color: #222;
  line-height: 1.1;
}

.info-home h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--text-secondary);
  font-weight: 400;
}

.info-p {
  color: var(--text-secondary);
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.info-p2 {
  display: flex;
  gap: 2rem;
  color: #555;
  font-size: 15px;
  padding-bottom: 35px;
  font-weight: 500;
}

.info-p2 i {
  color: var(--mint-green);
  margin-right: 8px;
}

.btnn {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 40px;
}

.btn-home1 {
  background-color: var(--mint-green);
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-home1:hover {
  background-color: var(--mint-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-home2 {
  background-color: transparent;
  color: var(--sky-navy);
  border: 2px solid var(--sky-navy);
  border-radius: 8px;
  padding: 12px 28px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-home2:hover {
  background-color: var(--sky-navy);
  color: #fff;
}

hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

.follow p {
  margin-right: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.follow ul {
  display: flex;
  gap: 1rem;
}

.follow ul li {
  list-style: none;
}

.follow ul a {
  color: #555;
  font-size: 24px;
  transition: 0.3s;
}

.follow ul a:hover {
  color: var(--sky-navy);
  transform: translateY(-3px);
}

.home img {
  width: 450px;
  border-radius: 20px;
  box-shadow: 20px 20px 0 var(--mint-green);
  /* Burnt orange block shadow */
  transition: 0.3s;
}

/* About Section */
.about {
  margin: 100px 100px;
}

.about h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
}

.info-about {
  display: flex;
  flex-direction: column;
}

.about-container {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.about-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about img {
  width: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--sky-navy);
}

.card {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.c1 {
  background: var(--bg-card);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex: 1;
  min-width: 200px;
  border: 1px solid rgba(91, 125, 177, 0.08);
}

.c1 h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.c1 p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

.c1 i {
  font-size: 28px;
  color: var(--mint-green);
  margin-bottom: 15px;
}

.c1:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Technical Skills Section */
.skills {
  margin: 100px 100px;
  text-align: center;
}

.skills h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 50px;
  color: #222;
}

.skills>p {
  color: var(--sky-navy);
  background-color: rgba(91, 125, 177, 0.1);
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 25px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.skill-category {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(91, 125, 177, 0.08);
}

.skill-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.skill-category h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.skill-category h3 i {
  color: var(--mint-green);
  font-size: 24px;
}

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

.skill-tag {
  display: inline-block;
  background: rgba(61, 220, 151, 0.15);
  color: var(--sky-navy);
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(61, 220, 151, 0.3);
}

.skill-tag:hover {
  background: var(--mint-green);
  color: var(--text-primary);
  transform: translateY(-2px);
  border-color: var(--mint-green);
}

/* Projects Section */
.project {
  margin: 100px 100px;
  text-align: center;
}

.project h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 15px;
  color: #222;
}

.info-pro {
  margin-bottom: 60px;
  color: #666;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  text-align: left;
}

.project-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(91, 125, 177, 0.08);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
  height: 200px;
}

.project-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.project-card p {
  color: #777;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Project Card Structure */
.project-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(91, 125, 177, 0.1);
}

.project-header i {
  color: var(--mint-green);
  margin-bottom: 15px;
}

.project-header h3 {
  margin: 0;
}

.project-body {
  margin-bottom: 25px;
}

.project-body p {
  margin-bottom: 20px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.tech-badge {
  display: inline-block;
  background: rgba(61, 220, 151, 0.15);
  color: var(--sky-navy);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(61, 220, 151, 0.3);
}

.tech-badge:hover {
  background: var(--mint-green);
  color: var(--text-primary);
  border-color: var(--mint-green);
  transform: translateY(-2px);
}

.project-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(91, 125, 177, 0.1);
  display: flex;
  justify-content: center;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-navy);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.project-link:hover {
  background: var(--mint-green);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.project-link i {
  font-size: 18px;
}

.skills {
  margin-bottom: 20px;
}

.skills a {
  display: inline-block;
  background: rgba(61, 220, 151, 0.15);
  color: var(--sky-navy);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 0 5px 5px 0;
  font-weight: 600;
  border: 1px solid rgba(61, 220, 151, 0.3);
  transition: var(--transition);
}

.skills a:hover {
  background: var(--mint-green);
  color: var(--text-primary);
  border-color: var(--mint-green);
}

.btns {
  display: flex;
  gap: 15px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #333;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: var(--sky-navy);
  transform: translateY(-2px);
}

/* Coming Soon Message */
.coming-soon-message {
  text-align: center;
  padding: 80px 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-message i {
  color: var(--mint-green);
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-message h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.coming-soon-message p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* Services */
.services {
  margin: 100px 100px;
  text-align: center;
}

.services h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 50px;
  color: #222;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(91, 125, 177, 0.08);
}

.service-card img {
  width: 70px;
  margin-bottom: 25px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #777;
  line-height: 1.6;
}

/* Contact */
.contact {
  margin: 100px 100px;
  text-align: center;
}

.contact h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 60px;
  color: #222;
}

.contact-content {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
}

.contact-item i {
  color: var(--mint-green);
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: rgba(61, 220, 151, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(61, 220, 151, 0.3);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-navy);
  font-size: 20px;
  transition: var(--transition);
  border: 1px solid rgba(91, 125, 177, 0.1);
}

.social-link:hover {
  background: var(--sky-navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(91, 125, 177, 0.08);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #eee;
  background-color: #fafafa;
  color: #333;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky-navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91, 125, 177, 0.1);
}

.btn-send {
  background: var(--mint-green);
  color: var(--text-primary);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  transition: var(--transition);
}

.btn-send:hover {
  background: var(--mint-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background-color: var(--bg-white);
  color: var(--text-primary);
  padding: 60px 20px;
  text-align: center;
  margin-top: 100px;
  border-top: 1px solid rgba(91, 125, 177, 0.1);
}

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

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--sky-navy);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--sky-navy);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social a {
  color: var(--sky-navy);
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: rgba(91, 125, 177, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  border: 1px solid rgba(91, 125, 177, 0.2);
}

.footer-social a:hover {
  background: var(--sky-navy);
  color: #fff;
  border-color: var(--sky-navy);
}

.footer-copy {
  color: #666;
  font-size: 14px;
}

/* Loading */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-light);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  color: var(--sky-navy);
}

@media (max-width: 1024px) {

  .home-container,
  .about-container {
    gap: 2rem;
  }

  .home {
    margin: 120px 50px 80px;
  }

  .about,
  .skills,
  .project,
  .services,
  .contact {
    margin: 80px 50px;
  }

  /* Skills Section */
  .skills-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  /* Projects Section */
  .projects-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  /* Services Section */
  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {

  /* Header */
  .div-list {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .ul-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ul-list li a {
    font-size: 13px;
  }

  /* General Layout */
  .about,
  .project,
  .services,
  .contact {
    margin: 60px 20px;
  }

  /* Home Section */
  .home {
    margin: 140px 20px 60px;
  }

  .home-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .home img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .info-home h1 {
    font-size: 42px;
  }

  .info-home h3 {
    font-size: 22px;
  }

  .info-p2 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .btnn {
    justify-content: center;
    flex-wrap: wrap;
  }

  .follow ul {
    justify-content: center;
  }

  /* About Section */
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    width: 100%;
    max-width: 400px;
    order: -1;
    /* Image on top */
  }

  .about h1,
  .project h1,
  .services h1,
  .contact h1 {
    font-size: 36px;
  }

  /* Skills Section */
  .skills {
    margin: 60px 20px;
  }

  .skills-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .skill-category {
    padding: 25px;
  }

  /* Projects Section */
  .projects-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-card {
    padding: 20px;
  }

  .project-card img {
    height: 180px;
  }

  .tech-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .project-link {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Services Section */
  .services-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card {
    justify-content: center;
  }

  /* Contact Section */
  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    min-width: auto;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .info-home h1 {
    font-size: 32px;
  }

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

  .ul-list {
    gap: 1rem;
  }

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

  /* Buttons */
  .btn-home1,
  .btn-home2 {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  /* Project Cards */
  .project-card img {
    height: 150px;
  }

  .project-header h3 {
    font-size: 18px;
  }

  .project-body p {
    font-size: 14px;
  }

  /* About Section */
  .about h1,
  .project h1,
  .services h1,
  .contact h1 {
    font-size: 28px;
  }

  /* Contact Form */
  .contact-form {
    padding: 25px;
  }
}