/**
 * Copyright 2025 DELL
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     https://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

/* --- rest of your CSS unchanged --- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-weight: 700;
    font-size: 28px;
    color: #b34700;
    user-select: none;
  }
  
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #663300;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
  }
  
  nav a:hover {
    color: #cc6600;
  }
  
  section {
    padding: 80px 50px;
    text-align: center;
    animation: fadeIn 1.5s ease;
    background-color: rgba(255, 255, 255, 0.85);
    margin: 40px auto;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }
  
  section:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero {
    color: #663300;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(204, 102, 0, 0.4);
    flex-shrink: 0;
  }
  
  .hero-text {
    max-width: 500px;
    text-align: left;
  }
  
  .hero-text h1 {
    font-weight: normal;
    font-size: 28px;
    margin-bottom: 5px;
    user-select: none;
  }
  
  .hero-text h1 span {
    font-weight: 700;
    display: block;
    font-size: 40px;
    margin-top: 6px;
    user-select: text;
  }
  
  .hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
    user-select: none;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .btn {
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    background-color: #cc6600;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    user-select: none;
  }
  .btn:hover {
    background-color: #ff9e00;
    transform: scale(1.05);
  }
  .btn svg {
    width: 18px;
    height: 18px;
    fill: white;
  }
  
  .skills-list span {
    display: inline-block;
    background: #ffd6a5;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
    color: #663300;
    cursor: default;
    user-select: none;
  }
  
  .skills-list span:hover {
    background: #ff9e00;
    color: white;
    transform: scale(1.1);
  }
  
  .projects .project-item {
    background: #fff3e0;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(204, 102, 0, 0.3);
    cursor: default;
  }
  
  .projects .project-item:hover {
    transform: scale(1.05);
  }
  
  .projects img {
    width: auto;
    max-width: 500px; /* Limit max width */
    max-height: 250px; /* Limit max height */
    border-radius: 10px;
    user-select: none;
    display: block;
    margin: 0 auto; 
  }
  
  .projects .project-item img {
    margin-bottom: 15px;
  }
  
  .education-item {
    background: #fff3e0;
    border-radius: 10px;
    padding: 20px;
    margin: 15px auto;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(204, 102, 0, 0.3);
    cursor: default;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .education-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
  }
  
  .education-item h3 {
    margin-bottom: 8px;
    color: #b34700;
    user-select: text;
  }
  
  .education-item span {
    font-weight: 600;
    color: #663300;
    display: block;
    margin-bottom: 6px;
    user-select: text;
  }

  /* Cursor change on hover for nav links */
nav a:hover {
  cursor: pointer;
  color: #ff6600; /* optional highlight */
}

/* Cursor change on hover for skills */
.skill-item:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: transform 0.3s;
}

/* Cursor change on hover for project cards */
.project-card:hover {
  cursor: pointer;
  transform: translateY(-5px);
  transition: transform 0.3s;
}

/* Cursor change on hover for contact form buttons */
.contact-form button:hover {
  cursor: pointer;
  background-color: #ff6600; /* optional effect */
  color: white;
}

/* Cursor change on hover for social links */
.social-links a:hover {
  cursor: pointer;
  color: #ff6600;
}

/* Cursor change for education section hover */
.education-item:hover {
  cursor: pointer;
  background-color: #f0f0f0; /* optional effect */
  transition: background-color 0.3s;
}

  
  /* ==== New Contact Me styles ==== */
  .contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff3e0;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(204, 102, 0, 0.25);
    transition: box-shadow 0.3s ease;
  }
  
  .contact form:hover {
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.45);
  }
  
  .contact form input,
  .contact form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    color: #663300;
    background-color: #fff8ef;
    box-shadow: inset 0 3px 6px rgba(255, 190, 100, 0.4);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    resize: none;
    user-select: text;
  }
  
  .contact form input:focus,
  .contact form textarea:focus {
    box-shadow: 0 0 10px 3px #ffb347;
    outline: none;
    transform: scale(1.03);
  }
  
  .contact form button {
    padding: 18px 0;
    background-color: #cc6600;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    user-select: none;
    box-shadow: 0 6px 15px rgba(204, 102, 0, 0.5);
  }
  
  .contact form button:hover {
    background-color: #ff9e00;
    transform: scale(1.07);
    box-shadow: 0 8px 20px rgba(255, 158, 0, 0.8);
  }


  
  footer {
    background-color: #b34700;
    color: white;
    text-align: center;
    padding: 18px 20px;
    font-weight: 600;
    user-select: none;
    margin-top: 40px;
    box-shadow: 0 -4px 12px rgba(204, 102, 0, 0.5);
  }
  