/* styles.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial Black', sans-serif;
    background-color: #f2f2f2;
  }
  
  header {
    text-align: center;
    padding: 50px 20px;
    background-color: #222;
    animation: fadeSlide 1.2s ease-out;
  }
  
  .main-heading {
    font-size: 48px;
    color: white;
    letter-spacing: 5px;
    font-weight: bold;
    text-transform: uppercase;
  }
  .sub-heading {
    font-size: 28px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
  }
  .about {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center; /* Adjusts cropping to show more of forehead */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
  }
  
  
  .about-text {
    max-width: 600px;
  }
  
  .about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
  }
  
  .skills-section {
    background-color: #e2e8f0; /* light gray-blue */
    padding: 60px 20px;
    text-align: center;
  }
  
  .skills-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #0f172a;
  }
  
  .skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .skills-list li {
    background-color: #0f172a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
  }
  
  .skills-list li:hover {
    transform: scale(1.05);
    background-color: #1e293b;
  }

  .projects-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .project-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
    text-align: left;
  }
  
  .project-card:hover {
    transform: translateY(-8px);
  }
  
  .project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .project-details {
    padding: 20px;
  }
  
  .project-details h3 {
    margin: 0 0 10px;
    font-size: 20px;
  }
  
  .project-details p {
    font-size: 14px;
    color: #555;
  }
  
  .project-link {
    display: inline-block;
    margin-top: 10px;
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .project-link:hover {
    text-decoration: underline;
  }

  .project-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  }
  
  .project-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .project-details {
    padding: 20px;
  }
  
  .project-details h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .project-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .project-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    border: 1px solid #007BFF;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }
  
  .project-link:hover {
    background: #007BFF;
    color: #fff;
  }
  
  .project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: 20px auto;
  }
  
  .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .project-details {
    padding: 20px;
  }
  
  .project-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .project-details p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 8px;
  }
  
  .project-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background-color: #1d72b8;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .project-link:hover {
    background-color: #155a96;
  }
  
  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }
  
  .project-wide-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin: 40px 0;
    overflow: hidden;
  }
  
  .plots-gallery {
    width: 75%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    padding: 16px;
    box-sizing: border-box;
  }
  
  .plots-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
  
  .project-info {
    width: 25%;
    padding: 20px;
    background-color: #f8f8f8;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .project-info h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
  }
  
  .project-info p {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
  }
  
  .project-info .project-link {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 14px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .project-info .project-link:hover {
    background-color: #005fa3;
  }
    
  footer {
    background-color: #222;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-size: 14px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 30px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
  }
  
  .footer-column h4 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #00bcd4;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #00bcd4;
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid #ffffff22;
    padding-top: 20px;
  }
  
  .social-icons {
    margin-bottom: 10px;
  }
  
  .social-icons a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #00bcd4;
  }
  
  .projects-banner {
    background-color: #e2e8f0; /* Match header/footer #0a192f*/
    color: white;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
  }
  
  .projects-banner h2 {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    color: #0f172a; /* #e2e8f0 , #00bcd4*/
  }

  .logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .logo-track {
    display: flex;
    width: calc(250px * 10); /* Adjust depending on number of images */
    animation: scroll 30s linear infinite;
  }
  
  .logo-track img {
    width: 200px;
    height: auto;
    margin: 0 30px;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .logo-track img:hover {
    transform: scale(1.1);
    filter: none;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .logo-track img {
    height: 60px; /* 👈 Adjust to make logos shorter */
    width: auto;
    margin: 0 30px;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 120px; /* 👈 Set a consistent banner height */
  }
  
  .footer-split-columns {
    display: flex;
    gap: 40px; /* spacing between the two columns */
  }
  
  .footer-split-columns ul {
    list-style: none;
    padding: 0;
  }
  
  .animated-name {
    display: inline-block;
    animation: fadeSlide 4s  ease-in-out infinite;
  }
  
  @keyframes fadeSlide {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    50% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(10px);
    }
  }
  
  .tech-ribbon {
    overflow: hidden;
    white-space: nowrap;
    background-color: #e2e8f0;
    padding: 6px 0;
  }
  
  .tech-track {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-tech 40s linear infinite;
  }
  
  .tech-track img {
    margin: 0 10px;
    vertical-align: middle;
    height: 22px;
  }
  
  @keyframes scroll-tech {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
  }
  