@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

html, body {
  overflow-x: hidden;
}

/* Import Poppins font */
body {
  background-color: #0F172A;
  font-family: 'Poppins', sans-serif;
  color: #E2E8F0;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /* make sure this matches */
  background: #0F172A;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo svg {
  height: 38px;
  width: 38px;
  transition: transform 0.3s ease;
}

.logo:hover svg {
  transform: scale(1.1);
}

.logo-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #64FFDA;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}
.logo:hover .logo-name {
  text-shadow: 0 0 5px #64FFDA, 0 0 15px #38BDF8;
}




/* Nav links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 400;
  padding: 0.5rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00ADB5;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

/* Open animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #1E293B;
    width: 220px;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px;
  }

  .nav-links.active {
    max-height: 340px;
    padding: 10px 0;
  }

  .nav-links li {
    text-align: right;
    padding: 12px 20px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #0F172A;
  padding-top: 0.1px;
  color: #64FFDA;
}


.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
  letter-spacing: 3px;
  font-weight: 700;
  color: #38BDF8;
  margin: 0;
  animation: slideInTop 0.7s ease;
}

.hero-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  color: #64FFDA;
  margin: 0.5rem 0;
  text-shadow: 0 0 12px rgba(100, 255, 218, 0.25);
  animation: fadeInDown 0.8s ease-in-out;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  color: #CBD5E1;
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1s ease-in-out;
}

#typed-text {
  color: #38BDF8;
  font-weight: 600;
  border-bottom: 2px solid #38BDF8;
  padding-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}

/* Scroll Indicator (same as Ahsan) */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  opacity: 1;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #38bdf8;
  border-right: 2px solid #38bdf8;
  transform: rotate(45deg);
  animation: scrollAnim 1.5s infinite;
  opacity: 0;
}

.scroll-indicator span:nth-child(2) {
  animation-delay: 0.3s;
}
.scroll-indicator span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes scrollAnim {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(5px, 5px);
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(0, 0);
  }
}

/* Entrance Animations */
@keyframes slideInTop {
  from { transform: translateY(-40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text h2 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%, #38BDF8, #0F172A);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
  animation: heroBlob 8s ease-in-out infinite alternate;
}

@keyframes heroBlob {
  0% {
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
  }
  50% {
    transform: translate(-48%, -52%) scale(1.15);
    border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
  }
}
@keyframes glow {
  from {
    text-shadow: 0 0 5px #38BDF8;
  }
  to {
    text-shadow: 0 0 15px #64FFDA, 0 0 30px #38BDF8;
  }
}



/* Sections */
section {
  padding: 60px 0;
}
section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #F8FAFC;
}
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 50%; /* Makes it a circle */
  border: 4px solid #64FFDA;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.about-content {
  flex: 2 1 400px;
}

.about-content p {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 1rem;
}


/* Projects */
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.project-item {
  background: #1E293B;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  color: #E2E8F0;
}
.project-item h3 {
  color: #64FFDA;
}
.project-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Filter Buttons */
/* Make filter buttons responsive */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.filter-btn {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #64FFDA;
  color: #64FFDA;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #64FFDA;
  color: #0F172A;
}


/* Resume */
.job-item h3 {
  font-size: 1.3rem;
  color: #38BDF8;
  margin-bottom: 0.3rem;
}
.job-item span {
  font-size: 0.9rem;
  color: #94A3B8;
  display: block;
  margin-bottom: 0.5rem;
}
.job-item ul {
  padding-left: 1.2rem;
  list-style: disc;
  margin: 0;
}
.job-item ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.3rem;
  color: #CBD5E1;
}

