   /* RESET */

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Montserrat', sans-serif;
   }

   body {
       line-height: 1.6;
       background: #f9f9f9;
   }


   /* NAVBAR */

   .navbar {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 1rem 2rem;
       background: #333;
       color: #fff;
       position: sticky;
       top: 0;
       z-index: 100;
   }

   .navbar .logo {
       font-weight: 700;
       font-size: 1.5rem;
   }

   .navbar .navlist {
       display: flex;
       list-style: none;
       gap: 2rem;
   }

   .navlist li a {
       text-decoration: none;
       color: #fff;
       font-weight: 500;
   }

   .navbar .btn {
       background: #ff4c60;
       color: #fff;
       padding: 0.5rem 1rem;
       border-radius: 5px;
       text-decoration: none;
   }

   .hamburger {
       display: none;
       font-size: 1.5rem;
       cursor: pointer;
   }


   /* HERO SECTION */

   .hero-sec {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       align-items: center;
       padding: 4rem 2rem;
       background: s#e9e5e5;
   }

   .hero-text {
       flex: 1;
       min-width: 300px;
       padding: 1rem;
   }

   .hero-text h1 {
       font-size: 2.5rem;
       margin-bottom: 1rem;
   }

   .hero-text h2 {
       font-size: 1.5rem;
       margin-bottom: 1rem;
       color: #555;
   }

   .hero-text p {
       margin-bottom: 1.5rem;
   }

   .hero-img img {
       width: 300px;
       height: 300px;
       object-fit: cover;
       object-position: 50% 20%;
       border-radius: 50%;
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
   }


   /* ABOUT SECTION */

   .about-section {
       padding: 80px 10%;
       background: #ffffff;
   }

   .about-container {
       display: flex;
       align-items: center;
       gap: 60px;
       flex-wrap: wrap;
   }

   .about-img {
       flex: 1;
       text-align: center;
   }

   .about-img img {
       width: 300px;
       height: 300px;
       object-fit: cover;
       object-position: 50% 20%;
       border-radius: 50%;
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
   }

   .about-content {
       flex: 2;
   }

   .about-content h2 {
       font-size: 36px;
       margin-bottom: 20px;
       position: relative;
   }

   .about-content h2::after {
       content: "";
       width: 80px;
       height: 3px;
       background: #ff4d5a;
       position: absolute;
       left: 0;
       bottom: -6px;
   }

   .about-content p {
       font-size: 16px;
       line-height: 1.8;
       color: #333;
       margin-bottom: 12px;
   }

   .about-info {
       margin-top: 20px;
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 10px;
       font-size: 15px;
   }

   .about-info strong {
       color: #000;
   }

   .career-objective {
       margin-top: 25px;
   }

   .career-objective h3 {
       font-size: 20px;
       margin-bottom: 8px;
       color: #ff4d5a;
   }

   .download-btn {
       display: inline-block;
       margin-top: 25px;
       padding: 12px 28px;
       background: #ff4d5a;
       color: #fff;
       text-decoration: none;
       border-radius: 6px;
       font-weight: 600;
       transition: 0.3s;
   }

   .download-btn:hover {
       background: #000;
   }


   /* SKILLS SECTION */

   .skills-section {
       padding: 60px 10%;
       background: #f9f9f9;
   }

   .skills-section h2 {
       text-align: left;
       font-size: 32px;
       margin-bottom: 30px;
   }

   .skills-wrapper {
       display: flex;
       justify-content: space-between;
       gap: 40px;
       /* flex-wrap: wrap; */
   }

   .skills-box {
       width: 48%;
       background: #fff;
       padding: 25px;
       border-radius: 10px;
       box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   }

   .skills-box h3 {
       margin-bottom: 20px;
       font-size: 22px;
       border-bottom: 2px solid #ff4d5a;
       padding-bottom: 8px;
   }

   .skill {
       margin-bottom: 18px;
   }

   .skill p {
       font-weight: 600;
       margin-bottom: 6px;
   }

   .bar {
       width: 100%;
       height: 10px;
       background: #ddd;
       border-radius: 20px;
       overflow: hidden;
   }

   .bar span {
       height: 100%;
       background: #ff4d5a;
       display: block;
       border-radius: 20px;
   }


   /* PROJECTS SECTION */

   #projects h2 {
       padding: 4rem 2rem;
   }

   .projects-row {
       display: flex;
       gap: 1.5rem;
       flex-wrap: wrap;
       justify-content: space-between;
       padding: 2rem 8rem;
   }

   .project-card {
       flex: 1 1 calc(33.333% - 1rem);
       display: flex;
       flex-direction: column;
       background: #fff;
       border-radius: 10px;
       overflow: hidden;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
       margin-bottom: 1.5rem;
       transition: transform 0.3s;
   }

   .project-card:hover {
       transform: translateY(-5px);
   }

   .project-card img {
       width: 100%;
       height: 200px;
       object-fit: cover;
   }

   .project-info {
       padding: 1rem 1.2rem;
   }

   .project-info h3 {
       margin-bottom: 0.5rem;
   }

   .project-buttons {
       margin-top: 1rem;
       display: flex;
       gap: 1rem;
   }


   /* CONTACT SECTION */

   .contact-sec {
       padding: 4rem 2rem;
   }

   .contact-form {
       display: flex;
       flex-direction: column;
       gap: 1rem;
       max-width: 500px;
       margin: auto;
   }

   input,
   textarea {
       padding: 12px;
   }

   button {
       padding: 12px;
       font-size: 16px;
       cursor: pointer;
       border-radius: 5px;
   }


   /* FOOTER */

   footer {
       text-align: center;
       padding: 2rem;
       background: #333;
       color: #fff;
   }


   /* RESPONSIVE */

   /* Navbar toggle and layout for small screens */
   @media (max-width: 768px) {
       .navbar .navlist {
           display: none;
           flex-direction: column;
           gap: 1rem;
           background: #333;
           position: absolute;
           top: 70px;
           right: 0;
           width: 200px;
           padding: 1rem;
           border-radius: 5px;
       }

       .navlist.open {
           display: flex;
       }

       .hamburger {
           display: block;
       }

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

       .about-section {
           flex-direction: column;
           align-items: center;
           text-align: center;
       }

       .skills-box {
           width: 100%;
       }

       .project-card {
           flex: 1 1 100%;
       }

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

   /* Extra small mobile fixes */
   @media (max-width: 480px) {
       .project-buttons {
           flex-direction: column;
           gap: 0.5rem;
       }

       .project-buttons a {
           width: 100%;
           text-align: center;
       }

       .project-card img {
           height: 150px;
       }
   }

   /* Extra tiny mobile fixes (360px) */
   @media (max-width: 360px) {
       body {
           overflow-x: hidden;
       }

       .navbar {
           padding: 12px;
       }

       .navbar .logo {
           font-size: 18px;
       }

       .navlist {
           width: 100%;
           top: 60px;
       }

       .hero-sec {
           padding: 2rem 1rem;
           flex-direction: column;
           text-align: center;
       }

       .hero-text h1 {
           font-size: 22px;
       }

       .hero-text h2 {
           font-size: 15px;
       }

       .hero-text p {
           font-size: 13px;
       }

       .hero-img img {
           width: 180px;
           height: 180px;
       }

       .about-img img {
           width: 180px;
           height: 180px;
           object-position: center top;
       }

       .about-section {
           padding: 50px 15px;
       }

       .about-content h2 {
           font-size: 22px;
       }

       .about-content p {
           font-size: 13px;
       }

       .about-info {
           grid-template-columns: 1fr;
           font-size: 13px;
       }

       .skills-section {
           padding: 50px 15px;
       }

       .skills-wrapper {
           flex-direction: column;
           flex-wrap: wrap;
       }

       .skills-box {
           padding: 18px;
       }

       .skills-box h3 {
           font-size: 18px;
       }

       .projects-row {
           padding: 1rem;
       }

       #projects h2 {
           text-align: center;
           margin-left: 0;
       }

       .project-info {
           text-align: center;
       }

       .contact-sec {
           padding: 50px 15px;
       }

       .contact-form input,
       .contact-form textarea,
       .contact-form button {
           width: 100%;
           font-size: 14px;
       }

       footer p {
           font-size: 12px;
       }
   }







   /*  NEW ABOUT SECTION (NO IMAGE) */


   .about-no-image {
       display: flex;
       gap: 50px;
       align-items: flex-start;
   }

   .about-left,
   .about-right {
       flex: 1;
       background: #ffffff;
       padding: 30px;
       border-radius: 12px;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   }

   .about-left h2 {
       font-size: 30px;
       margin-bottom: 15px;
       position: relative;
   }

   .about-left h2::after {
       content: "";
       width: 70px;
       height: 3px;
       background: #ff4d5a;
       position: absolute;
       left: 0;
       bottom: -6px;
   }

   .about-left p {
       font-size: 16px;
       line-height: 1.8;
       margin-bottom: 12px;
       color: #333;
   }

   .about-right h3 {
       font-size: 22px;
       margin-bottom: 12px;
       color: #ff4d5a;
   }

   .about-info-new p {
       font-size: 15px;
       margin-bottom: 8px;
   }

   .about-right .career-objective p {
       font-size: 15px;
       line-height: 1.7;
   }

   .about-right .about-btn {
       margin-top: 20px;
   }

   /* ✅ MOBILE RESPONSIVE ABOUT */
   @media (max-width: 768px) {
       .about-no-image {
           flex-direction: column;
           text-align: center;
       }

       .about-left h2::after {
           left: 50%;
           transform: translateX(-50%);
       }
   }
