/* Base Styles */
:root {
    /* Light theme colors */
    --primary-400: ##25D366;
    --primary-500: #25D366;
    --primary-600: #25D366;
    --accent-400: #10b981;
    --accent-500: #059669;
    --accent-600: #047857;
    --dark-50: #f8fafc;
    --dark-100: #f1f5f9;
    --dark-200: #e2e8f0;
    --dark-300: #cbd5e1;
    --dark-400: #94a3b8;
    --dark-500: #64748b;
    --dark-600: #475569;
    --dark-700: #334155;
    --dark-800: #1e293b;
    --dark-900: #0f172a;
    --light-bg: #ffffff;
    --light-text: #1e293b;
    --light-border: #e2e8f0;
    --light-card-bg: #ffffff;
    --light-card-border: #e2e8f0;
    --light-nav-bg: rgba(255, 255, 255, 0.95);
    --light-nav-border: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--light-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-500), #01af32, #06b915);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background-color: var(--light-nav-bg);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--light-nav-border);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px;
    }

    .logo-img {
      height: 55px;
      width: auto;
    }

    .nav-links {
      display: flex;
      gap: 30px;
    }

    .nav-link {
      color: var(--dark-600);
      font-weight: 500;
      text-decoration: none;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--primary-500);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(135deg, var(--primary-500), #8b5cf6);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
    }

    .menu-icon {
      width: 28px;
      height: 28px;
      color: var(--dark-700);
    }

    /* Add this to your existing nav-link styles */
.nav-link.active {
    color: var(--primary-500);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}
/* Mobile styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }
    .nav-link.active {
    color: var(--primary-500);
    font-weight: 600;
}

.nav-link.active::after {
    width: 50%;
   left: 50%;
   transform: translateX(-50%);
}

    .nav-links {
        position: fixed;
        top: 80px; /* Adjust based on your header height */
        left: 0;
        right: 0;
        background-color: var(--light-nav-bg);
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 15px;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--light-nav-border);
        transition: all 0.3s ease;
    }

    .nav-links.show {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-link {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-link::after {
        bottom: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        transition: transform 0.3s ease;
    }

    /* Animation for menu button when active */
    .mobile-menu-btn[aria-expanded="true"] {
        transform: rotate(90deg);
    }

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(at 40% 20%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
                radial-gradient(at 80% 0%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
                radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.1) 0px, transparent 50%);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(241, 245, 249, 0.8));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.hero-content {
    
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    color: var(--primary-500);
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    padding: 20px;
    padding-top: 0px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-800);
    margin-bottom: 0;
    padding: 20px;
}

.hero-description {
    font-size: 1rem;
    color: var(--dark-600);
    margin: 0px;
    line-height: 1.7;
    padding: 20px;
    padding-top: 0px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-left: 20px;
}
.secondary-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid var(--primary-500);
    color: var(--primary-500);
    font-weight: 400;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: var(--primary-500);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark-800);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-500);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: var(--dark-300);
}

.hero-image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: float 6s ease-in-out infinite;
}

.hero-image-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, var(--primary-500), #8b5cf6, #06b6d4);
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
    animation: pulseGlow 2s infinite;
}

.hero-floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 4s infinite;
}

.hero-floating-element.top-right {
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-500);
    animation-delay: 0s;
}

.hero-floating-element.bottom-left {
    bottom: -32px;
    left: -32px;
    width: 128px;
    height: 128px;
    background-color: var(--accent-500);
    animation-delay: 1s;
}
/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  justify-content: left;
  margin: 0px;
padding: 20px;
padding-top: 0px;
}

.social-links a {
  font-size: 1.9rem;
  color: var(--dark-600);
  transition: color 0.3s ease;
}

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

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}


/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-800);
    margin-bottom: 20px;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: rgb(10, 192, 10);
    border-radius: 2px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dark-600);
    max-width: 700px;
    margin: 20px auto 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-column {
    padding: 30px;
    background-color: var(--light-card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgb(18, 94, 18);
    border: 1px solid yellowgreen;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-800);
    margin-bottom: 20px;
}

.about-text {
    color: var(--dark-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-list {
    display: grid;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 12px;
}

.value-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.value-bullet.primary {
    background-color: var(--primary-500);
}

.value-bullet.accent {
    background-color: var(--accent-500);
}

.value-bullet.secondary {
    background-color: var(--primary-400);
}

.value-title {
    font-weight: 600;
    color: var(--dark-800);
    margin-bottom: 4px;
}

.value-description {
    font-size: 0.875rem;
    color: var(--dark-500);
}

.skills-section {
  margin: 80px auto;
  max-width: 1200px;
}

.skills-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.skills-row-container {
  overflow: hidden;
  border-top: 1px solid rgb(0, 97, 0);
  border-bottom: 1px solid rgb(0, 82, 0);
  position: relative;
}

.skills-row {
  display: flex;
  gap: 24px;
  padding: 30px 0;
  will-change: transform;
}

.skill-card {
  flex: 0 0 auto;
  min-width: 180px;
  padding: 24px;
  background-color: var(--light-card-bg);
  border: 2px solid greenyellow;
  border-radius: 16px;
  text-align: center;
  font-size: 1.2rem;
  color: green;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 255, 81, 0.15);
}

.skill-card .skill-name {
  font-weight: 600;
  margin-top: 12px;
  font-size: 1.1rem;
}


.timeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; /* allow wrapping on small screens */
}
.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-800);
    text-align: center;
    margin-bottom: 40px;
}