/* Awards */
.award-item {
  background: #1E293B;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  color: #E2E8F0;
}
.award-item strong {
  display: block;
  color: #38BDF8;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

/* Resume Tabs */
.resume-container {
  display: flex;
  gap: 2rem;
}
.resume-tabs {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid #38BDF8;
}
.resume-tabs li {
  margin-bottom: 1rem;
}
.resume-tabs a {
  text-decoration: none;
  color: #94A3B8;
  display: block;
  padding: 0.5rem 1rem;
  border-left: 4px solid transparent;
  transition: 0.3s;
}
.resume-tabs a:hover,
.resume-tabs a.active {
  color: #38BDF8;
  border-left-color: #38BDF8;
  background-color: #1E293B;
}
.resume-content {
  flex: 3;
}
.resume-block {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.resume-block.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.resume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.resume-card {
  background: #1E293B;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #E2E8F0;
  transition: transform 0.3s ease;
}

.resume-card h4 {
  font-size: 1.1rem;
  color: #38BDF8;
  margin-bottom: 0.6rem;
}

.resume-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #CBD5E1;
}

.resume-card:hover {
  transform: translateY(-6px);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}
.skills-list li {
  background: #1E293B;
  color: #38BDF8;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: background 0.3s;
}
.skills-list li:hover {
  background: #0F172A;
}
.skills-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.skill-box {
  background: #0F172A;
  border: 1px solid #1E293B;
  padding: 1.2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.skill-box:hover {
  transform: translateY(-6px);
  border-color: #38BDF8;
}

.skill-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0.6rem;
}

.skill-box h4 {
  font-size: 1.1rem;
  color: #38BDF8;
  margin-bottom: 0.5rem;
}

.skill-box p {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.4;
}


/* Button */
.btn {
  display: inline-block;
  background: #00ADB5;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.3s;
}
.btn:hover {
  background: #007B8A;
}

/* Footer */
footer {
  background: #1E293B;
  padding: 1rem 0;
  margin-top: 2rem;
}
footer p {
  text-align: center;
  color: #94A3B8;
}
footer .social {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
footer .social li {
  margin: 0 0.5rem;
}
footer .social a {
  color: #64FFDA;
  transition: color 0.2s;
}
footer .social a:hover {
  color: #38BDF8;
}

.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.blob {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 160%;
  height: 160%;
  opacity: 0.25;
}

.blob1 {
  fill: #0ea5e9;
  animation: float1 20s ease-in-out infinite alternate;
}
.blob2 {
  fill: #9333ea;
  animation: float2 25s ease-in-out infinite alternate;
}

@keyframes float1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.1); }
}

@keyframes float2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(30px) scale(1.05); }
}

.skills-section {
  padding: 60px 0;
  background-color: #f8fafc;
}

.skills-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0f172a;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.skill-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 150px;
}

.skill-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.8rem;
}

.skill-card p {
  font-weight: 600;
  color: #1e293b;
  font-size: 1rem;
}

