/* Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Manrope', sans-serif;
    background-color: #FFF8F3;
    color: #111;
    line-height: 1.6;
    padding: 0;
}
  
  img {
    max-width: 100%;
    display: block;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    font-weight: 600;
  }
  
  
  .navbar a {
    text-decoration: none;
    margin-left: 1.5rem;
    color: #111;
    transition: 0.3s;
  }
  
  .navbar a:hover {
    color: #FF8C42;
  }

  .logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
  }

  .container {
    max-width: 1100px;
    padding: 0 2rem;
    margin: 0 auto;
  }
  
  
  /* Hero */
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 4rem 0;
    gap: 3rem; /* This gives clean spacing between text & image */
  }
  
  .hero-text {
    flex: 1;
    min-width: 300px;
    max-width: none;
  }
  .hero-img {
    flex: 0 0 320px;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .hero-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  
  .hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-alt {
    padding: 5rem 0 6rem;
  }
  
  .hero-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }
  
  .hero-left {
    flex: 1;
    min-width: 280px;
  }
  
  .hero-left h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-left p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .hero-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
  }
  
  .hero-right img {
    max-width: 400px;
    height: auto;
    object-fit: contain;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-flex {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-left h1 {
      font-size: 2.4rem;
    }
  
    .hero-right img {
      max-width: 280px;
    }
  }
  
  
  .button {
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    border: 1.5px solid #111;
    background-color: transparent;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    color: #111;
    transition: 0.3s;
  }
  
  .button:hover {
    background-color: #FF8C42;
    color: white;
    border-color: #FF8C42;
    box-shadow: 0 0 12px rgba(255, 140, 66, 0.3);
  }

  .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF8C42;
    margin-top: 1rem;
    border-radius: 2px;
  }
  
  
  /* Brand Section */
  .brands {
    text-align: center;
    margin: 3rem 0;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: #555;
  }
  
  /* About Blurb */
  .about-blurb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5rem 0;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .about-text {
    max-width: 550px;
  }

  .about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
  }

  .about-icon img {
    max-width: 320px;
    height: auto;
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  
  .about-icon img:hover {
    transform: scale(1.08);
  }


  .theme-ai {
    background-color: #fff3e9; /* soft peach */
  }
  .theme-analytics {
    background-color: #e9f9f4; /* minty */
  }
  .theme-infra {
    background-color: #e9f2ff; /* light blue */
  }
  .theme-cloud {
    background-color: #f4f4f4; /* light gray */
  }
  .theme-creative {
    background-color: #fffbe8; /* warm yellow */
  }
  
  
  
  .tag {
    background-color: #f5d6c6;
    color: #111;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-size: 2.4rem; /* Was too small */
    font-weight: 800;
    line-height: 1.3;
    margin: 1rem 0 2rem;
  }
  
  
  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    font-weight: 600;
  }

  .stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
  }
  
  .stat-label {
    font-size: 1rem;
    color: #555;
  }

  .stat-number:hover {
    color: #FF8C42;
    transform: scale(1.05);
    transition: all 0.3s ease;
  }
  
  
  /* Skills Section */
  .skills-section {
    margin: 4rem 0;
  }
  
  .skills-header {
    text-align: left;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  
  .skills-header img {
    margin: 1rem auto;
    width: 120px;
  }
  
  /* Selected Works Section */
  .works {
    margin: 5rem 0;
  }
  
  .works-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .work-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }
  
  .work-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .work-info {
    padding: 1rem;
    text-align: center;
  }
  
  .work-info h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .work-info span {
    font-size: 0.9rem;
    color: #777;
  }
  
  /* Testimonials */
  .testimonials {
    background-color: #fff3eb;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 6rem 0;
    text-align: center;
  }
  
  .testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0 auto;
  }
  
  .testimonial {
    background-color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1.5px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    text-align: left;
  }
  
  .testimonial p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .testimonial span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
  }

  .testimonial + .testimonial {
    margin-top: 2rem;
  }
  
  .section {
    padding: 4rem 0;
    border-bottom: 1px solid #bbb;
  }
  .section:last-of-type {
    border-bottom: none;
  }
  
  .two-col {
    align-items: flex-start;
  }
  
  .about-intro-title {
    font-size: 2.8rem; /* bump this up as needed */
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  
  /* CTA */
  .cta {
    text-align: center;
    margin: 6rem 0 3rem;
  }
  
  .cta-img img {
    margin: 2rem auto;
    width: 120px;
  }

  .cta-footer {
    padding: 5rem 2rem;
    background-color: transparent;
  }
  
  .cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .cta-left {
    flex: 1;
    min-width: 300px;
  }
  
  .cta-left h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .cta-left .button {
    margin: 1rem 0;
    padding: 0.8rem 1.6rem;
    font-size: 1.1rem;
    border-radius: 999px;
  }
  
  .socials-links {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.8rem;
  }
  
  .socials-links a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: 0.3s;
  }
  
  .socials-links a:hover {
    color: #ff8c42;
  }
  
  .cta-right img {
    width: 300px;
    max-width: 100%;
  }
  
  .cta-img img {
    width: 240px;
    max-width: 100%;
    margin-top: 2rem;
  }
  
  
  .socials {
    font-size: 0.95rem;
    color: #555;
    margin-top: 1rem;
  }
  
  
  .socials {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
  }

  .section-title {
    position: relative;
    text-align: center;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF8C42;
    margin: 1rem auto 0 auto;
    border-radius: 2px;
  }
  
  
  .skills-section {
    margin: 6rem 0;
  }
  
  .skills-section .section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .skills-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
  }
  
  .skills-img {
    max-width: 240px;
    flex: 0 0 auto;
  }
  
  .skills-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    flex: 1;
  }
  
  .skill-card {
    background-color: #fff8f3;
    border: 2px solid #111;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    color: #111;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0 #111;
    margin-bottom: 1rem;
  }
  
  .skill-card:hover {
    background-color: #fff1e6;
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 #111;
  }
  
  .skill-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .skill-card span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .skill-card .end-icon {
    margin-left: auto;
  }

  .skill-card span img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
  }
  
  .skill-card span .end-icon {
    margin-left: auto;
    width: 20px;
  }
  
  
  
  .skill-card:nth-child(1) { animation-delay: 0.1s; }
  .skill-card:nth-child(2) { animation-delay: 0.2s; }
  .skill-card:nth-child(3) { animation-delay: 0.3s; }
  .skill-card:nth-child(4) { animation-delay: 0.4s; }
  .skill-card:nth-child(5) { animation-delay: 0.5s; }
  
  /* Sticky Image Styles */
  .skills-showcase {
    gap: 3rem;
    padding-top: 2rem;
    margin: 6rem 0;
  }

  .skills-header {
    text-align: left;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  
  .skills-sticky-img {
    flex: 0 0 280px;
    max-width: 280px;
  }

  .skills-layout {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
  }
  
  .skills-sticky-img img {
    width: 100%;
    object-fit: contain;
  }
  
  .skills-scroll {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .skills-scroll p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
  }

  .skills-scroll strong {
    font-size: 1.1rem;
  }

  .contact-section {
    margin: 4rem 0;
    padding: 2rem 0;
  }
  
  .contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  
  .contact-subtitle {
    font-size: 1rem;
    color: #444;
    margin-top: 1rem;
  }
  
  .contact-layout {
    align-items: center;
  }

  .contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .contact-img {
    margin-top: 2rem;
    max-width: 300px;
    height: auto;
    object-fit: contain;
  }
  
  
  .contact-info {
    flex: 1;
    min-width: 260px;
    padding-top: 1rem;
  }

  .contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
    color: #222;
  }

  .contact-info strong {
    font-weight: 700;
    color: #111;
  }
  
  .contact-info img {
    margin-top: 2.5rem;
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
  }
  
  
  .contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    background-color: #fff8f3; /* soft neutral like the rest of your site */
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #111;   
  }
  .contact-form textarea {
    resize: vertical;
    min-height: 120px; 
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #999;
    font-weight: 500;
  }

  .contact-section {
    background-color: #fff3eb; /* or any pastel */
    border-radius: 24px;
    padding: 4rem;
    margin: 6rem 0;
  }
  
  .button-dark {
    width: 100%;
    background-color: #111;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
  }
  
  
  .button-dark:hover {
    background-color: #FF8C42;
    color: #fff;
  }

  .about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
  }
  
  .about-img {
    flex: 1;
    min-width: 280px;
  }
  
  .about-img img {
    max-width: 360px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  @media (max-width: 768px) {
    .about-flex {
      flex-direction: column;
      text-align: center;
    }
    .about-img img {
      max-width: 240px;
      margin-bottom: 2rem;
    }
  }
  
  

  /* Animation Utility Classes */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInSection {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeInSection 0.6s ease forwards;
  }
  
  
  /* Logo Styling */

  .logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .logo:hover {
    color: #FF8C42;
    transform: scale(1.05);
  }

  .logo a:hover {
    color: #FF8C42;
  }
  
  
  @media (min-width: 1024px) {
    .about-intro-title {
      font-size: 3.2rem;
    }
  }
  

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .hero, .about-blurb {
      flex-direction: column;
      text-align: center;
    }
  
    .navbar {
      flex-direction: column;
      gap: 1rem;
    }
  
    .testimonial-list {
      padding: 0 1rem;
    }

    .about-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin: 4rem 0;
        text-align: left;
    }
      
    .about-flex img {
        max-width: 280px;
        height: auto;
        object-fit: contain;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .skills-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .skills-sticky-img {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }

    .contact-left {
        align-items: center;
        text-align: center;
    }
    
    .contact-img {
        max-width: 200px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-left h2 {
        font-size: 2.2rem;
    }

    .skills-sticky-img {
        max-width: 200px;
        margin-bottom: 2rem;
    }

    .skills-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .skills-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
      
  }
  