/* ---------- VARIABLES ---------- */
:root {
  --black: #171321;
  --dkblue: #0d314b;
  --plum: #4b0d49;
  --hotmag: #ff17e4;
  --magenta: #e310cb;
  --aqua: #86fbfb;
  --white: #f7f8fa;
  --font-size: 1.2rem;
  --mono: "Oxygen mono", monospace;
  --sans: "Oxygen", sans-serif;
}

/* ---------- RESET ---------- */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--sans);
  background-color: var(--black);
  color: var(--white);
  font-size: var(--font-size);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--magenta);
  text-decoration: none;
}
a:hover {
  color: var(--hotmag);
}

/* ---------- NAVIGATION ---------- */
nav {
  padding: 2rem 1rem;
  font-family: var(--mono);
  font-size: 0.9rem;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}
nav li:first-child {
  flex-basis: 100%;
  text-align: center;
}
nav a {
  color: var(--white);
  display: inline-block;
}
nav .fa-code {
  margin-right: 0.3rem;
}
nav a:hover,
nav [class*="fa-"]:hover {
  color: var(--hotmag);
}
.button {
  background-color: var(--magenta);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-family: var(--mono);
}
.button:hover {
  background-color: var(--hotmag);
}

/* ---------- INTRO SECTION ---------- */
#intro {
  padding: 4rem 1rem 6rem 1rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
#intro .name {
  font-family: var(--mono);
  font-size: 1rem;
}
.name span {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--aqua);
  display: block;
}
#intro h2 {
  font-size: 2.2rem;
  margin-top: 1rem;
}

/* ---------- PROJECTS SECTION ---------- */
#projects {
  padding: 4rem 1rem;
  text-align: center;
}
.section-blue {
  background-color: var(--dkblue);
}
#projects h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ---------- CONTACT SECTION ---------- */
#contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.8), rgba(75, 13, 73, 0.8));
  border-radius: 12px;
  margin-top: 3rem;
}
#contact h2 {
  color: var(--aqua);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}
#contact p {
  line-height: 1.7;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.contact-links .button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: var(--magenta);
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.contact-links .button:hover {
  background-color: var(--hotmag);
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 4rem 1rem;
}
footer ul {
  list-style-type: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 2rem;
}
footer h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ---------- DIVIDER ---------- */
.gradient {
  background: linear-gradient(90deg, rgba(255, 23, 228, 1) 0%, rgba(134, 251, 251, 1) 100%);
  height: 2px;
  margin: 3rem 0;
}

/* ---------- ABOUT PAGE STYLES ---------- */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.about-image {
  flex: 1 1 350px;
  max-width: 400px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.about-content {
  flex: 2 1 600px;
  color: var(--white);
}
.about-content h2,
.about-content h3 {
  color: var(--aqua);
  margin-top: 2rem;
}
.about-content ul {
  padding-left: 2rem;
  list-style: disc;
}
.blackbox {
  background-color: #222;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ---------- ANIMATIONS ---------- */
.about-content,
.about-image {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }
  .name span {
    font-size: 2.5rem;
  }
  #intro h2 {
    font-size: 1.5rem;
  }
  .about-flex {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(13, 49, 75, 0.8), rgba(75, 13, 73, 0.8));
    border-radius: 12px;
  }
  .about-content,
  .about-image {
    width: 100%;
  }
  .contact-links {
    width: 100%;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: var(--sans);
  background-color: #2a2a2a;
  color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--aqua);
  background-color: #1a1a1a;
}


/* === Light Mode === */
body.light {
  background-color: var(--white);
  color: var(--black);
}

body.light nav a {
  color: var(--dkblue);
}

body.light .blackbox {
  background-color: #e0e0e0;
  color: var(--black);
}

body.light .button {
  background-color: var(--dkblue);
  color: white;
}

body.light input,
body.light textarea {
  background-color: #f0f0f0;
  color: #000;
}


/* ---------- ENHANCED ANIMATIONS ---------- */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px var(--aqua); }
  50% { box-shadow: 0 0 20px var(--aqua), 0 0 30px var(--aqua); }
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ---------- ENHANCED NAVIGATION ---------- */
nav {
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.9), rgba(75, 13, 73, 0.9));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--aqua);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideInFromTop 1s ease-out;
}

nav ul li:first-child h1 a {
  background: linear-gradient(45deg, var(--aqua), var(--hotmag));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s infinite;
}

/* ---------- ENHANCED INTRO SECTION ---------- */
#intro {
  background: radial-gradient(ellipse at center, rgba(13, 49, 75, 0.8) 0%, var(--black) 100%);
  animation: slideInFromLeft 1.2s ease-out;
}

