/*
|--------------------------------------------------------------------------
| GLOBAL STYLES & COLOR PALETTE
|--------------------------------------------------------------------------
*/

:root {
  --color-primary: #00ced1;
  --color-secondary-accent: #6a5acd;
  --color-tertiary: #ffd700;
  --color-bg: #121212;
  --color-text: #f0f0f0;
  --color-card-bg: #1e1e1e;
  --color-border: #333333;
  --color-shadow: rgba(0, 0, 0, 0.6);
  --transition-speed: 0.4s;
  --transition-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/*
|--------------------------------------------------------------------------
| LIGHT MODE
|--------------------------------------------------------------------------
*/

[data-theme="light"] {
  --color-bg: #fafbfc;
  --color-text: #303030;
  --color-card-bg: #ffffff;
  --color-border: #e5e7eb;
  --color-shadow: rgba(0, 0, 0, 0.05);
  --color-about-bg:#f5f5f5;
  --footer-bg:#121212;
  --footer-color-text:#ffffff;
}

/*
|--------------------------------------------------------------------------
| BASE RESET & GLOBAL TYPOGRAPHY
|--------------------------------------------------------------------------
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all var(--transition-speed) var(--transition-ease);
}

html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-size: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}
@media (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
/*
|--------------------------------------------------------------------------
| CONTENT HIDER
|--------------------------------------------------------------------------
*/
.overlay-content {
  background-color: var(--color-bg);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 500;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
/*
|--------------------------------------------------------------------------
| UTILITY CLASSES
|--------------------------------------------------------------------------
*/

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.main-content {
  padding-top: 6rem;
}

.section {
  padding: 6rem 5%;
  min-height: 100vh;
}

.page-heading {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 2rem;
}

/*
|--------------------------------------------------------------------------
| ANIMATIONS
|--------------------------------------------------------------------------
*/

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-element {
  animation: slideIn 0.8s var(--transition-ease) forwards;
  opacity: 0;
}

.delay-200 {
  animation-delay: 0.2s;
}

/*
|--------------------------------------------------------------------------
| HEADER & NAVIGATION STYLES
|--------------------------------------------------------------------------
*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.logo-accent {
  color: var(--color-primary);
}

.navbar .nav-link {
  font-size: 1.1rem;
  color: var(--color-text);
  text-decoration: none;
  margin: 0 1rem;
  padding: 0.5rem 0;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.navbar .nav-link:hover,
.navbar .nav-link.current-page {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-primary);
}

#menu-btn {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--color-secondary-accent);
  font-size: 1.6rem;
  cursor: pointer;
  outline: none;
  padding: 0.5rem;
  border-radius: 50%;
  transition: color 0.3s, background-color 0.3s;
}

.icon-btn:hover {
  color: var(--color-primary);
  background-color: var(--color-card-bg);
}

/*
|--------------------------------------------------------------------------
| HEARDER NAV RESPONSIVENESS
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
  .overlay-content.active {
    display: block;
  }
  .header {
    padding: 1rem 5%;
  }
  #menu-btn {
    display: inline-block;
  }
  .navbar {
    position: absolute;
    width: 40%;
    top: 100%;
    right: 0;
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    flex-direction: column;
    display: none;
    padding-bottom: 1rem;
    box-shadow: 0 8px 10px var(--color-shadow);
  }
  .tilt-in-fwd-tr {
    -webkit-animation: tilt-in-fwd-tr 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
      both;
    animation: tilt-in-fwd-tr 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .navbar.active {
    display: flex;
    z-index: 10000;
  }

  .navbar .nav-link {
    display: block;
    margin: 0.5rem 0;
    padding: 0.5rem 5%;
    border-bottom: none;
  }
}

/*
|--------------------------------------------------------------------------
| HEADER NAV KEYFRAMES
|--------------------------------------------------------------------------
*/

@-webkit-keyframes tilt-in-fwd-tr {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(35deg) translate(300px, -300px)
      skew(-35deg, 10deg);
    transform: rotateY(20deg) rotateX(35deg) translate(300px, -300px)
      skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}
@keyframes tilt-in-fwd-tr {
  0% {
    -webkit-transform: rotateY(20deg) rotateX(35deg) translate(300px, -300px)
      skew(-35deg, 10deg);
    transform: rotateY(20deg) rotateX(35deg) translate(300px, -300px)
      skew(-35deg, 10deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    transform: rotateY(0) rotateX(0deg) translate(0, 0) skew(0deg, 0deg);
    opacity: 1;
  }
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
  margin-top: 1rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 4px 10px rgba(0, 206, 209, 0.4);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-secondary-accent);
  color: var(--color-text);
  box-shadow: 0 6px 15px rgba(106, 90, 205, 0.6);
  transform: translateY(-2px);
  border-color: var(--color-secondary-accent);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-secondary-accent);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-accent);
  color: var(--color-text);
  transform: translateY(-2px);
  border-color: var(--color-secondary-accent);
}

