:root {
    --primary-black: #0a0a0a;
    --secondary-black: #111111;
    --primary-white: #ffffff;
    --text-gray: #e0e0e0;
    --accent-gray: #333333;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --premium-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --hover-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
    --gradient-bg: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    --accent-rgb: 255, 215, 0; /* Changed to gold */
    --accent-darker-rgb: 218, 165, 32; /* Darker gold */
    --gradient-start: rgba(255, 215, 0, 0.1);
    --gradient-end: rgba(218, 165, 32, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: var(--primary-black);
    color: var(--primary-white);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
  }
  
  /* 16:9 Container */
  .aspect-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin: 4rem 0;
  }
  
  .aspect-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    display: flex;
    align-items: center;
  }
  
  /* Premium Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .logo a:hover {
    transform: translateY(-1px);
  }
  
  .logo-dot {
    color: rgb(var(--accent-rgb));
    font-size: 2.8rem;
    font-weight: 700;
    display: inline-block;
    margin-left: 1px;
    position: relative;
    transform: translateY(-2px);
    animation: dotPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    will-change: transform, opacity;
  }
  
  @keyframes dotPulse {
    0% {
        transform: translateY(-2px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-2px) scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-2px) scale(1);
        opacity: 1;
    }
  }
  
  .logo a:hover .logo-dot {
    animation: dotHover 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  
  @keyframes dotHover {
    0% {
        transform: translateY(-2px) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.3);
    }
    100% {
        transform: translateY(-2px) scale(1);
    }
  }
  
  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }
  
  .nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
  }
  
  .nav-links a:hover {
    color: var(--primary-white);
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-white);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .menu-icon {
    display: none;
    cursor: pointer;
  }
  
  .bar {
    width: 28px;
    height: 2px;
    background-color: var(--primary-white);
    margin: 6px 0;
    transition: all 0.3s ease;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-content {
      padding: 1.2rem 2rem;
    }
  
    .logo a {
      font-size: 1.6rem;
    }
  
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      padding: 1.5rem 0;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-icon {
      display: block;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
      position: relative;
    }
  
    /* Hamburger Menu Animation */
    .menu-icon.active .bar:nth-child(1) {
      transform: rotate(-45deg) translate(-6px, 7px);
    }
  
    .menu-icon.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .menu-icon.active .bar:nth-child(3) {
      transform: rotate(45deg) translate(-6px, -7px);
    }
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 4rem;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .hero-quote {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -1px;
    position: relative;
    padding-bottom: 2rem;
  }
  
  .hero-quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.3s ease;
  }
  
  .hero-quote:hover::after {
    width: 150px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 80%;
  }
  
  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
  }
  
  /* Premium Buttons */
  .btn {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    margin-right: 1.5rem;
  }
  
  .btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 1px solid var(--primary-white);
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Section Styling */
  .section {
    padding: 4rem 4rem;
  }
  
  .section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-white);
  }
  
  /* Projects Grid */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }
  
  .project-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: 2px;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
  }
  
  /* Contact Form */
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-input {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-black);
    border: 1px solid var(--accent-gray);
    color: var(--primary-white);
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-input:focus {
    outline: none;
    border-color: var(--primary-white);
  }
  
  /* Footer */
  .footer {
    padding: 4rem;
    background: var(--secondary-black);
    border-top: 1px solid var(--accent-gray);
  }
  
  .footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 6rem 2rem;
    }
  
    .hero-subtitle {
      margin: 0 auto 3rem auto;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 0.05rem 2rem;
    }
  }
  
  /* Enhanced Logo Styling */
  .nav-logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-white);
    position: relative;
    cursor: pointer;
  }
  
  .nav-logo::after {
    content: '.';
    color: var(--primary-white);
    opacity: 1;
    animation: blink 2s infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* Refined Quote Styling */
  .quote-container {
      position: relative;
      margin-bottom: 2rem;
      max-width: 800px;
  }
  
  .quote-wrapper {
      position: relative;
      display: block;
      margin: 0;
      padding: 0;
      border-bottom: none;
  }
  
  .hero-quote {
      font-family: var(--font-primary);
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.3;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin: 0;
      padding: 0;
      position: relative;
      display: inline-block;
      text-decoration: none;
      border-bottom: none;
  }
  
  .hero-quote::after {
      display: none;
  }
  
  .quote-marks {
      position: relative;
      font-family: var(--font-primary);
      font-size: 1em;
      color: var(--primary-white);
      opacity: 0.8;
      line-height: 0;
      margin-right: 0.2em;
  }
  
  .quote-marks.closing {
      margin-right: 0;
      margin-left: 0.2em;
  }
  
  .quote-author {
      display: block;
      text-align: right;
      font-family: var(--font-secondary);
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      font-weight: 300;
      letter-spacing: 3px;
      color: var(--text-gray);
      margin-top: 1rem;
      padding-right: 4rem;
      position: relative;
  }
  
  .quote-author::before {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 3rem;
      height: 1px;
      background: var(--primary-white);
      transform: translateY(-50%);
  }
  
  /* Hero CTA adjustment */
  .hero-cta {
      margin-top: 2rem;
  }
  
  /* About Section Styling */
  .about-section {
      padding: 3rem 3rem;
      background-color: var(--primary-black);
  }
  
  .about-container {
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .section-header {
      margin-bottom: 1.5rem;
  }
  
  .section-title {
      font-family: var(--font-primary);
      font-size: 3rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
  }
  
  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 2px;
      background: var(--primary-white);
  }
  
  .about-text {
      font-size: 1.5rem;
      line-height: 1.8;
      color: var(--text-gray);
      font-weight: 300;
      font-family: var(--font-secondary);
  }
  
  .highlight {
      color: var(--primary-white);
      font-weight: 500;
      position: relative;
      display: inline-block;
      transition: all 0.3s ease;
  }
  
  .highlight:hover {
      transform: translateY(-2px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .about-section {
          padding: 4rem 2rem;
      }
  
      .section-title {
          font-size: 2.5rem;
      }
  
      .about-text {
          font-size: 1.2rem;
          line-height: 1.6;
      }
  }
  
  /* Add these styles after your existing about section CSS */
  
  .info-container {
      margin-top: 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
  }
  
  .subsection-title {
      font-family: var(--font-primary);
      font-size: 1.8rem;
      margin-bottom: 2rem;
      font-weight: 600;
  }
  
  /* Updated Skills Styling */
  .skills-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }
  
  .skill-category {
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.3s ease;
  }
  
  .skill-category:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.05);
  }
  
  .category-label {
      display: block;
      font-family: var(--font-primary);
      font-size: 1.1rem;
      color: var(--primary-white);
      margin-bottom: 0.5rem;
      font-weight: 500;
  }
  
  .skill-items {
      color: var(--text-gray);
      font-size: 0.9rem;
      line-height: 1.6;
  }
  
  /* Timeline Styling */
  .timeline {
      position: relative;
      padding-left: 2rem;
  }
  
  .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 1px;
      background: rgba(255, 255, 255, 0.1);
  }
  
  .timeline-item {
      position: relative;
      padding-bottom: 3rem;
  }
  
  .timeline-dot {
      position: absolute;
      left: -2rem;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary-white);
      transform: translateX(-45%);
  }
  
  .timeline-content {
      position: relative;
      padding-left: 1rem;
  }
  
  .timeline-date {
      font-family: var(--font-secondary);
      font-size: 0.9rem;
      color: var(--text-gray);
      margin-bottom: 0.5rem;
  }
  
  .timeline-content h4 {
      font-family: var(--font-primary);
      font-size: 1.2rem;
      color: var(--primary-white);
      margin-bottom: 0.5rem;
  }
  
  .timeline-content p {
      color: var(--text-gray);
      font-size: 1rem;
  }
  
  /* Hover Effects */
  .timeline-item:hover .timeline-dot {
      transform: translateX(-45%) scale(1.2);
      transition: transform 0.3s ease;
  }
  
  .timeline-item:hover .timeline-content {
      transform: translateX(10px);
      transition: transform 0.3s ease;
  }
  
  /* Responsive Design */
  @media (max-width: 968px) {
      .info-container {
          grid-template-columns: 1fr;
          gap: 4rem;
      }
  
      .skills-list {
          grid-template-columns: 1fr;
      }
  }
  
  @media (max-width: 768px) {
      .skill-category {
          padding: 1rem;
      }
  
      .timeline {
          padding-left: 1.5rem;
      }
  
      .timeline-dot {
          left: -1.5rem;
          width: 10px;
          height: 10px;
      }
  }
  
  /* Updated Timeline Styling */
  .timeline-content h4 {
      font-family: var(--font-primary);
      font-size: 1.2rem;
      color: var(--primary-white);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .role-info {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
      margin-bottom: 0.8rem;
  }
  
  .role-title {
      font-family: var(--font-secondary);
      font-size: 1.2rem;
      color: var(--primary-white);
      font-weight: 500;
      margin: 0;
  }
  
  .company-link {
      font-family: var(--font-secondary);
      color: var(--text-gray);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 1rem;
      font-weight: 400;
      transition: all 0.3s ease;
  }
  
  .company-link:hover {
      color: var(--primary-white);
  }
  
  .link-icon {
      font-size: 0.8rem;
      opacity: 0.7;
  }
  
  .company-link:hover .link-icon {
      transform: translate(2px, -2px);
      opacity: 1;
  }
  
  .timeline-date {
      font-family: var(--font-secondary);
      font-size: 0.9rem;
      color: var(--text-gray);
      margin-bottom: 0.5rem;
  }
  
  .status {
      font-size: 0.8rem;
      padding: 0.2rem 0.8rem;
      border-radius: 3px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
  }
  
  .status.active {
      background: rgba(0, 255, 0, 0.1);
      color: #4CAF50;
      border: 1px solid rgba(76, 175, 80, 0.3);
  }
  
  .status.completed {
      background: rgba(158, 158, 158, 0.1);
      color: #9e9e9e;
      border: 1px solid rgba(158, 158, 158, 0.3);
  }
  
  /* Enhanced Timeline Item Hover */
  .timeline-item:hover .timeline-content {
      transform: translateX(10px);
      transition: transform 0.3s ease;
  }
  
  .timeline-item:hover .timeline-dot {
      transform: translateX(-45%) scale(1.2);
      transition: transform 0.3s ease;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
      .timeline-content h4 {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.3rem;
      }
  
      .status {
          font-size: 0.7rem;
          padding: 0.2rem 0.6rem;
      }
  }
  
  .timeline-item:first-child .timeline-dot {
      background: #4CAF50; /* Green dot for current position */
  }
  
  .timeline-item:first-child .timeline-content {
      border-left: 2px solid rgba(76, 175, 80, 0.3);
      margin-left: -2px;
      padding-left: calc(1rem + 2px);
  }
  
  /* Global Premium Effects */
  :root {
      /* Add premium shadows */
      --premium-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
      --hover-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
      /* Add subtle gradient */
      --gradient-bg: linear-gradient(45deg, #0a0a0a, #1a1a1a);
  }
  
  /* Smooth Scrolling */
  html {
      scroll-behavior: smooth;
  }
  
  /* Premium Navbar Effect */
  .navbar {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgba(10, 10, 10, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Section Transitions */
  .section {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s cubic-bezier(0.6, 0.2, 0.1, 1);
  }
  
  .section.visible {
      opacity: 1;
      transform: translateY(0);
  }
  
  /* Premium Card Effects */
  .skill-category {
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: var(--premium-shadow);
      transition: all 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
  }
  
  .skill-category:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: var(--hover-shadow);
      background: rgba(255, 255, 255, 0.05);
  }
  
  /* Timeline Premium Effects */
  .timeline-item {
      transition: all 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
  }
  
  .timeline-dot {
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
      transition: all 0.3s cubic-bezier(0.6, 0.2, 0.1, 1);
  }
  
  .timeline-item:hover .timeline-dot {
      box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.1);
  }
  
  /* Text Highlight Effects */
  .highlight {
      position: relative;
      display: inline-block;
  }
  
  .highlight::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--primary-white);
      transition: width 0.3s ease;
  }
  
  .highlight:hover::after {
      width: 100%;
  }
  
  /* Button Premium Effects */
  .btn {
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: var(--premium-shadow);
  }
  
  .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
  }
  
  .btn:hover::before {
      width: 300px;
      height: 300px;
  }
  
  /* Add this JavaScript for scroll animations */
  
  /* Projects Section Styling */
  .projects-section {
      padding: 3rem 0;
      background: linear-gradient(
          180deg,
          var(--primary-black) 0%,
          rgba(17, 17, 17, 0.98) 100%
      );
      position: relative;
  }
  
  .projects-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 255, 255, 0.1) 50%,
          transparent 100%
      );
  }
  
  .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
      margin-top: 4rem;
  }
  
  /* Project Card */
  .project-card {
      position: relative;
      padding: 2.5rem;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }
  
  .project-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
          90deg,
          transparent,
          rgba(var(--accent-rgb), 0.3),
          transparent
      );
  }
  
  /* Project Header */
  .project-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
  }
  
  .project-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(var(--accent-rgb), 0.1);
      border: 1px solid rgba(var(--accent-rgb), 0.2);
      border-radius: 20px;
      color: rgb(var(--accent-rgb));
      font-size: 0.9rem;
  }
  
  .project-badge svg {
      width: 16px;
      height: 16px;
  }
  
  .project-status {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
  }
  
  /* Project Content */
  .project-title {
      font-size: 1.5rem;
      color: var(--primary-white);
      margin-bottom: 1rem;
      font-weight: 600;
  }
  
  .project-description {
      color: var(--text-gray);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
  }
  
  /* Tech Stack */
  .project-tech-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 2rem;
  }
  
  .tech-item {
      padding: 0.4rem 0.8rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: var(--text-gray);
      font-size: 0.9rem;
      transition: all 0.3s ease;
  }
  
  /* Project Links */
  .project-links {
      display: flex;
      gap: 1rem;
      margin-top: auto;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .project-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.25rem;
      border-radius: 12px;
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
  }
  
  .project-link.github {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-gray);
  }
  
  .project-link.demo {
      background: rgba(var(--accent-rgb), 0.1);
      border: 1px solid rgba(var(--accent-rgb), 0.2);
      color: rgb(var(--accent-rgb));
  }
  
  /* Hover Effects */
  .project-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.1);
      box-shadow: 
          0 20px 40px rgba(0, 0, 0, 0.2),
          0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .tech-item:hover {
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-2px);
  }
  
  .project-link.github:hover {
      background: rgba(255, 255, 255, 0.05);
      transform: translateY(-2px);
  }
  
  .project-link.demo:hover {
      background: rgba(var(--accent-rgb), 0.15);
      transform: translateY(-2px);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
      .projects-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
      }
  }
  
  @media (max-width: 768px) {
      .projects-section {
          padding: 3.5rem 0;
      }

      .project-card {
          padding: 1.5rem;
      }

      .project-links {
          flex-direction: column;
      }

      .project-link {
          width: 100%;
          justify-content: center;
      }
      .projects-grid {
          grid-template-columns: 1fr;
          gap: 1.25rem;
      }
  }
  
  /* Global Section Styling */
  section {
      padding: 3rem 0;
      position: relative;
      background: linear-gradient(
          180deg,
          var(--primary-black) 0%,
          rgba(17, 17, 17, 0.98) 100%
      );
  }
  
  section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 255, 255, 0.1) 50%,
          transparent 100%
      );
  }
  
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
  }
  
  /* Section Headers */
  .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-white);
      text-align: center;
      margin-bottom: 1rem;
      font-family: var(--font-primary);
  }
  
  .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-gray);
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
      line-height: 1.6;
  }
  
  /* Grid Layouts */
  .certifications-grid,
  .achievements-grid,
  .projects-grid,
  .startup-cards,
  .research-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-top: 1.5rem;
  }
  
  /* Card Base Styles */
  .cert-card,
  .achievement-card,
  .project-card,
  .startup-card,
  .research-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 2.5rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }
  
  /* Card Hover Effects */
  .cert-card:hover,
  .achievement-card:hover,
  .project-card:hover,
  .startup-card:hover,
  .research-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.1);
      box-shadow: 
          0 20px 40px rgba(0, 0, 0, 0.2),
          0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
      .container {
          max-width: 900px;
      }
  }
  
  @media (max-width: 992px) {
      .certifications-grid,
      .achievements-grid,
      .projects-grid,
      .startup-cards,
      .research-grid {
          grid-template-columns: 1fr;
          gap: 2rem;
      }
  }
  
  @media (max-width: 768px) {
      section {
          padding: 3rem 0;
      }
  
      .container {
          padding: 0 1.5rem;
      }
  
      .section-title {
          font-size: 2rem;
      }
  
      .cert-card,
      .achievement-card,
      .project-card,
      .startup-card,
      .research-card {
          padding: 2rem;
      }
  }

  /* Additional mobile refinements */
  @media (max-width: 768px) {
      .hero {
          grid-template-columns: 1fr;
          padding: 2rem 1.25rem;
          gap: 1.25rem;
          margin-top: 4rem;
      }

      .hero-image-container {
          padding: 1rem;
      }

      .hero-quote {
          font-size: clamp(1.8rem, 5.5vw, 2.2rem);
          line-height: 1.35;
      }

      .section-subtitle {
          margin: 0 auto 2.5rem;
      }

      .projects-grid {
          grid-template-columns: 1fr;
          gap: 1.25rem;
      }

      .project-card {
          padding: 1.5rem;
      }

      .contact-wrapper {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          margin-top: 2rem;
      }

      .contact-info, .contact-form-wrapper {
          padding: 1.5rem;
      }
  }
  
  /* Section Spacing */
  section + section {
      margin-top: 0.5rem;
  }
  
  /* Content Alignment */
  .about-section .container,
  .certifications-section .container,
  .achievements-section .container,
  .projects-section .container,
  .startups-section .container,
  .research-section .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  /* Card Content Alignment */
  .card-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }
  
  /* Meta Information Styling */
  .meta-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Badge/Icon Container */
  .badge-container {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }
  
  /* Link Styling */
  .card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgb(var(--accent-rgb));
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
  }
  
  .card-link:hover {
      transform: translateX(4px);
  }
  
  /* Description Text */
  .description {
      color: var(--text-gray);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
  }
  
  /* Status Badges */
  .status-badge {
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
  }
  
  .status-badge.active {
      background: rgba(var(--accent-rgb), 0.1);
      color: rgb(var(--accent-rgb));
      border: 1px solid rgba(var(--accent-rgb), 0.2);
  }
  
  .status-badge.completed {
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Premium Hero Buttons */
  .hero-buttons {
      display: flex;
      gap: 1.5rem;
      margin-top: 3rem;
  }
  
  .download-cv, .view-projects {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.2rem 2.2rem;
      font-size: 1rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 14px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      letter-spacing: 0.5px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }
  
  /* Download CV Button */
  .download-cv {
      background: linear-gradient(
          135deg,
          rgba(var(--accent-rgb), 0.1) 0%,
          rgba(var(--accent-rgb), 0.15) 100%
      );
      border: 1px solid rgba(var(--accent-rgb), 0.2);
      color: rgb(var(--accent-rgb));
  }
  
  .download-cv:hover {
      transform: translateY(-2px);
      background: linear-gradient(
          135deg,
          rgba(var(--accent-rgb), 0.15) 0%,
          rgba(var(--accent-rgb), 0.2) 100%
      );
      border-color: rgba(var(--accent-rgb), 0.3);
      box-shadow: 
          0 8px 20px -6px rgba(var(--accent-rgb), 0.2),
          0 0 0 1px rgba(var(--accent-rgb), 0.15);
  }
  
  /* View Projects Button */
  .view-projects {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.9);
  }
  
  .view-projects:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
      box-shadow: 
          0 8px 20px -6px rgba(0, 0, 0, 0.2),
          0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  /* Premium Author Name */
  .quote-author {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-primary);
      font-size: 1.4rem;
      font-weight: 500;
      letter-spacing: 4px;
      color: var(--text-gray);
      margin-top: 2.5rem;
      padding-right: 5rem;
      position: relative;
      transition: all 0.3s ease;
      text-transform: uppercase;
  }
  
  .quote-author::before {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 4rem;
      height: 1px;
      background: linear-gradient(
          90deg,
          transparent,
          rgba(var(--accent-rgb), 0.5) 50%,
          rgba(var(--accent-rgb), 0.8)
      );
      transform: translateY(-50%);
      transition: width 0.3s ease;
  }
  
  .quote-author::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: linear-gradient(
          90deg,
          rgba(var(--accent-rgb), 0.8),
          rgba(var(--accent-rgb), 0.5) 50%,
          transparent
      );
      transition: width 0.3s ease;
  }
  
  .quote-author:hover {
      color: var(--primary-white);
      transform: translateX(10px);
  }
  
  .quote-author:hover::before {
      width: 5rem;
  }
  
  .quote-author:hover::after {
      width: calc(100% - 5rem);
  }
  
  /* Enhanced Contact Section */
  .contact-section {
      padding: 3rem 0;
      background: linear-gradient(
          180deg,
          var(--primary-black) 0%,
          rgba(17, 17, 17, 0.98) 100%
      );
  }
  
  .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4rem;
      margin-top: 4rem;
  }
  
  /* Contact Info Side */
  .contact-info {
      padding: 3rem;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }
  
  .contact-header h3 {
      font-size: 2rem;
      color: var(--primary-white);
      margin-bottom: 1rem;
      font-family: var(--font-primary);
  }
  
  .contact-header p {
      color: var(--text-gray);
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
  }
  
  /* Contact Form Side */
  .contact-form-wrapper {
      padding: 3rem;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }
  
  .form-group {
      margin-bottom: 2rem;
  }
  
  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: var(--primary-white);
      font-size: 1rem;
      transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: rgba(var(--accent-rgb), 0.5);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
  }
  
  /* Submit Button */
  .submit-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1.25rem 2rem;
      background: rgb(var(--accent-rgb));
      color: var(--primary-black);
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 
          0 8px 20px rgba(var(--accent-rgb), 0.2),
          0 0 0 1px rgba(var(--accent-rgb), 0.1);
  }
  
  .submit-btn svg {
      transition: transform 0.3s ease;
  }
  
  .submit-btn:hover svg {
      transform: translate(4px, -4px);
  }
  
  /* Premium Social Media Icons */
  .social-links {
      display: flex;
      gap: 1.25rem;
      margin-top: 2rem;
  }
  
  .social-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 14px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }
  
  .social-icon svg {
      width: 22px;
      height: 22px;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
  }
  
  /* Social Icons Hover Effects */
  .social-icon.linkedin {
      color: rgba(0, 119, 181, 0.8);
  }
  
  .social-icon.instagram {
      color: rgba(225, 48, 108, 0.8);
  }
  
  .social-icon.twitter {
      color: rgba(29, 161, 242, 0.8);
  }
  
  .social-icon::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1;
      transform: translate(-50%, -50%);
  }
  
  .social-icon:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.1);
      box-shadow: 
          0 8px 20px rgba(0, 0, 0, 0.2),
          0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  .social-icon:hover::before {
      width: 150%;
      height: 150%;
  }
  
  .social-icon.linkedin:hover {
      color: rgb(0, 119, 181);
      border-color: rgba(0, 119, 181, 0.3);
  }
  
  .social-icon.instagram:hover {
      color: rgb(225, 48, 108);
      border-color: rgba(225, 48, 108, 0.3);
  }
  
  .social-icon.twitter:hover {
      color: rgb(29, 161, 242);
      border-color: rgba(29, 161, 242, 0.3);
  }
  
  /* Premium Link Styling */
  a.card-link,
  a.cert-verify,
  a.project-link,
  a.startup-link,
  a.achievement-link,
  a.research-verify {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--accent);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.02);
  }
  
  a.card-link::after,
  a.cert-verify::after,
  a.project-link::after,
  a.startup-link::after,
  a.achievement-link::after,
  a.research-verify::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: all 0.3s ease;
      transform: translateX(-50%);
  }
  
  a.card-link:hover,
  a.cert-verify:hover,
  a.project-link:hover,
  a.startup-link:hover,
  a.achievement-link:hover,
  a.research-verify:hover {
      color: rgb(var(--accent-darker-rgb));
      transform: translateX(4px);
  }
  
  a.card-link:hover::after,
  a.cert-verify:hover::after,
  a.project-link:hover::after,
  a.startup-link:hover::after,
  a.achievement-link:hover::after,
  a.research-verify:hover::after {
      width: 100%;
  }
  
  /* Updated Author Name Styling */
  .quote-container {
      display: flex;
      flex-direction: column;
      align-items: flex-end; /* Right aligns the content */
  }
  
  .quote-author {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-secondary);
      font-size: 0.95rem;
      font-weight: 300;
      letter-spacing: 3px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 2rem;
      padding: 0.5rem 0;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-style: italic;
      text-transform: lowercase;
  }
  
  .quote-author span {
      margin: 0 0.25rem;
  }
  
  /* Capitalize first letters */
  .quote-author::first-letter,
  .quote-author span:first-child::first-letter,
  .quote-author span:last-child::first-letter {
      text-transform: uppercase;
  }
  
  .quote-author::before {
      content: '';
      position: absolute;
      right: -3rem;
      top: 50%;
      width: 2rem;
      height: 1px;
      background: linear-gradient(
          90deg,
          transparent,
          rgba(var(--accent-rgb), 0.3)
      );
      transform: translateY(-50%);
      transition: width 0.3s ease;
  }
  
  .quote-author:hover {
      color: rgba(255, 255, 255, 0.8);
      transform: translateX(-6px); /* Changed direction for right alignment */
  }
  
  /* Premium Email Link Styling */
  .contact-item a.contact-text {
      font-family: var(--font-secondary);
      font-size: 1.1rem;
      font-weight: 400;
      letter-spacing: 0.5px;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      position: relative;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 0.5rem 0;
      display: inline-block;
  }
  
  .contact-item a.contact-text::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: linear-gradient(
          90deg,
          rgb(var(--accent-rgb)) 0%,
          rgba(var(--accent-rgb), 0.5) 100%
      );
      transition: width 0.3s ease;
  }
  
  .contact-item a.contact-text::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
  }
  
  .contact-item a.contact-text:hover {
      color: rgb(var(--accent-rgb));
      transform: translateX(4px);
  }
  
  .contact-item a.contact-text:hover::before {
      width: 100%;
  }
  
  /* Enhanced Contact Item for Email */
  .contact-item {
      position: relative;
      overflow: hidden;
  }
  
  .contact-item:hover .contact-icon {
      background: rgba(var(--accent-rgb), 0.1);
      border-color: rgba(var(--accent-rgb), 0.2);
  }
  
  .contact-item:hover .contact-icon svg {
      color: rgb(var(--accent-rgb));
      transform: scale(1.1);
  }
  
  /* Update only the certification logo/image styling */
  .cert-badge {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      transition: all 0.3s ease;
      overflow: hidden; /* Added to contain the image */
  }
  
  .cert-logo {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Changed from contain to cover */
      transition: transform 0.3s ease;
  }
  
  .research-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
  }
  
  /* Achievement Image/Icon Container */
  .achievement-icon {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: all 0.3s ease;
  }
  
  .achievement-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
  }
  
  /* Startup Logo Container */
  .startup-logo {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: all 0.3s ease;
  }
  
  .startup-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
  }
  
  /* Research Badge Container */
  .research-badge {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: all 0.3s ease;
      margin-bottom: 1rem;
  }
  
  .research-content {
      flex: 1;
  }
  
  .research-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-white);
      margin-bottom: 0.5rem;
      font-family: var(--font-primary);
  }
  
  .research-issuer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
      flex-wrap: wrap;
      gap: 1rem;
  }
  
  .issuer-name {
      color: var(--text-gray);
      font-size: 0.95rem;
      font-weight: 500;
  }
  
  .research-date {
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.05);
      padding: 0.25rem 0.75rem;
      border-radius: 12px;
  }
  
  .research-description {
      color: var(--text-gray);
      line-height: 1.7;
      margin-bottom: 1rem;
      font-size: 0.95rem;
  }
  
  .research-meta {
      display: flex;
      justify-content: flex-start;
      align-items: center;
  }
  
  /* Hero Image Styling */
  .hero-image-container {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 2rem;
  }
  
  .hero-image {
      width: min(500px, 100%);
      height: auto;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .hero-image:hover {
      transform: translateY(-10px);
      box-shadow: 
          0 30px 50px rgba(0, 0, 0, 0.4),
          0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 1200px) {
      .hero-image {
          width: 450px;
          height: 450px;
      }
  }
  
  @media (max-width: 768px) {
      .hero-image {
          width: 350px; /* Increased from 320px */
          height: 350px; /* Increased from 320px */
      }
  }
  
  /* Footer Styling */
  .footer {
      padding: 6rem 0 2rem;
      background: linear-gradient(
          180deg,
          var(--primary-black) 0%,
          rgba(17, 17, 17, 0.98) 100%
      );
      border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-content {
      display: grid;
      grid-template-columns: 1.5fr 2fr;
      gap: 4rem;
      margin-bottom: 4rem;
  }
  
  /* Footer Brand */
  .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }
  
  .footer-logo {
      font-family: var(--font-primary);
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-white);
      text-decoration: none;
      letter-spacing: -0.5px;
  }
  
  .footer-logo .logo-dot {
      color: rgb(var(--accent-rgb));
  }
  
  .footer-description {
      color: var(--text-gray);
      font-size: 1rem;
      line-height: 1.6;
      max-width: 300px;
  }
  
  /* Footer Links */
  .footer-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem;
  }
  
  .footer-section h4 {
      color: var(--primary-white);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
  }
  
  .footer-section ul {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
  }
  
  .footer-section ul a {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.3s ease;
      position: relative;
      display: inline-block;
  }
  
  .footer-section ul a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: rgb(var(--accent-rgb));
      transition: width 0.3s ease;
  }
  
  .footer-section ul a:hover {
      color: var(--primary-white);
      transform: translateX(4px);
  }
  
  .footer-section ul a:hover::after {
      width: 100%;
  }
  
  /* Footer Bottom */
  .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1rem;
  }
  
  .copyright {
      color: var(--text-gray);
      font-size: 0.9rem;
      width: 100%;
      text-align: center;
  }
  
  .footer-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
  }
  
  .footer-meta a {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
  }
  
  .footer-meta .separator {
      color: rgba(255, 255, 255, 0.2);
  }
  
  .footer-meta a:hover {
      color: var(--primary-white);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
      .footer-content {
          grid-template-columns: 1fr;
          gap: 3rem;
      }
  
      .footer-links {
          grid-template-columns: repeat(2, 1fr);
      }
  }
  
  @media (max-width: 768px) {
      .footer {
          padding: 4rem 0 2rem;
      }
  
      .footer-bottom {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
      }
  
      .footer-links {
          gap: 2rem;
      }
  }
  
  /* Reset default browser styles */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
      min-height: 100vh;
      background-color: var(--primary-black);
  }
  
  /* Remove any unwanted borders */
  html, body {
      border: none;
      outline: none;
  }
  
  /* Ensure full-width layout */
  .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  @media (max-width: 768px) {
      .hero {
          grid-template-columns: 1fr;
          padding: 2rem 1.25rem;
          gap: 1.25rem;
          margin-top: 4rem;
      }

      .nav-content {
          padding: 0.9rem 1.25rem;
      }

      .logo a {
          font-size: 1.35rem;
      }

      .logo-dot {
          font-size: 1.8rem;
          transform: translateY(-1px);
      }

      .hero-content {
          text-align: center;
      }

      .quote-container {
          align-items: center;
          max-width: 100%;
          margin-top: 1rem;
      }

      .quote-author {
          text-align: center;
          padding-right: 0;
          margin-top: 1.25rem;
      }

      .quote-author::before,
      .quote-author::after {
          display: none;
      }

      .hero-buttons {
          flex-direction: column;
          align-items: stretch;
          gap: 1rem;
          margin-top: 2rem;
      }

      .download-cv,
      .view-projects {
          width: 100%;
          justify-content: center;
      }

      .hero-image-container {
          padding: 1rem;
      }

      .hero-image {
          width: min(350px, 100%);
          height: auto;
      }

      .contact-wrapper {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          margin-top: 2rem;
      }

      .contact-info,
      .contact-form-wrapper {
          padding: 1.5rem;
      }

      .container {
          padding: 0 1.5rem;
      }
  }