#intro .name span {
  background: linear-gradient(45deg, var(--aqua), var(--hotmag));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s infinite;
}

/* ---------- ENHANCED BUTTONS ---------- */
.button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 23, 228, 0.4);
}

/* ---------- ENHANCED SECTIONS ---------- */
.section-blue {
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.95), rgba(75, 13, 73, 0.95));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin: 2rem 0;
  border: 1px solid rgba(134, 251, 251, 0.2);
  animation: slideInFromRight 1.5s ease-out;
}

/* ---------- ENHANCED CONTACT SECTION ---------- */
#contact {
  animation: fadeUp 1.8s ease-out;
}

.contact-links .button {
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  border: 2px solid transparent;
  background-clip: padding-box;
}

.contact-links .button:hover {
  border: 2px solid var(--aqua);
  background: linear-gradient(135deg, var(--hotmag), var(--magenta));
}

/* ---------- ENHANCED FOOTER ---------- */
footer {
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.8), rgba(75, 13, 73, 0.8));
  border-top: 2px solid var(--aqua);
  animation: slideInFromTop 2s ease-out;
}

footer ul li a {
  transition: all 0.3s ease;
}

footer ul li a:hover {
  transform: scale(1.2) rotate(10deg);
  color: var(--aqua);
}

/* ---------- ENHANCED RESPONSIVE ---------- */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }
  
  nav ul {
    gap: 0.8rem;
  }
  
  .button {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* ---------- SCROLL ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .about-content,
  .about-image,
  .resume-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
  }
  
  .about-content {
    animation-delay: 0.2s;
  }
  
  .about-image {
    animation-delay: 0.4s;
  }
  
  .resume-section:nth-child(even) {
    animation-delay: 0.3s;
  }
  
  .resume-section:nth-child(odd) {
    animation-delay: 0.6s;
  }
}

/* ---------- HIRE ME CALL-TO-ACTION ---------- */
.hire-me-section {
  background: linear-gradient(135deg, var(--hotmag), var(--magenta));
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 23, 228, 0.3);
  animation: glow 4s infinite;
}

.hire-me-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hire-me-section p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hire-me-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: white;
  color: var(--magenta);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hire-me-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--hotmag);
}



/* ---------- CYBERSECURITY SECTIONS ---------- */
.cybersecurity-section, .network-security-section, .data-protection-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--dkblue), var(--plum));
  margin: 2rem 0;
}

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

.cybersecurity-section h2, .network-security-section h2, .data-protection-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--aqua);
  margin-bottom: 3rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.framework-grid, .security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.framework-item, .security-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(134, 251, 251, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-item:hover, .security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(134, 251, 251, 0.2);
}

.framework-image, .security-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--magenta);
}

.framework-content h3, .security-content h3 {
  color: var(--hotmag);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
}

.framework-content p, .security-content p {
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.security-content ul {
  list-style: none;
  padding-left: 0;
}

.security-content li {
  color: var(--aqua);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.security-content li:before {
  content: "▶";
  color: var(--magenta);
  position: absolute;
  left: 0;
  top: 0;
}

.protection-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.protection-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  border: 3px solid var(--aqua);
}

.protection-text h3 {
  color: var(--hotmag);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: var(--mono);
}

.protection-text p {
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

.feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(134, 251, 251, 0.2);
  transition: background 0.3s ease;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.feature i {
  font-size: 2rem;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.feature h4 {
  color: var(--aqua);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--mono);
}

.feature p {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .framework-grid, .security-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .protection-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .protection-features {
    grid-template-columns: 1fr;
  }
  
  .cybersecurity-section, .network-security-section, .data-protection-section {
    padding: 2rem 1rem;
  }
  
  .cybersecurity-section h2, .network-security-section h2, .data-protection-section h2 {
    font-size: 2rem;
  }
}


/* ---------- ENHANCED CONTACT SECTION ---------- */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header h2 {
  font-size: 3rem;
  color: var(--aqua);
  margin-bottom: 1rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: var(--white);
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info h3, .contact-form-container h3 {
  color: var(--hotmag);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: var(--mono);
}

.contact-description {
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--magenta);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h4 {
  color: var(--aqua);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-family: var(--mono);
}

.contact-details a, .contact-details span {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--hotmag);
}

.availability {
  background: rgba(134, 251, 251, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--aqua);
}

.availability h4 {
  color: var(--aqua);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-family: var(--mono);
}

.availability p {
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(134, 251, 251, 0.2);
}

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

.form-group label {
  display: block;
  color: var(--aqua);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--mono);
  font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(134, 251, 251, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--sans);
  transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--magenta);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 23, 228, 0.2);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 23, 228, 0.4);
}