/*
|--------------------------------------------------------------------------
| HERO SECTION 
|--------------------------------------------------------------------------
*/

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8rem;
  gap: 4rem;
  min-height: 80vh;
}

.hero-text-content {
  flex: 1.2;
}

.hero-image-container {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.greeting {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.main-heading {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.animated-text {
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 3rem;
  color: var(--color-subtext);
  line-height: 2;
  font-style:italic;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.profile-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid var(--color-card-bg);
  box-shadow: 0 0 0 10px var(--color-primary), 0 0 50px var(--color-shadow);
  transition: all 0.5s var(--transition-ease);
  position: relative;
}
.image-hero-overlay {
  position: absolute;
  background-color:var(--color-bg);
  opacity: 0.3;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 50%;
}
.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile-image:hover {
  box-shadow: 0 0 0 15px var(--color-secondary-accent),
    0 0 70px var(--color-primary);
}

/*
|--------------------------------------------------------------------------
| SOCIAL LINKS STYLES 
|--------------------------------------------------------------------------
*/

.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1.8rem;
  font-size: 1.8rem;
}

.social-links a {
  color: var(--color-subtext);
  display: inline-block;
  transition: transform 0.3s var(--transition-ease),
    color 0.3s var(--transition-ease);
}

.social-links a:hover {
  transform: translateY(-5px);
  color: var(--color-primary);
}

/*
|--------------------------------------------------------------------------
| MEDIA QUERIES 
|--------------------------------------------------------------------------
*/

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 3rem;
    min-height: unset;
  }

  .main-heading {
    font-size: 3rem;
  }

  .animated-text {
    font-size: 1.6rem;
  }

  .hero-text-content {
    padding-bottom: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .hero-image-container {
    margin: 0;
    order: -1;
  }

  .profile-image {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 2rem;
  }

  .animated-text {
    font-size: 1.3rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
/*
|--------------------------------------------------------------------------
| ABOUT SECTION STYLES
|--------------------------------------------------------------------------
*/

.about-section {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color:var(--color-about-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 4rem;
  align-items: start;
}


.about-image {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding-top: 40px; 
    margin-bottom:30px;
}

.about-image .main-content-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-card-bg);
    box-shadow: 0 10px 25px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.about-image-ovelay {
    position: absolute;
    background-color:var(--color-bg);
    width:100%;
    height:100%;
    z-index:100;
    opacity:0.3;
}

.about-image:hover .about-image-ovelay {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    transform: scale(1);
    transition: transform var(--transition-speed) var(--transition-ease);
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-image-links {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index:200;
}
.about-image-links a {
    width: 42px;
    height: 42px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    color: var(--color-primary);
    box-shadow: 0 4px 12px var(--color-shadow);
    transition: 
        transform var(--transition-speed) var(--transition-ease),
        box-shadow var(--transition-speed) var(--transition-ease),
        background var(--transition-speed) var(--transition-ease),
        color var(--transition-speed) var(--transition-ease);
}
.about-image-links a:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px var(--color-shadow);
    background: var(--color-secondary-accent);
    color: var(--color-text);
}

.about-image-links a:hover i {
    color: var(--color-tertiary);
}

.summary-paragraph {
  font-size: 1.28rem;
  line-height: 2.0;
  margin-bottom: 1.5rem;
  color: var(--color-subtext);
  text-align:justify;
  font-style:italic;
}
.summary-paragraph strong {
  color: var(--color-text);
}

.summary-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

/*
|--------------------------------------------------------------------------
| STATS WRAPPER STYLES 
|--------------------------------------------------------------------------
*/

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 1rem 0;
}
.page-heading {
  text-align:left;
  font-size:3.5rem;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-stat-fill);
  padding: 2rem 1rem;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px var(--color-shadow);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-subtext);
  cursor: default;
  transition: all 0.4s var(--transition-ease);
}
.stat-item.first-item{
 border-radius: 2.5rem  0 0 2.5rem;
}
.stat-item.last-item{
 border-radius:  0 2.5rem 2.5rem 0;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--color-shadow), 0 0 10px var(--color-primary);
  background-color: var(--color-stat-fill-hover);
  border-color: var(--color-primary);
}

