* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: black;
    background-color: white;
    font-family: 'Inter', sans-serif;
  }

 
  
  header {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 20px;
  }

  .lang{
    background-image: url("https://flagsapi.com/GB/flat/64.png");
    background-size: cover;
    background-position: center;
    
    
  }
  .opac{
    opacity: 0;
  }
  
  .hero {
    background: url('bckg9.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    background-position: 50% 70%;
    position: relative;
    
    
    max-height: 600px;
    
  }

  #hero-content{
    font-size: 30px;
    background-color: #1a1a1a;
    padding: 15px;
    width: 100%;
    color: white;
    text-align: center;
    
  }

  #all{
    width: 85%;
    margin: auto;
    margin-bottom: 0px;
  }

  

  section {
    padding: 60px 20px;
    margin: 0 auto;
  }

  #hero{
    height: 100vh;
  }

  #services {
    padding: 50px 20px;
    padding-bottom: 0px;
    color: white;
    
  }

  #services h2 {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 40px;
  }

  .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .card {
    text-align: center;
    color: black;
    position: relative;
    background: #ffcc00; 
    padding: 20px;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    height: 160px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
  }

  .card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.95rem;
    line-height: 1.4rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  
  .card:hover {
    height: 230px;
    background: #222;
    color: white;
  }

  .card:hover p {
    opacity: 1;
    max-height: 200px;
    margin-top: 10px;
  }
  .advantages{
    padding-left: 40px;
    padding-top: 0px;
  }

  


  .contact-info {
    margin-top: 20px;
  }

  h2{
    font-size: 2rem;
    color:#ffcc00;
    
  }
  .about{
    background: #1a1a1a;
    color: white;
    padding-left: 40px;
    padding-bottom: 0;
    
  }

  .about-text{
    max-width: 75%;
    text-align: justify;
    margin : auto;
    text-indent: 30px;
  }
  
  .about-wrapper {
    
    background: #1a1a1a;
    
  }
  #stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    padding: 25px;
    margin-top: 25px;
    text-align: center;
    
  }

  .fleet-gallery{
    display: flex;
    flex-direction: column;
    gap: 50px;
  
    
  }

  .fleet-gallery h3{
    color: #ffcc00;
    margin-bottom: 10px;


  }

  .fleet-item{
    display: flex;
    align-items: center;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    gap: 20px;
    
  }

  .fleet-item-ds{
    flex: 1;
    padding: 20px;
  }

  .under{
    text-align: justify;
    border-bottom: #ffcc00 solid 4px;
    margin-bottom: 20px;
    padding: 25px;
  }

  .fleet-item-img{
    flex: 0 0 auto;
    margin-right: 20px;
    
  }

  .fleet-item-img img{
    width: 600px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
  }

  .contact{
    padding: 40px;
    margin:auto;
    margin-bottom: 15px;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    border-radius: 25px;
    margin-top: 20px;
    width: 75%;
  }

  .contact-info{
    margin-top: 5px;
    display:flex;
    flex-direction: row;
    justify-content: space-around;
  }

  .info h3{
    color: #ffcc00;
    
  }


  .stat h3{ 
    font-family: "Permanent Marker";
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    color: #ffcc00;

  }

  .flip-cards {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    padding: 0 20px;
  }

  .flip-card {
    background: transparent;
    width: 250px;
    height: 200px;
    perspective: 1000px; 
  }

  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }

  .flip-card:hover .card-inner {
    transform: rotateY(180deg);
  }

  .card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .card-front {
    background: white; 
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .card-back {
    background: rgb(211, 211, 211); 
    color: black;
    transform: rotateY(180deg);
    font-size: 0.95rem;
    line-height: 1.4rem;
    text-align: center;
  }

  .comp-info{
    
    
    
    text-align: center;
    
    color: rgb(109, 109, 109);
    max-width: 50%;
    margin: auto;
    margin-top: 40px;
    border-top: 1px solid #333;
  }


  .comp-info h2{
    font-size: 1.5rem;
    color: #ffcc00;
    margin-top: 20px;
    margin-bottom: 20px;
    
  }
  .comp-wrapper{
    display: flex;
    justify-content: space-around;
    
  }
  .con{
    text-align: left;
  }

  .reg{
    text-align: left;
  }

  footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    
  }

  .footer-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 40px;
  }

  .credit {
    width: 100%;
    text-align: center;
    color: rgb(109, 109, 109);
    padding: 15px 0;
    
    margin-top: 30px;
  }

  .logo img{
      
      max-width: 500px;
    }
  

  @media screen and (max-width: 962px) {
    header nav{
      display: none;
    }

    header{
      justify-content: center;
    }
    .logo img{
      
      width: 100%;
      margin:auto;
    }

    #all{
      width: 100%;
    }

    #services{
      padding-bottom: 0px;
      padding-top: 25px;
    }

    #fleet{
      padding-top: 0px;
    }


    .service-cards, #stats {
      flex-direction: column;
      align-items: center;
      padding: 0px;
      gap : 20px;
      margin-bottom: 40px;
      
    }

    .card{
      max-width: 90%;
      height: auto;
    }

    .contact-info {
      flex-direction: column;
      gap: 20px;
    }

    .contact-info p{
      text-align: center;
    }
    
    .fleet-item{
      flex-direction: column;
      text-align: center;
    }

    .fleet-item-img{
      flex: 0 0 auto;
      margin-right: 0px;
      
    }

    .fleet-item-img img{
      width: 100%;
      height: auto;
      
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      
    }

    .under{
      display: none;
    }

    .fleet-item h3{
      text-align: left;
    }

    .flip-cards{
      gap: 15px;
      
    }

    .flip-card{
      text-align: center;
      width: 25%;
      min-width: 145px;
      height: 150px;
    }

    .advantages{
      padding-bottom: 0px;
    }

  


  }


  @media screen and (max-width: 1100px) {
    .contact-info {
        flex-direction: column;
        gap: 20px;
      }

      .contact-info p{
        text-align: center;
      }
  }

  @media screen and (max-width: 400px) {
    .flip-card{
      text-align: center;
      width: 90%;
      height: 150px;
    }

    .flip-cards{
      padding: 0px;
      margin-top: 20px;
    }
  }


  