.submit-button i {
  font-size: 1rem;
}

.quick-contact {
  text-align: center;
}

.quick-contact h3 {
  color: var(--aqua);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: var(--mono);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.quick-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.8), rgba(75, 13, 73, 0.8));
  border-radius: 15px;
  border: 2px solid rgba(134, 251, 251, 0.3);
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--magenta);
  box-shadow: 0 15px 30px rgba(255, 23, 228, 0.3);
  color: var(--white);
}

.quick-contact-card i {
  font-size: 2.5rem;
  color: var(--magenta);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.quick-contact-card:hover i {
  color: var(--hotmag);
}

.quick-contact-card span {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-header h2 {
    font-size: 2.5rem;
  }
  
  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- ENHANCED FOOTER SECTION ---------- */
.enhanced-footer {
  background: linear-gradient(135deg, var(--black) 0%, var(--dkblue) 50%, var(--plum) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  position: relative;
  z-index: 2;
}

/* Footer Header */
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(134, 251, 251, 0.3);
}

.footer-logo h2 {
  color: var(--aqua);
  font-size: 2.5rem;
  font-family: var(--mono);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo h2 span {
  color: var(--magenta);
  font-size: 2rem;
}

.footer-tagline {
  color: var(--white);
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.footer-button {
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 23, 228, 0.3);
}

.footer-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 23, 228, 0.5);
  color: white;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.footer-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(134, 251, 251, 0.1);
  transition: all 0.3s ease;
}

.footer-section:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-section h3 {
  color: var(--aqua);
  font-size: 1.3rem;
  font-family: var(--mono);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--magenta);
  padding-bottom: 0.5rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.footer-links a:hover {
  color: var(--hotmag);
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
}

.footer-links i {
  color: var(--magenta);
  width: 16px;
  text-align: center;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--magenta);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  width: 20px;
  text-align: center;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-item span:first-child {
  color: var(--aqua);
  font-size: 0.9rem;
  font-family: var(--mono);
  font-weight: 600;
}

.contact-item a, .contact-item span:last-child {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--hotmag);
}

/* Newsletter */
.newsletter-text {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  margin-bottom: 2rem;
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(134, 251, 251, 0.3);
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  border: none;
  padding: 1rem 1.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--hotmag), var(--magenta));
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(134, 251, 251, 0.3);
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link.github {
  background: linear-gradient(135deg, #333, #000);
}

.social-link.email {
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
}

.social-link.twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link i {
  color: white;
  font-size: 1.2rem;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 2px solid rgba(134, 251, 251, 0.3);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  color: var(--white);
  margin: 0;
  opacity: 0.8;
}

.copyright p:first-child {
  font-family: var(--mono);
  font-weight: 600;
}

.copyright i {
  color: var(--magenta);
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer-bottom-links a:hover {
  color: var(--aqua);
  opacity: 1;
}

/* Animated Background Elements */
.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(134, 251, 251, 0.1), rgba(255, 23, 228, 0.1));
  animation: float 6s ease-in-out infinite;
}

.bg-element-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.bg-element-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.bg-element-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer-header {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-container {
    padding: 3rem 1rem 0;
  }
}

@media (max-width: 480px) {
  .footer-logo h2 {
    font-size: 2rem;
  }
  
  .footer-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }
}



/* ---------- ABOUT PAGE IMAGE STYLES ---------- */
.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 50%;
  border: 4px solid var(--aqua);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease-in-out;
}
.about-image img:hover {
  transform: scale(1.05);
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(134, 251, 251, 0.1);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: all 0.4s ease-out;
}

.about-image:hover::before {
  transform: scale(1);
  opacity: 1;
}

.about-content h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(45deg, var(--aqua), var(--hotmag));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--hotmag);
  border-bottom: 2px solid var(--aqua);
  padding-bottom: 0.5rem;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.about-content ul li {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--magenta);
  transition: all 0.3s ease;
}

.about-content ul li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.blackbox {
  border: 1px solid rgba(134, 251, 251, 0.2);
  transition: all 0.3s ease;
}

.blackbox:hover {
  box-shadow: 0 0 30px rgba(134, 251, 251, 0.3);
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 2.5rem;
  }
  .about-content h3 {
    font-size: 1.5rem;
  }
}



