
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body, html {
      height: 100%;
      font-family: 'Segoe UI', sans-serif;
    }

    /* Background image */
    .hero {
      background-image: url('dhiva-krishna-X16zXcbxU4U-unsplash.jpg'); /* You can replace this */
      height: 100vh;
      background-size: cover;
      background-position: center;
      color: white;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
    }

    /* Navbar */
    nav {
      background: rgba(0, 0, 0, 0.6);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav ul li a {
      text-decoration: none;
      color: white;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #ffd700;
    }

    /* Hero text */
    .hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      background: rgba(0, 0, 0, 0.5);
      padding: 2rem;
    }

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

    .hero-text p {
      font-size: 1.2rem;
      max-width: 600px;
    }

    /* Cards section */
    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 3rem 2rem;
      background: #f5f5f5;
      gap: 2rem;
    }

    .card {
      background: white;
      width: 300px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s;
    }

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

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

    .card-body {
      padding: 1rem;
    }

    .card-body h3 {
      margin-bottom: 0.5rem;
    }

    .card-body p {
      font-size: 0.9rem;
      color: #555;
    }

  section.about img{
    width: 300px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
  }
  .bout{
   
    display: flex;
        flex-direction: row;
      align-items: center;
      gap: 2rem;
      padding: 3rem 2rem;
      background: #e0e0e0;
      text-align: center;
  }
 .card-image{
    width: 300px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
 }
   .card-image1{
    width: 300px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}
    .about-text{
      max-width: 300px;
    }
   .about-photo{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
   }
    
   
   .about-in-car-pic{
    text-align: center;

    width: 70vw;
    border: 2px solid ;
    border-radius: 2rem;
 
    
   }
   .About-in-second-car{
 
   display: flex;
   flex-direction: column; 
   justify-content: center;
   text-align: center;
   align-items: center;
  
   }
    footer {
    
    color: black;
    text-align: center;
    margin: 2rem;
    padding: 20px;  
    width: 100%;

  }


  