* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}






.navbar {
    position: relative;
    display: flex;
    padding: 10px;
    background-color: white;
    justify-content: space-around;
    align-items: center;
    box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    /* -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
    /* -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
}

.nav-items>ul>li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

.nav-items>ul>li>a {
    color: black;
    text-decoration: none;
}

.nav-items>ul>li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: rgb(255, 204, 0);
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items>ul>li:hover::after {
    transform: scaleX(1);
}

.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    font-size: 32px;
}

.nav-button {
    background-color: rgb(255, 204, 0);
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: #141214;
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

#hamburger-menu,
#mobile-menu {
    display: none;
    color: rgb(255, 204, 0);
}

@media only screen and (max-width: 770px) {
    #mobile-menu {
        background-color: rgb(255, 204, 0);
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        z-index: 1000;
    }

    .mobile-nav-items>ul {
        padding: 0px;
    }

    .mobile-nav-items>ul>li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
    }

    .mobile-nav-items>ul>li>a {
        color: white;
        text-decoration: none;
    }

    .mobile-nav-items>ul>li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .mobile-nav-items>ul>li:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
    }

    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: #141214;
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-items>ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        color: white;
        cursor: pointer;
        font-size: 40px;
        position: absolute;
        top: 20px;
        right: 26px;
    }

    #hamburger-menu {
        display: block;
        color: rgb(255, 204, 0);
        cursor: pointer;
        font-size: 24px;
    }
}














  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
    border-radius: 8px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
  }
  
  /* Prevent scrolling when modal is open */
  .modal-open {
    overflow: hidden;
  }
  
  
  /* Form styling (adjust to your design) */
  form {
    display: grid;
    gap: 10px;
  }
  
  label {
    font-weight: bold;
  }
  
  input,
  button {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  button {
    background-color: rgb(255, 204, 0);
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: rgb(255, 204, 0);
  }








/* head part */

.head {
    margin-top: 8%;
    margin-left: 7%;
    width: 40%;
  }
  
  .head h1 {
    font-size: 60px;
  }
  
  .head1 {
    margin-left: 7%;
    width: 40%;
  }
  
  .headpic {
    margin-left: 50%;
    margin-top: -30%;
  }
  
  .headpic img {
    height: 80vh;
  }
  
  @media (max-width: 1024px) {
    .head,
    .head1 {
      width: 60%;
      margin-left: 5%;
    }
  
    .head h1 {
      font-size: 50px;
    }
  
    .headpic {
      margin-left: 0;
      margin-top: 5%;
    }
  
    .headpic img {
      height: 50vh;
    }
  }
  
  @media (max-width: 768px) {
    .head,
    .head1 {
      width: 80%;
      margin-left: 5%;
    }
  
    .head h1 {
      font-size: 40px;
    }
  
    .headpic {
      margin-left: 0;
      margin-top: 5%;
      text-align: center;
    }
  
    .headpic img {
      height: 40vh;
      width: 100%;
      object-fit: cover;
    }
  }
  
  @media (max-width: 480px) {
    .head,
    .head1 {
      width: 90%;
      margin-left: 5%;
    }
  
    .head h1 {
      font-size: 30px;
    }
  
    .headpic {
      margin-top: 10%;
    }
  
    .headpic img {
      height: 30vh;
      width: 100%;
      object-fit: cover;
    }
  }
  





/* champ */
  /* Base Styles */
.champ {
    margin-left: 32%;
    margin-top: 4%;
  }
  
  .champ h3 {
    font-size: 40px;
  }
  
  .champ1 {
    width: 55%;
    text-align: center;
    margin-left: 23%;
  }
  
  /* Tablet (max-width: 1024px) */
  @media (max-width: 1024px) {
    .champ {
      margin-left: 25%;
      margin-top: 5%;
    }
  
    .champ h3 {
      font-size: 35px;
    }
  
    .champ1 {
      width: 70%;
      margin-left: 15%;
    }
  }
  
  /* Mobile Landscape (max-width: 768px) */
  @media (max-width: 768px) {
    .champ {
      margin-left: 15%;
      margin-top: 6%;
    }
  
    .champ h3 {
      font-size: 30px;
    }
  
    .champ1 {
      width: 80%;
      margin-left: 10%;
    }
  }
  
  /* Mobile Portrait (max-width: 480px) */
  @media (max-width: 480px) {
    .champ {
      margin-left: 10%;
      margin-top: 8%;
      text-align: center;
    }
  
    .champ h3 {
      font-size: 25px;
    }
  
    .champ1 {
      width: 90%;
      margin-left: 5%;
    }
  }
  
























  /* Included color classes.. 
	.red 
	.blue 
	.yellow 
	.green
*/
@import url(https://fonts.googleapis.com/css?family=Raleway:400,700);
figure.snip1281 {
  font-family: 'Raleway', Arial, sans-serif;
  color: #fff;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 230px;
  max-width: 315px;
  max-height: 220px;
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}
figure.snip1281 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
figure.snip1281 img {
  opacity: 0.7;
  max-width: 100%;
}
figure.snip1281:after {
  background: #000000;
  width: 0;
  height: 6px;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
figure.snip1281 figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
figure.snip1281 h2,
figure.snip1281 span {
  margin: 0;
  width: 100%;
}
figure.snip1281 h2 {
  font-weight: 400;
  text-transform: uppercase;
}
figure.snip1281 span {
  color: #e6e6e6;
  font-weight: 700;
  text-transform: uppercase;
}
figure.snip1281 a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
figure.snip1281.blue:after {
  background-color: #2980b9;
}
figure.snip1281.blue span {
  color: #409ad5;
}
figure.snip1281.red:after {
  background-color: #c0392b;
}
figure.snip1281.red span {
  color: #d65548;
}
figure.snip1281.yellow:after {
  background-color: #f39c12;
}
figure.snip1281.yellow span {
  color: #f5b043;
}
figure.snip1281.green:after {
  background-color: #27ae60;
}
figure.snip1281.green span {
  color: #36d278;
}
figure.snip1281:hover img,
figure.snip1281.hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
figure.snip1281:hover:after,
figure.snip1281.hover:after {
  width: 100%;
}
/* Demo purposes only */
body {
  background-color: #212121;
}




.champpic{
    margin-left: 17%;
    margin-top: 2%;
    height: 20vh;
}

















/* sus */
.sus {
  margin-left: 8%;
  margin-top: 10%;
}

.sus img {
  height: 50vh;
}

.sus1 {
  width: 40%;
  margin-left: 48%;
  margin-top: -20%;
}

.sus2 {
  width: 40%;
  margin-left: 48%;
}

.sus2 h5 {
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .sus {
    margin-left: 5%;
    margin-top: 8%;
  }

  .sus1, .sus2 {
    width: 45%;
    margin-left: 45%;
  }

  .sus2 h5 {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .sus {
    margin-left: 3%;
    margin-top: 7%;
  }

  .sus img {
    height: 45vh;
  }

  .sus1, .sus2 {
    width: 50%;
    margin-left: 40%;
  }

  .sus2 h5 {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .sus {
    margin-left: 2%;
    margin-top: 6%;
  }

  .sus img {
    height: 40vh;
  }

  .sus1, .sus2 {
    width: 90%;
    margin-left: 5%;
    margin-top: 5%;
  }

  .sus2 h5 {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .sus {
    margin-left: 1%;
    margin-top: 5%;
  }

  .sus img {
    height: 35vh;
  }

  .sus1, .sus2 {
    width: 100%;
    margin-left: 0;
    margin-top: 10%;
  }

  .sus2 h5 {
    font-size: 13px;
  }
}









/* ride */

.ride {
  margin-top: 9%;
  margin-left: 8%;
}

.ride1 {
  width: 40%;
  margin-left: 8%;
}

.ride1 h5 {
  font-size: 18px;
}

.ride2 {
  margin-left: 49%;
  margin-top: -15%;
}

.ride2 img {
  height: 45vh;
  width: 80vh;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .ride {
    margin-top: 8%;
    margin-left: 5%;
  }

  .ride1 {
    width: 45%;
    margin-left: 5%;
  }

  .ride1 h5 {
    font-size: 16px;
  }

  .ride2 {
    margin-left: 50%;
    margin-top: -12%;
  }

  .ride2 img {
    height: 40vh;
    width: 70vh;
  }
}

@media (max-width: 992px) {
  .ride {
    margin-top: 7%;
    margin-left: 4%;
  }

  .ride1 {
    width: 50%;
    margin-left: 4%;
  }

  .ride1 h5 {
    font-size: 15px;
  }

  .ride2 {
    margin-left: 52%;
    margin-top: -10%;
  }

  .ride2 img {
    height: 35vh;
    width: 60vh;
  }
}

@media (max-width: 768px) {
  .ride {
    margin-top: 6%;
    margin-left: 3%;
  }

  .ride1 {
    width: 100%;
    margin-left: 0;
    margin-top: 5%;
  }

  .ride1 h5 {
    font-size: 14px;
  }

  .ride2 {
    margin-left: 0;
    margin-top: 5%;
  }

  .ride2 img {
    height: 30vh;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .ride {
    margin-top: 5%;
    margin-left: 2%;
  }

  .ride1 {
    width: 100%;
    margin-left: 0;
    margin-top: 10%;
  }

  .ride1 h5 {
    font-size: 13px;
  }

  .ride2 {
    margin-left: 0;
    margin-top: 10%;
  }

  .ride2 img {
    height: 25vh;
    width: 100%;
  }
}
























.company-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  margin-top: 5%;
}

.company-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: left;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  flex: 1;
  min-width: 300px;
  max-width: 32%;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.info-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 16px;
  margin-bottom: 15px;
}

.info-card a {
  font-size: 16px;
  color: #0073b1;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .info-card {
      max-width: 48%;
  }
}

@media (max-width: 768px) {
  .info-card {
      max-width: 100%;
  }

  .company-info h2 {
      text-align: center;
  }
}

















/* footer */


footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 150px;
  text-align: center;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.2em;
}

.footer-column a {
  display: block;
  margin: 10px 0;
  color: #fff;
  text-decoration: none;
}

.footer-column img {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-media a {
  display: inline-block;
  margin: 5px;
  width: 30px;
  height: 30px;
}

.footer-bottom {
  text-align: center;
  padding: 10px 0;
  background-color: #111;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-column {
      margin: 10px 0;
      text-align: center;
  }
}