    /* Reset & Basic */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
  
      body {
        font-family: 'Segoe UI', sans-serif;
        background-color: #f4f4f4;
      }
  
      /* Navbar Styling */
      .navbar {
        width: 100%;
        background: linear-gradient(135deg, #4a00e0, #8e2de2);
        padding: 1rem 3rem;
        border-radius: 20 20 20px 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
      }
  
      .navbar-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
  
      .logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #fff;
        letter-spacing: 2px;
      }
  
      .menu {
        display: flex;
        gap: 1.5rem;
      }
  
      .menu a {
        color: #ffffffcc;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s;
        padding: 6px 12px;
        border-radius: 8px;
      }
  
      .menu a:hover {
        background: #ffffff22;
        color: #fff;
      }
  
      /* Hamburger */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
      }
  
      .hamburger div {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 5px;
      }
  
      @media (max-width: 768px) {
        .menu {
          display: none;
          flex-direction: column;
          background: #4a00e0;
          padding: 1rem;
          border-radius: 12px;
          position: absolute;
          top: 70px;
          right: 20px;
          width: 200px;
        }
  
        .menu.show {
          display: flex;
        }
  
        .hamburger {
          display: flex;
        }
      }
/* end navbar   */

  /* HERO SECTION STYLING */
  .hero {
    background-image: url('images/hero.jpg'); /* Replace with your background */
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); /* dark overlay */
    backdrop-filter: blur(6px); /* Adjust blur level */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
    animation: fadeInUp 1s ease forwards;
  }
  
  .profile-pic-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    animation: popIn 1s ease forwards;
  }
  
  .profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .profile-pic:hover {
    transform: scale(1.1);
  }
  
  .hero-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0;
    animation: fadeIn 1.2s ease forwards;
  }
  
  .hero-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ddd;
    margin-bottom: 30px;
    animation: fadeIn 1.4s ease forwards;
  }
  
  .hero-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.6s ease forwards;
  }
  
  .hero-icons a {
    font-size: 1.5rem;
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .hero-icons a:hover {
    background: #fff;
    color: #4a00e0;
    transform: scale(1.2);
  }
  
  /* ANIMATIONS */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes popIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* RESPONSIVE */
  @media(max-width: 600px) {
    .hero-name {
      font-size: 1.8rem;
    }
  
    .hero-title {
      font-size: 1rem;
    }
  
    .hero-icons a {
      font-size: 2.5rem;
      padding: 10px;

    }
  }

  /* <!-- HERO SECTION END --> */


  /* PROFILE SECTION */
.profile-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #ece9e6, #ffffff);
  }
  
  .profile-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    animation: fadeIn 1s ease-in-out;
  }
  
  .profile-image {
    flex: 1 1 300px;
    text-align: center;
  }
  
  .profile-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
  }
  
  .profile-image img:hover {
    transform: scale(1.05);
  }
  
  .profile-text {
    flex: 2 1 500px;
    padding: 20px;
    background: #ffffff;
    border-left: 5px solid #0077ff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    animation: slideIn 1s ease;
  }
  
  .profile-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0077ff;
  }
  
  .profile-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
  }
  
  /* ANIMATIONS */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .profile-container {
      flex-direction: column;
      text-align: center;
    }
  
    .profile-text {
      border-left: none;
      border-top: 5px solid #0077ff;
    }
  }
  
  /* <!-- PROFILE SECTION END --> */
  
  /* SECTION TITLE */
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 20px; /* 🔧 Was 60px */
    color: #0077ff;
    font-weight: 700;
    animation: fadeInDown 1s ease-in-out;
  }
  
  /* SKILLS SECTION */
  .skills-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #e0f7ff, #ffffff);
  }
  
  /* SKILLS GRID */
  .skills-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  /* SKILL CARD */
  .skill-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    border: #005bbb solid 2px;
  }
  
  .skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }
  
  .skill-card i {
    font-size: 2.5rem;
    color: #0077ff;
    margin-bottom: 15px;
  }
  
  .skill-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
  }
  
  /* ANIMATIONS */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .skills-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  }  

  /* SECTION STYLING tool */
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 30px;
    color: #005bbb;
    font-weight: 700;
    animation: fadeInDown 1s ease-in-out;
  }
  
  .tools-section {
    padding: 60px 20px;
  }
  
  .category-title {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    color: #0077ff;
    display: flex;
    align-items: left;
    gap: 10px;
    justify-content: center;
  }
  
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .tool-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    border: #005bbb solid 2px;
  }
  
  .tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background-color: #f0faff;
  }
  
  .tool-card i {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #0077ff;
  }
  
  /* ANIMATIONS */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
    
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .tools-grid {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
  }

  /* SECTION STYLING career */
  .career-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .career-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #005bbb;
    font-weight: 700;
  }
  
  .career-container {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  
  .career-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    border: #005bbb solid 2px;
  }
  
  .career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  }
  
  .card-header h3 {
    margin: 0 0 5px;
    color: #0077ff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .company {
    margin: 0 0 15px;
    color: #666;
    font-size: 0.95rem;
  }
  
  .card-body {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .card-body li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    color: #333;
  }
  
  .card-body li::before {
    content: '✔';
    color: #28a745;
    position: absolute;
    left: 0;
  }
  
  /* 🔁 Responsive Styles */
  @media (max-width: 768px) {
    .career-container {
      grid-template-columns: 1fr;
    }
  
    .career-title {
      font-size: 2rem;
    }
  
    .card-header h3 {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .career-title {
      font-size: 1.8rem;
    }
  
    .card-header h3 {
      font-size: 1rem;
    }
  }  
  
  /* SECTION STYLING education */
  .education-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .edu-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3a5ba0;
    margin-bottom: 40px;
  }
  
  .edu-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .edu-image img {
    width: 300px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .edu-image img:hover {
    transform: scale(1.05);
  }
  
  .edu-text {
    flex: 1;
    min-width: 250px;
  }
  
  .edu-text h3 {
    font-size: 1.8rem;
    color: #005bbb;
    margin-bottom: 10px;
  }
  
  .edu-duration {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
  }
  
  .edu-uni {
    font-size: 1.1rem;
    color: #333;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .edu-content {
      flex-direction: column;
      text-align: center;
    }
  
    .edu-text h3 {
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 480px) {
    .edu-title {
      font-size: 2rem;
    }
  
    .edu-text h3 {
      font-size: 1.4rem;
    }
  }  

  /* SECTION STYLING projects */
  .projects-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
  }
  
  .projects-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1b75bc;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .projects-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .project-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: #005bbb solid 2px;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  }
  
  .project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .project-content {
    padding: 20px;
  }
  
  .project-content h3 {
    font-size: 1rem;
    color: #1e3a8a;
    margin-bottom: 10px;
  }
  
  .project-date {
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
    margin-bottom: 10px;
  }
  
  .project-content p {
    font-size: 0.75rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Responsive tweaks */
  @media (max-width: 600px) {
    .project-card img {
      height: 180px;
    }
  
    .project-content h3 {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 400px) {
    .project-card img {
      height: 160px;
    }
  
    .project-content h3 {
      font-size: 1rem;
    }
  }  

  /* SECTION STYLING contact */
  .contact-section {
    max-width: 600px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #0077cc;
    margin-bottom: 30px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #0077cc;
    background: #fff;
    outline: none;
  }
  
  .contact-form button {
    padding: 15px;
    font-size: 1.1rem;
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #005fa3;
  }
  
  @media (max-width: 600px) {
    .section-title {
      font-size: 2rem;
    }
  }
  
  
  @media (max-width: 400px) {
    .section-title {
      font-size: 1.8rem;
    }
  
    .submit-btn {
      font-size: 0.9rem;
    }
  }  

  .main-footer {
    background-color: #1e1e2f;
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  }
  
  .footer-content {
    max-width: 900px;
    margin: auto;
  }
  
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00bcd4;
  }
  
  .footer-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #ccc;
  }
  
  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-socials a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: color 0.3s ease;
  }
  
  .footer-socials a:hover {
    color: #00bcd4;
  }
  
  @media (max-width: 600px) {
    .footer-logo {
      font-size: 1.5rem;
    }
    .footer-text {
      font-size: 0.8rem;
    }
    .footer-socials a {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 400px) {
    .footer-logo {
      font-size: 1.3rem;
    }
    .footer-text {
      font-size: 0.7rem;
    }
    .footer-socials a {
      font-size: 1rem;
    }
  }  

  .section-divider {
    width: 80%;
    height: 2px;
    margin: 50px auto;
    background: linear-gradient(to right, #00bcd4, #2196f3);
    border-radius: 5px;
    animation: fadeInDivider 1s ease forwards;
  }
  
  @keyframes fadeInDivider {
    from {
      width: 0;
      opacity: 0;
    }
    to {
      width: 80%;
      opacity: 1;
    }
  }
  