body {
    margin: 0;
    background: #171717; 
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  
  }
  @font-face {
    font-family: thunderBold;
    src: url(fonts/Thunder-BoldLCItalic.ttf);
  }
  @font-face {
    font-family: montserratmedium;
    src: url(fonts/Montserrat-VariableFont_wght.ttf);
  }
  .logo{
    font-family:thunderBold ;
    font-size: 32px;
    color: #ffffff;
  }
.menu1 ul {
    display: flex;
    gap: 20px;
    list-style: none;
  }
  
  .menu1 li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-family: montserratmedium;
  }
  .headercontainer1{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding-right: 100px;
   padding-left: 100px;
    box-sizing: border-box;
    position: relative;
    z-index: 999;
    background-color: transparent;
  }
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }
  .circle {
    position: absolute;
    top: 0; 
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: #FFAD4F;
    filter: blur(400px);
    z-index: -1;
  }
  .car {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    margin-top: 102px;
    display: flex;             
    justify-content: space-between;
    align-items: flex-end;      
    width: 100%;
    max-width: 1500px;           
    margin-left: auto;
    margin-right: auto;
  }
  
  .text-box {
    max-width: 600px;
  }
  
  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: left;    
    font-family: montserratmedium;      
  }
  
  .hero-content p {
    font-size: 16px;
    line-height: 20px;
    font-family: montserratmedium;      
    margin: 0;
    text-align: left;            
  }
  
  .btn {
   color: #ffffff;
    font-family: montserratmedium; 
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
    border: 6px solid #FFAD4F;         
  }
  
  .btn:hover {
    background: #ffffff;
    color: #D85E16;
  }

  .cars-section {
      padding: 50px 80px;
    }

    .cars-section h2 {
      font-size: 32px;
      font-family: montserratmedium; 
      margin-bottom: 60px;
      color: white;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
      gap: 24px;
    }

    .card {
      background: #ffeae1;
      border: 2px solid #f4b081;
      border-radius: 12px;
      padding: 20px;
      height: 50vh;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .card img {
      width: 100%;
      height: auto;
      margin-bottom: 16px;
    }

    .card h3 {
      font-size: 18px;
      margin: 0 0 8px;
    }

    .author {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: #555;
      margin-bottom: 12px;
    }

    .author::before {
      content: "👤";
      margin-right: 6px;
    }

    .stars {
      color: #ff6600;
      margin-bottom: 12px;
    }

    .btn {
      align-self: flex-end;
      background: transparent;
      color: black;
      padding: 8px 16px;
      font-family: montserratmedium; 
      font-size: 14px;
      border-radius: 20px;
      font-weight: bold;
      text-decoration: none;
      border: 2px solid #FFAD4F;
      transition: 0.3s;
    }

    .btn:hover {
      background: #D85E16;
      color: white;
    }
    .about{
      background-image: url(Group\ 5.png);
      background-repeat: no-repeat;
      background-size: cover;
      width: 100%;
      height: 95vh;
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
    .about-cont{
      padding: 100px;
      display: flex;
      text-align: left;
      flex-direction: column;
    }
    .about-cont h1{
      font-family: thunderBold;
      font-size: 76px;
      font-weight: 600;
      color: #DA6825;
      margin-bottom: 10px;
    } 
    .about-cont p{
      font-family: montserratmedium; 
      font-size: 20px;
      color: #ffffff;
      margin-top: 0;
    }
    .hh{
      margin-top: 300px;
    }
    .footer {
      padding: 60px 10%;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 750px;
    }

    /* Left Section */
    .footer-left h2 {
      font-size: 64px;
      font-family: thunderBold;
      font-weight: 800px;
      font-style: italic;
      margin-bottom: 15px;
      color: #DA6825;
      
    }

    .footer-left p {
      font-size: 16px;
      line-height: 1.6;
      max-width: 400px;
      color: #ddd;
      font-family: montserratmedium; 
    }

    .footer-right{
      margin-top: 100px;
      float: right;
    }
    .footer-right h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      color: #ddd;
      font-family: montserratmedium; 
      
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
    }

    .social-icons img {
      width: 32px;
      height: 32px;
      object-fit: contain;
      cursor: pointer;
      transition: transform 0.3s ease;
    }


    .phone {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #ddd;
      font-size: 18px;
    }

    .phone img {
      width: 32px;
      height: 32px;
      object-fit: contain;
    }