/* Timeline Box Styling */
.timeline-box {
  position: relative;
  display: flex;
  flex: 1 1 300px;
  max-width: 200px;
}

/* Past box normal size */
.timeline-box.past .timeline-content {
  transform: scale(1);
}

/* Present box larger */
.timeline-box.present .timeline-content {
  transform: scale(1.2);
}
.timeline-date{
    display: block;
    font-size: 0.8rem;
    color: var(--primary-500);
    margin: 8px 0;
    font-weight: 500;
}
.timeline-description {
  color: var(--dark-600);
  font-size: 0.875rem;
  margin-top: 8px;
  line-height: 1.6;
}
/* Common box content styling */
.timeline-content {
  background-color: var(--light-card-bg);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 15px -3px green;
  width: 100%;
  transition: transform 0.3s ease;
}

/* Connector line and dot */
.timeline-connector {
  position: relative;
  width: 80px;
  height: 2px;
  background: var(--primary-500);
}

/* Dot in the center of the line */
.timeline-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-500);
  border: 2px solid white;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 768px) {
  .timeline-row {
    flex-direction: column;
    gap: 30px;
  }

  .timeline-connector {
    width: 2px;
    height: 40px;
  }

  .timeline-connector::after {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Projects Section */
.projects-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid yellowgreen;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px green;
}

.project-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover .project-image {
    transform: scale(1.05);
}
.project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.project-card:hover .project-image-overlay {
    opacity: 1;
}

.project-content {
    padding: 24px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-500);
}
.project-indicators {
    display: flex;
    gap: 6px;
}
.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.indicator.primary {
    background-color: var(--primary-500);
}
.indicator.accent {
    background-color: var(--accent-500);
}

.project-description {
    color: var(--dark-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}
.tag {
    padding: 6px 10px;
    background-color: rgba(99, 102, 241, 0.08);
    color: var(--primary-500);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid rgba(99,102,241,0.15);
}

.project-buttons {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  gap: 12px;
}

.project-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--primary-500);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.project-btn svg {
  width: 18px;
  height: 18px;
}

.project-btn:hover {
  color: var(--primary-700);

  transform: translateY(-2px);
}

.project-card {
    position: relative;
}
.project-content {
  padding: 24px;
  padding-bottom: 35px; /* increased bottom padding to leave space for the buttons */
}


.project-btn.primary {
    background: linear-gradient(135deg, var(--primary-500), #2dd4bf);
    color: white;
}
.project-btn.primary:hover {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.project-btn.secondary {
    border: 2px solid var(--primary-500);
    color: var(--primary-500);
}
.project-btn.secondary:hover {
    background-color: var(--primary-500);
    color: white;
}


/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-form-container{
    border: 1px solid yellowgreen;
}

.contact-info {
    padding: 40px;
    background-color: var(--light-card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px green;
    border: 1px solid yellowgreen;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-800);
    margin-bottom: 20px;
}

.info-description {
    color: var(--dark-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.primary {
    background: linear-gradient(135deg, var(--primary-500), #01cf27);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-label {
    font-weight: 600;
    color: var(--dark-800);
}

.contact-value {
    color: var(--dark-600);
}

.contact-value.accent {
    color: var(--accent-500);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    background-color: var(--light-card-bg);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-500);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.2);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(0.5);
    transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1);
}

.contact-form-container {
    padding: 40px;
    background-color: var(--light-card-bg);
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px green;
    border: 1px solid yellowgreen;
}

.contact-form {
    display: grid;
    gap: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-800);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid var(--light-border);
    background-color: var(--light-bg);
    color: var(--dark-800);
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.form-textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-500), #1cd32b, #28a702);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-500), #5cf468, #5ff930);
    box-shadow: 0 0 20px rgba(99, 240, 106, 0.4);
    transform: translateY(-3px);
}

.main-footer {
  background-color: var(--light-bg);
  border-top: 1px solid var(--light-border);
  padding: 70px 0 30px;
  color: var(--dark-600);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 250px;
  text-align: center;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 14px;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--primary-500);
  font-weight: 600;
}

.footer-message {
  font-size: 0.95rem;
  margin-top: 10px;
  color: var(--dark-500);
}

.footer-links {
  display: flex;
  flex: 3 1 600px;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-section h4 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--dark-700);
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--dark-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-500);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.social-links a {
  font-size: 1.4rem;
  color: var(--dark-600);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--dark-500);
  border-top: 1px solid var(--light-border);
  padding-top: 20px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Enter Animation */
.section-enter {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-enter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
        margin: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: row;
    }
    
    .footer-brand {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--light-nav-bg);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    .social-links {

  justify-content:center;
}
    .section-title {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .main-nav, .mobile-menu-btn, .hero-image-container, .social-links {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
        font-size: 12pt;
    }
    
    .container {
        padding: 0;
        max-width: 100%;
    }
    
    section {
        page-break-inside: avoid;
        padding: 20px 0 !important;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 0;
    }
    
    .hero-content {
        text-align: left;
    }
    
    a {
        text-decoration: none;
        color: inherit;
    }
    
    .project-buttons, .submit-btn {
        display: none;
    }
}