.skill-card:hover {
  transform: translateY(-8px);
}
.hire-me-section {
  width: 100%;
  min-height: 50vh;
  background: linear-gradient(135deg, #0F172A, #1E293B); /* Matches your header & theme */
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
  padding: 0 20px; 
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.hire-me-content {
  max-width: 960px;
  text-align: center;
}

.hire-me-content h2 {
  font-size: 2rem;
  color: #E2E8F0;
  margin-bottom: 20px;
  font-weight: 600;
}

.hire-me-content h2 span {
  color: #fbbf24; /* Warm orange for "Available" */
  font-weight: 700;
}

.hire-me-content h2 strong {
  color: #64FFDA; /* Your accent teal/cyan */
  font-weight: 700;
}

.hire-me-button {
  display: inline-block;
  background: #64FFDA;
  color: #0F172A;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(100, 255, 218, 0.3);
  transition: all 0.3s ease-in-out;
}

.hire-me-button:hover {
  background: #38BDF8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.3);
}
/* 1. CTA Styles */
/* Container base */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}
/* Divider Line (optional) */
.section-divider {
  margin: 40px auto;
  width: 80%;
  border: none;
  height: 2px;
  background: linear-gradient(to right, #38BDF8, #64FFDA);
  border-radius: 10px;
}

/* 1. Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #38BDF8, #0F172A);
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 60px 20px;
}
.contact-cta h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}
.contact-cta .cta-subtext {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 1.2rem;
}
.contact-cta .btn {
  font-size: 1rem;
  padding: 0.6rem 1.4rem;
  background-color: #64FFDA;
  color: #0F172A;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}
.contact-cta .btn:hover {
  background-color: #38BDF8;
  color: #ffffff;
}

/* 2. Contact Section Layout */
.contact-section {
  padding: 100px 20px;
  background: #0F172A;
  color: #E2E8F0;
  text-align: center;
}
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* 3. Headline & Text */
.contact-text h2 {
  font-size: 2.4rem;
  color: #38BDF8;
  margin-bottom: 1rem;
}
.contact-text p {
  font-size: 1rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
}

/* 4. Contact Info Boxes */
.contact-boxes {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-box {
  flex: 1 1 250px;
  background: #1E293B;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.contact-box h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #E2E8F0;
  margin: 0 0 0.2rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.contact-box h4 i {
  color: #64FFDA;
  font-size: 1.2rem;
}
.contact-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #94A3B8;
  word-break: break-word;
}
.contact-box a {
  color: #64FFDA;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-box a:hover {
  color: #38BDF8;
  text-decoration: underline;
}

/* 5. Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-in-out;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  background: #1E293B;
  color: #E2E8F0;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  resize: none;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  transition: border 0.3s, box-shadow 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94A3B8;
  font-size: 0.9rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #38BDF8;
}
.contact-form button {
  align-self: flex-start;
  font-size: 1rem;
  padding: 0.6rem 1.3rem;
  background-color: #64FFDA;
  color: #0F172A;
  border-radius: 6px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background-color: #38BDF8;
  color: #fff;
}
/* === Improved Responsive Layout for Contact Section === */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 0 10px;
  }

  .contact-text h2 {
    font-size: 1.8rem;
  }

  .contact-boxes {
    flex-direction: column;
    gap: 1.2rem;
  }

  .contact-box {
    flex: 1 1 100%;
    padding: 1.2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }

  .contact-form button {
    width: 100%;
    font-size: 1rem;
  }

  .contact-cta {
    padding: 30px 15px;
    margin: 40px 10px;
  }

  .contact-cta h2 {
    font-size: 1.5rem;
  }

  .contact-cta .cta-subtext {
    font-size: 0.95rem;
  }

  .contact-cta .btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.7rem 0;
  }
}
/* 7. Simple Keyframe Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === Optional Enhancement for Larger Desktops (Optional) === */
@media (min-width: 1200px) {
  .contact-grid {
    max-width: 1000px;
  }
}

/* 6. Responsive */
@media (max-width: 768px) {
  .contact-boxes {
    flex-direction: column;
  }
  .contact-form button {
    width: 100%;
  }
}
/* Extra Small Devices (phones below 480px) */
@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .resume-grid,
  .skills-grid-cards,
  .project-list {
    grid-template-columns: 1fr;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }
}

/* Large Desktops (ultrawide or 4K screens) */
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  .hero-text h2 {
    font-size: 4.5rem;
  }

  .hero-content p {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hire-me-content {
    padding: 0 10px;
    width: 100%;
  }

  .hire-me-content h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .hire-me-button {
    width: 100%;
    max-width: 240px;
    padding: 0.75rem;
    font-size: 1rem;
  }
}
.footer {
  background: #0F172A;
  padding: 40px 20px;
  text-align: center;
  color: #CBD5E1;
  border-top: 1px solid #1E293B;
}

.footer h3 {
  font-size: 1.6rem;
  color: #64FFDA;
  margin-bottom: 1rem;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

.footer .social-icons {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .social-icons li a {
  color: #38BDF8;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer .social-icons li a:hover {
  color: #64FFDA;
}

.footer p {
  font-size: 0.9rem;
  color: #94A3B8;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 600px) {
  .footer .social-icons {
    flex-direction: column;
    gap: 1rem;
  }

  .footer h3 {
    font-size: 1.3rem;
  }
}