.stat-item span.counter {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-secondary-accent); 
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: none;
}
.stat-item span.plus {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-primary); 
  margin-left: 0.25rem;
  position: relative;
  top: -0.6rem;
}

/*
|--------------------------------------------------------------------------
| TIMELINE STYLES
|--------------------------------------------------------------------------
*/

.about-timeline h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: left;
}

.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color-border);
}

.timeline-item {
  padding: 1.8rem 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  background-color: var(--color-card-bg);
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px var(--color-shadow);
  transition: transform 0.3s var(--transition-ease),
  box-shadow 0.3s var(--transition-ease);
  border-left: 5px solid var(--color-primary);
}
.timeline-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px var(--color-shadow),
    0 0 10px var(--color-secondary-accent);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 1.9rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 3px solid var(--color-bg);
  z-index: 1;
}

.timeline-item h4 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 1.2rem;
  color: var(--color-subtext);
  line-height: 1.6;
  font-style:italic;
  text-align:justify;
}

/*
|--------------------------------------------------------------------------
| MEDIA QUERIES 
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
  .about-h1-sm-centering{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:row;
    flex-wrap:wrap;
    gap:0.9rem;
  }

.stat-item.first-item{
 border-radius: 2.5rem 2.5rem 0 0;
}
.stat-item.last-item{
 border-radius:  0 0 2.5rem 2.5rem;
}

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

  .stats-wrapper {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem 1rem;
  }

  .summary-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
  .about-timeline {
    margin-top: 2rem;
  }
  .page-heading {
  text-align:left;
  font-size:3.0rem;
}
}
@media (max-width: 768px) {
    .about-image {
        max-width: 280px;
    }

    .about-image-links a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-image {
        max-width: 230px;
        padding-top: 25px;
    }

    .about-image-links {
        gap: 12px;
    }

    .about-image-links a {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}

/*-------------------------------------------------------------------------
| SKILLS SECTION STYLES
|--------------------------------------------------------------------------
*/

.skills-section {
  text-align: center;
  padding-top: 6rem;
}
.skill-h1-center{
    text-align: center;
}
.skills-intro {
  font-size: 1.28rem;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 2.0rem; 
  font-style:italic;
}

.category-heading {
  font-size: 2rem;
  color: var(--color-primary);
  margin: 4rem 0 2rem;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.category-heading i {
  margin-right: 10px;
  color: var(--color-secondary-accent);
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.skill-card {
  background-color: var(--color-card-bg);
  padding: 2.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s var(--transition-ease),
  box-shadow 0.3s var(--transition-ease);
  border: 1px solid var(--color-border);
  
}

.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--color-shadow), 0 0 15px var(--color-primary);
}

.skill-icon {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.skill-card:hover .skill-icon {
  color: var(--color-secondary-accent);
}

.skill-card h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.skill-card p {
  font-size: 1.28rem;
  color: var(--color-text);
  opacity: 0.7;
  line-height:2.0rem;
  font-style:italic;
}

/*
|--------------------------------------------------------------------------
| SKILLS RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 576px) {

  .skill-card {
  gap:1.4rem;
  
}
  .skill-grid {
    grid-template-columns: 1fr; 
    gap: 1.5rem; 
  }
  .skill-card {
    padding: 1.5rem 1rem;
  }
  .skill-icon {
    font-size: 3rem;
  }
  .skills-intro {
    font-size: 1.1rem;
  }
  .section {
    padding: 4rem 5%;
  }
  .page-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .skill-card p {
   letter-spacing:0.1rem;
}
}

/*
|--------------------------------------------------------------------------
| CONTACT SECTION STYLES
|--------------------------------------------------------------------------
*/
.contact-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-subtext);
  font-size: 1.28rem;
  font-style: italic;
  line-height:2.0rem;
}
.contact-content-grid{
  display: grid;
  grid-template-columns: 1fr 2fr; 
  gap: 4rem;
  background-color: var(--color-card-bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px var(--color-shadow);
}

.contact-info {
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-secondary-accent),
    var(--color-primary)
  );
  color: var(--color-text);
  border-radius: 8px;
  height: fit-content;
}