/* ---------- PROJECTS PAGE STYLES ---------- */
.projects-hero {
  background: linear-gradient(135deg, var(--dkblue), var(--plum));
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projects-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(134, 251, 251, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 23, 228, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.projects-title {
  font-size: 4rem;
  color: var(--aqua);
  font-family: var(--mono);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(45deg, var(--aqua), var(--hotmag));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.projects-subtitle {
  font-size: 1.4rem;
  color: var(--white);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.projects-grid-section {
  padding: 6rem 2  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }oject-card {
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.8), rgba(75, 13, 73, 0.8));
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(134, 251, 251, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(134, 251, 251, 0.05), rgba(255, 23, 228, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--aqua);
}

.project-card:hover::before {
  opacity: 1;
}

.project-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.project-card:hover .project-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 23, 228, 0.4);
}

.project-icon i {
  font-size: 2rem;
  color: white;
}

.project-content h3 {
  color: var(--aqua);
  font-size: 1.8rem;
  font-family: var(--mono);
  margin-bottom: 1rem;
  font-weight: 600;
}

.project-content p {
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.tech-tag {
  background: rgba(134, 251, 251, 0.1);
  color: var(--aqua);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: var(--mono);
  border: 1px solid rgba(134, 251, 251, 0.3);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(134, 251, 251, 0.2);
  transform: translateY(-2px);
}

.project-status {
  display: flex;
  justify-content: flex-end;
}

.status-badge {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-family: var(--mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge.in-progress {
  background: linear-gradient(135deg, #ff9500, #ff6b00);
  color: white;
}

.status-badge.planning {
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  color: white;
}

.status-badge.completed {
  background: linear-gradient(135deg, #00c851, #007e33);
  color: white;
}

.projects-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.6), rgba(75, 13, 73, 0.6));
  padding: 4rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(134, 251, 251, 0.2);
}

.projects-cta h3 {
  color: var(--aqua);
  font-size: 2.5rem;
  font-family: var(--mono);
  margin-bottom: 1.5rem;
}

.projects-cta p {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 23, 228, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 23, 228, 0.5);
  color: white;
}

.cta-button i {
  font-size: 1.2rem;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
  .projects-title {
    font-size: 2.5rem;
  }
  
  .projects-subtitle {
    font-size: 1.2rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-card {
    padding: 2rem;
  }
  
  .projects-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .projects-grid-section {
    padding: 4rem 1rem;
  }
  
  .projects-cta {
    padding: 3rem 1.5rem;
  }
  
  .projects-cta h3 {
    font-size: 2rem;
  }
}


/* ---------- DROPDOWN OPTION STYLING FIX ---------- */
.form-group select option {
  background: var(--dkblue);
  color: var(--white);
  padding: 0.5rem;
  border: none;
}

.form-group select option:hover {
  background: var(--plum);
  color: var(--aqua);
}

.form-group select option:checked {
  background: var(--magenta);
  color: white;
}

/* Additional select styling for better appearance */
.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386fbfb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

.form-group select:focus {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff17e4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}



/* ---------- TECHNICAL SKILLS STYLES (ABOUT PAGE) ---------- */
.skills-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.skills-list li {
  background-color: #2a2a2a;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--magenta);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skills-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.skills-list li strong {
  color: var(--aqua);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.skills-list li span {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .skills-list {
    grid-template-columns: 1fr;
  }
}



/* WhatsApp Social Link */
.social-link.whatsapp {
  background-color: #25D366;
}

.social-link.whatsapp:hover {
  background-color: #1DA851;
}



/* ---------- STATISTICS SECTION ---------- */
#statistics {
  padding: 4rem 1rem;
  text-align: center;
}

#statistics h2 {
  font-size: 2.5rem;
  color: var(--aqua);
  margin-bottom: 1rem;
}

#statistics .subtitle {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(134, 251, 251, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(134, 251, 251, 0.2);
}

.stat-item i {
  font-size: 3rem;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--hotmag);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: var(--white);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  #statistics h2 {
    font-size: 2rem;
  }
}



/* ---------- ENHANCED PROJECT GRID STYLES ---------- */
.projects-hero {
  background: linear-gradient(135deg, var(--dkblue), var(--plum));
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projects-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(134,251,251,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.projects-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: 1rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.projects-subtitle {
  font-size: 1.4rem;
  color: var(--white);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.projects-grid-section {
  padding: 6rem 2rem;
  background: var(--black);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.project-card {
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.8), rgba(75, 13, 73, 0.6));
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(134, 251, 251, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(134, 251, 251, 0.1), transparent);
  transition: left 0.6s ease;
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(134, 251, 251, 0.2);
  border-color: var(--aqua);
}

.project-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.project-card:hover .project-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 23, 228, 0.5);
}

.project-icon i {
  font-size: 1.8rem;
  color: white;
}

