/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', 'sans-serif';
    background-color: white;
    color: red;
    line-height: 1.6;
  }
  
  h1,h2, h3 {
    font-family: "Poller One", sans-serif;
    letter-spacing: 2px;
    
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header */
  header {
    background:red;
    padding: 5px;
    top: 0;
    z-index: 10;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: red;
   padding: 10px;
    
  }
  
  .logo {
    font-size: 1.8rem;
    color: white;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    justify-content: right;
    gap: 1.5rem;
  
  }
  
  .nav-links a {
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  
  .nav-links a:hover {
    color: white;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    text-align: center;
    background: white;
    padding: 1rem 0;
  }
  
  .hero h1 {
    font-family: "Poller One", sans-serif;
    font-size: 150px;
    letter-spacing: 2px;
    color: red;
    font-weight: bold;
  
    position: relative;
    z-index: 1;  /* text is behind */
    margin: 0;
  }
  
  .hero-image {
    width: 400px;
    height: auto;
    position: absolute;
    top: 50%;        /* move image downward */
    left: 50%;       /* center horizontally */
    transform: translate(-50%, -20%); /* adjust overlap */
    z-index: 2;      /* image in front */
  }
  
  
  /* About Section */
  .about {
    padding: 4rem 2rem;
    text-align: center;
    margin-top:250px ;
  }
  
  .about h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: red;

  }
  
  .about h2 span {
    color: #fff;
  }
  
  .about p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: red;
  }
  
  /* Skills Section */
  .skills {
    padding: 4rem 2rem;
    background:rgb(254, 240, 240);
    text-align: center; 
    color: red;
  
  }
  
  .skills h2 {
    color: red;
    margin-bottom: 2rem;
    font-size: 50px;
  }
  
  .skill-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    color: red;
    font-size: 50px;
  }
  
  .skill-icons div {
    text-align: center;
  }
  
  .skill-icons img {
    width: 80px;
    height: 80px;
    margin-bottom: 0.5rem;
   
    
  }
  .skill-title {
  font-family: sans-serif;
  font-size: 2rem;
  color: red;
  }
  
  
  /* Projects Section */
  .projects {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
  }
  
  .projects .vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 2rem;
    color: red;
    position: absolute;
    left: 1rem;
    top: 60%;
    transform: translateY(-50%) rotate(180deg);
    font-size: 50px;
  }
  
  .project-placeholder {
    border: 2px dashed red;
    padding: 4rem;
    margin: 0 auto;
    max-width: 500px;
    border-radius: 10px;
    color: #ccc;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
  }
  
  .testimonials h2 {
    color: red;
    margin-bottom: 2rem;
    font-size: 50px;
  }
  
  .testimonial-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
  }
  
  .testimonial {
    background: rgb(254, 240, 240) ;
    padding: 1.5rem;
    border-radius: 10px;
    color:red;
    font-style: italic;

  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 2rem;
    text-align: center;
    background-color: red;
  }
  
  .contact h2 {
    color: white;
    margin-bottom: 2rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
  }
  
  form input, form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    outline: none;
  }
  
  form button {
    padding: 0.8rem;
    border: none;
    background:  rgb(254, 240, 240) ;
    color: red;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background: red;
  }
  
  .contact-info {
    color: #ccc;
    font-size: 0.9rem;
  }
  
  /* Footer */
  footer {
    background: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
  }
  