.info-heading {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.info-icon {
  font-size: 1.2rem;
  color: var(--color-text); 
}

.info-text,
.contact-info a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-social {
  margin-top: 3rem;
}
.contact-social a {
  color: var(--color-text);
  font-size: 1.8rem;
}
.contact-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.contact-form {
  padding: 1.5rem 0;
}

.form-heading {
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-subtext);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="subject"],
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box; 
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.center-send-button{
  display:flex;
  align-items:center;
  justify-content:center;
}
 .contactForm-send-btn{
  color:var(--color-about-bg);
  width:100%;
  max-width:180px;
 }

.form-status-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.form-status-message.success {
  background-color: rgba(0, 206, 209, 0.1);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.form-status-message.info {
  background-color: rgba(255, 165, 0, 0.1); 
  border: 1px solid orange;
  color: orange;
}

/*
|--------------------------------------------------------------------------
| CONTACT SECTION MEDIA QUERIES
|--------------------------------------------------------------------------
*/
@media (max-width: 768px) {
  .contact-content-grid {
    grid-template-columns: 1fr; 
    gap: 2rem;
    padding: 1.5rem;;
  }

  .contact-form {
    order: 1;
    padding: 0.5rem 0;
  }
}

@media (max-width: 576px) {
  .contact-info {
    padding: 1rem;
  }
}

/*
|--------------------------------------------------------------------------
| PROJECTS SECTION STYLES 
|--------------------------------------------------------------------------
*/

.projects-section {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.projects-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.projects-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 0 1rem;
}

.project-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--color-shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--color-primary-shadow);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 2px solid var(--color-border);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.project-description {
  color: var(--color-subtext);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size:1.28rem;
  line-height:2.0rem;
  font-style:italic;
  text-align:justify;
  text-justify: inter-word;
}

.project-tech {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-primary-light);
}

.project-links {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.1s;
  font-size: 0.95rem;
  border: 2px solid transparent;
}

.link-btn i {
  font-size: 1.1rem;
}

.link-btn-github {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.link-btn-github:hover {
  background-color: #555;
  transform: translateY(-1px);
}

.link-btn-live {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}

.link-btn-live:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.link-btn-apk {
  background-color: #1e90ff;
  color: #fff;
  border-color: #1e90ff;
}

.link-btn-apk:hover {
  background-color: #4169e1;
  transform: translateY(-1px);
}

.scroll-hint {
  display: none;
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--color-subtext);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

/*
|--------------------------------------------------------------------------
| MOBILE STYLES 
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
  .projects-grid-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-x: visible;
    padding: 0 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .project-card {
    flex: 1;
    max-width: 100%;
    margin-left: 0;
    scroll-snap-align: none;
  }

  .scroll-hint {
    display: none;
  }

  .project-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .link-btn {
    justify-content: center;
  }
}
/*
|--------------------------------------------------------------------------
| WAPP LINK
|--------------------------------------------------------------------------
*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 60px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/*
|--------------------------------------------------------------------------
| WAPP RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {
.whatsapp-float {
  right: 20px;
}
}


/*
|--------------------------------------------------------------------------
| FOOTER STYLES
|--------------------------------------------------------------------------
*/


.footer {
  padding: 1.5rem 5%;
  background-color: var(--footer-bg);
  border-top: 2px solid var(--color-primary);
  color: var(--footer-color-text);
  font-size: 0.9rem;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.footer-content p {
  font-size: 1.1rem;
  font-weight: bold;
}
.footer-italic {
  font-style: italic;
}

.footer-social-links a {
  color: var(--footer-color-text);
  font-size: 1.2rem;
  margin-left: 1rem;
  transition: color 0.3s;
}

.footer-social-links a:hover {
  color: var(--color-primary);
}

/*
|--------------------------------------------------------------------------
| FOOTER RESPONSIVENESS STYLES
|--------------------------------------------------------------------------
*/


@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-social-links {
    margin-top: 0.5rem;
  }
}