.project-content h3 {
  color: var(--aqua);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-weight: 600;
}

.project-content p {
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

.tech-tag {
  background: rgba(134, 251, 251, 0.1);
  color: var(--aqua);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-family: var(--mono);
  border: 1px solid rgba(134, 251, 251, 0.3);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(134, 251, 251, 0.2);
  transform: translateY(-2px);
}

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

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.project-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 23, 228, 0.4);
  border-color: var(--aqua);
  background: linear-gradient(135deg, var(--hotmag), var(--magenta));
}

.project-status {
  margin-top: 1rem;
}

.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge.in-progress {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.5);
}

.status-badge.planning {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.5);
}

.projects-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.8), rgba(75, 13, 73, 0.8));
  border-radius: 20px;
  border: 1px solid rgba(134, 251, 251, 0.2);
}

.projects-cta h3 {
  color: var(--aqua);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--mono);
}

.projects-cta p {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 23, 228, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 23, 228, 0.5);
  background: linear-gradient(135deg, var(--hotmag), var(--magenta));
}

/* ---------- STATISTICS SECTION ENHANCEMENTS ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(134, 251, 251, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(134, 251, 251, 0.1), rgba(255, 23, 228, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(134, 251, 251, 0.2);
  border-color: var(--aqua);
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--magenta);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.stat-item:hover i {
  color: var(--aqua);
  transform: scale(1.2);
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--aqua);
  margin-bottom: 0.5rem;
  font-family: var(--mono);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.stat-item p {
  color: var(--white);
  font-size: 1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* ---------- ENHANCED FOOTER STYLES ---------- */
.enhanced-footer {
  background: linear-gradient(135deg, rgba(13, 49, 75, 0.95), rgba(75, 13, 73, 0.95));
  border-top: 2px solid var(--aqua);
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(134, 251, 251, 0.2);
}

.footer-logo h2 {
  color: var(--aqua);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: var(--mono);
}

.footer-tagline {
  color: var(--white);
  opacity: 0.8;
  font-size: 1rem;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 23, 228, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--aqua);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-family: var(--mono);
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links a:hover {
  color: var(--aqua);
  opacity: 1;
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  color: var(--magenta);
  font-size: 1.2rem;
  width: 20px;
}

.contact-item div span:first-child {
  color: var(--aqua);
  font-size: 0.9rem;
  display: block;
  font-family: var(--mono);
}

.contact-item div a,
.contact-item div span:last-child {
  color: var(--white);
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid rgba(134, 251, 251, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--sans);
}

.newsletter-form button {
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 23, 228, 0.4);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(134, 251, 251, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--magenta), var(--hotmag));
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 23, 228, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(134, 251, 251, 0.2);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright p {
  color: var(--white);
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--white);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--aqua);
  opacity: 1;
}

.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(134, 251, 251, 0.1), rgba(255, 23, 228, 0.1));
  animation: float 6s ease-in-out infinite;
}

.bg-element-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bg-element-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.bg-element-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ---------- RESPONSIVE DESIGN IMPROVEMENTS ---------- */
@media (max-width: 768px) {
  .projects-title {
    font-size: 2.5rem;
  }
  
  .projects-subtitle {
    font-size: 1.1rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-card {
    padding: 2rem;
  }
  
  .project-links {
    flex-direction: column;
  }
  
  .footer-header {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .projects-grid-section {
    padding: 4rem 1rem;
  }
}


/* ---------- ENHANCED HIRE-ME SECTION ---------- */
.hire-me-section {
  background: linear-gradient(135deg, var(--hotmag), var(--magenta));
  padding: 5rem 2rem;
  text-align: center;
  margin: 3rem 0;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(255, 23, 228, 0.3);
  position: relative;
  overflow: hidden;
}

.hire-me-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

.hire-me-section .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.hire-me-section h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--mono);
  font-weight: 700;
}

.hire-me-section > p {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hire-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.hire-feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hire-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hire-feature i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  display: block;
}

.hire-feature h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-family: var(--mono);
  font-weight: 600;
}

.hire-feature p {
  color: white;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.hire-me-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 3rem;
  background: white;
  color: var(--magenta);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 3px solid transparent;
}

.hire-me-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: var(--hotmag);
  border-color: white;
  background: rgba(255, 255, 255, 0.95);
}

/* ---------- MOBILE RESPONSIVENESS FOR HIRE SECTION ---------- */
@media (max-width: 768px) {
  .hire-me-section h2 {
    font-size: 2.2rem;
  }
  
  .hire-me-section > p {
    font-size: 1.1rem;
  }
  
  .hire-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hire-me-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}

