/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #0d1b2a, #1b263b, #415a77);
  color: #f0f4f8;
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 2rem;
}

/* === HEADER === */
header {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
}
h1,h2,h3,h4,h5,h6{
	font-family: serif;
}

a{
	text-decoration: none;
}
footer{
    position: relative;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
    background-color: #000;
    height: 60px;
    color: #fff;
}

footer > p{padding: 20px; color: #fff;}
#device-instruction {display: none}
@media all and (display-mode: standalone) {
    #installApp{
        display: none;
    }
}
#loader{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: #1e1e34;
}
.svg-container {
    margin:0 auto;
    background: #ffffff url("/public/icons/icon-144x144.png") no-repeat center center;
    background-size: cover;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    top: 45%;
    left: 0;
    right: 0;
    position: absolute; /* Fallback for iOS */
    animation: spin 1.5s linear infinite;
    /* ensures perfect rotation */
    transform-origin: 50% 50%;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}


iframe{
  margin:0 auto;
  width: 100%;
  height: 400px;
}

#homePage{
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 10px;
  color: #fff;
}
#heroSection{
    position: relative;
    top: 70px;
    background-size: cover;
    background-position: center;
    height: 350px;
    width: 100%;
    width: 100%;
    margin-bottom: 70px;
}
/* Style the select element */
select {
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; /* Remove default styling in Safari */
    -moz-appearance: none; /* Remove default styling in Firefox */
    background: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path fill="%23333" d="M7 10l5 5 5-5z"/></svg>') no-repeat right center;
    background-color: #fff;
    background-position: calc(100% - 0.5rem) center;
    background-size: 18px 18px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    width: 100%;
}
/* Add some basic styling for better appearance on all devices */
select:hover {
    border-color: #888;
}

select:focus {
    border-color: #555;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}


    .logo {
      font-size: 2.8rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(to right, #4cc9f0, #4361ee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.6rem;
    }
    .tagline {
      font-size: 1.15rem;
      opacity: 0.92;
      max-width: 650px;
      margin: 0 auto;
      font-weight: 400;
    }

    /* === MAIN CONTENT === */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
      margin-top: 60px;
    }

    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 2.2rem;
      margin: 3rem 0;
      margin-top: 80px;
    }

    .card {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(8px);
      border-radius: 18px;
      padding: 2.2rem;
      flex: 1;
      min-width: 280px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(67, 97, 238, 0.25);
    }

    .card.fleet {
      border-top: 0px solid #4361ee;
    }

    .card.speed {
      border-top: 0px solid #4cc9f0;
    }

    .card h2 {
      font-size: 1.65rem;
      margin-bottom: 1.1rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .card p {
      margin-bottom: 1.3rem;
      opacity: 0.9;
    }

    .features-list {
      list-style: none;
      margin: 1.3rem 0;
    }

    .features-list li {
      padding: 0.45rem 0;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .features-list li::before {
      content: "✓";
      color: #4cc9f0;
      font-weight: bold;
      font-size: 1.1rem;
      margin-top: 3px;
    }

    .btn {
      display: inline-block;
      background: linear-gradient(to right, #4361ee, #3a0ca3);
      color: white;
      padding: 0.85rem 2.1rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1rem;
      transition: opacity 0.3s, transform 0.2s;
      font-size: 1rem;
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      opacity: 0.92;
      transform: scale(1.03);
    }

    .card.speed .btn {
      background: linear-gradient(to right, #4cc9f0, #4361ee);
    }

    /* === FOOTER === */
    footer {
      text-align: center;
      padding: 2rem 1.5rem 1rem;
      opacity: 0.75;
      font-size: 0.95rem;
      font-weight: 400;
    }

    /* === RESPONSIVE === */
    @media (max-width: 768px) {
      .features {
        flex-direction: column;
      }
      .logo {
        font-size: 2.2rem;
      }
      .tagline {
        font-size: 1.05rem;
      }
    }

  /* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 1000;
    display: none; /* Hidden by default */
    background-color: #25D366; /* WhatsApp green */
    padding: 1px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    animation: float 3s ease-in-out infinite; /* Add animation */
}

.whatsapp-button svg {
    width: 80px;
    height: 80px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


#heroSection .info{
    position: relative;
    left: 0;
    width: 50%;
    color: #fff;
    padding: 20px;
    height: 100%;
    background-color: #000000c2;;
}

.heroSectionText {
  display: inline-block;
  margin-bottom: 50px;
}
#heroSection img{
	height: 22px;
	padding: 1px;
	margin: 5px;
	border-radius: 3px;
	margin-top: 2px;
}
#heroSection a{
   color: #fff;
}

#heroSection > h1{
  margin-left: 100px;
  text-align: left;
  font-weight: bold ;
}
#heroSection .info > p{
    font-size: 15px;
    padding: 10px;
    color: #fff;
    background-color: #0000008a;
    width: 81%;
    border-radius: 10px;
  }
#heroSection .links{
    display: flex;
    flex-direction: row;
    width: 90%;
    padding: 20px;
    margin: 0px 10px;
    margin-left: 80px;
    margin-top: 80px;
}

 #heroSection .alert-success {
    background-color: #08e780;
    border-color: none;
  }

   #heroSection .alert-warning {
    background-color: #636464;
    border-color: none;
  }

#heroSection .links button{
    padding: 10px;
    margin: 0 10px;
    width: 150px;
}

#heroSection #hero-text{
	line-height: 1em;
	letter-spacing: -0.2px;
	color: #fff;
	font-size: 26px;
	padding: 20px;
	background-color: #198754;
	width: 40%;
	height: 400px;
	margin-top: -35px;
}

#services{
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: 0 auto;
  min-height: 400px;
  background-color: #212529;
  color: #fff;
}

#recentWork{
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: 0 auto;
  min-height: 400px;
}

#services,#recentWork > h2{
  margin: 0px auto;
  width: 100%;
  text-align: center;
  padding: 5px;
  border-bottom: 2px solid #6c757;
}
.service{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
}
.recentWork{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.service-list h4{
  margin: 10px auto;
  width: 100%;
  text-align: center;
}

.recentWork-list h4{
  margin: 10px auto;
  width: 100%;
  text-align: center;
}

.service-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    width: 30%;
    margin: margin: 0 auto;
    margin: 0 auto;
    padding: 15px;
    text-align: left;
}

.recentWork-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    width: 32%;
    margin: 10px;
    padding: 10px;
    text-align: left;
}
.recentWork-list{
   display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    width: 30%;
    margin: 0 auto;
    padding: 15px;
    text-align: left;
}

.service img{
  width: 100%;
  margin-left: -27px;
}
.recentWork img{
  width: 100%;
  margin-left: -27px;
}
.service-list p{
  text-align: left;
}
.recentWork-list p{
  text-align: left;
}

#testimonials {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 70px;
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: scroll; 
}
#testimonials::-webkit-scrollbar {
   display: none; /* For Chrome, Safari, and Opera */
  }
#testimonials h3{
  padding: 10px;
  margin:10px;
  text-align: center;
}

.testimonials-list{
    border-radius: 10px;
    flex: none;
    width: 40%;
    height: fit-content;
    display: inline-block;
    border: 2px solid #ccc;
    margin: 10px;
    padding: 10px;
    color: #fff;
}

.contactForm{
    padding: 20px;
    width: 100%;
    margin: 20px 0px;
    color: #fff;
    margin-top: 100px;
    border-radius: 30px;
    margin-bottom: 100px;
}
.contactForm form{
  margin: 0 auto;
  width: 52%;
}
.contactForm p,{color: #fff;}
.contactForm a{text-decoration: none;color: #fff;}
#title{display: block;}
#aboutPage{max-width: 80%;}
#aboutPage p{text-align: left;font-size: 20px;}

@property --angle{
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

      .card::after,.card::before{
        content: '';
        position: absolute;
        height: 100%;
        width: 102%;
        background-image: conic-gradient(from var(--angle), red,blue);
        top:50%;
        left:50%;
        translate: -50% -50%;
        z-index: -1;
        padding: 5px;
        border-radius: 10px;
        animation: 3s spin linear infinite;
      }
      .card::before{filter: blur(3.5px); opacity: 1}

      @keyframes spin{
        from{
         --angle: 0deg;
        }

        to{
          --angle:360deg;
        }
      }
      
      #registrationForm{
        display: block;
        margin: 0 auto;
        width: 52%;
        margin-top: 8%;
        color: #fff;
        margin-bottom: 100px;
        background-color: #212529;
        padding: 20px;
        color: #fff;
      }


          .designProcess {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        h1 {
            text-align: center;
        }

        .step-title {
            font-weight: bold;
            color: #333;
            text-align: left;
        }

        footer{
          width: 100%;
          height: 60px;
          min-height: 50px;
          background: #000;
          color: #fff !important;
          text-align: center;
          position: fixed;
          bottom: 0;
          left: 0;

        }
        footer p{margin-top: -20px;}

        .alert-success {
          background-color: #08e780;
          border-color: none;
        }
#verification{
    margin: 0 auto;
    position: absolute;
    width: 90%;
    text-align: center;
    top: 30%;
    left: 5%;
    background-color: #fff;
    padding: 20px;
}
form{
  margin-bottom: 20px;
}
#verification form{
  margin: 0 auto; width: 60%;padding: 10px;color: #000;
}
#verification .alert{padding: 5px !important}
#verification .btn{
  margin: 0 auto;width: 100px;max-width: 100px;text-align: center;
}

   .youtube-wrapper{
    margin: 20px auto;
      width: 70%;
      height: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 61px;
      background-image: url("public/icons/background-cover.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
  }
        iframe {
      display: block; /* or inline-block */
      visibility: visible;
      opacity: 1;
      width: 100% !important;
    }
@media screen and (max-width: 1024px){
  #heroSection img{
    order: 1;
    width: 103%;
    margin-top: 42px;
    height: 230px;
  }

  .service,.recentWork{
    flex-wrap: wrap;
    
  }
  .service-list,.recentWork-list{
    width: 47%;
    padding: 2px;
  }

}
      
@media screen and (max-width: 767px){
  .youtube-wrapper{height: 175px;}
  #heroSection{
    position: relative;
    top: 50px;
    background-size: cover;
    background-position: bottom;
    height: 350px;
    width: 100%;
    width: 100vw;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
  }

  #heroSection .info {
    position: relative;
    left: 0;
    width: 100%;
    top: 0px;
    color: #fff;
    padding: 20px;
    height: 55%;
    background-color: #0000005e;
}

  #heroSection h1{
    font-family: sans-serif;
    font-style: bold;
    margin-left: -5px;
    text-align: left;
    position: relative;
    top: 0px;
    width: 100%;
    order: 1;
  }

    #heroSection .info > p {
      font-size: 18px;
      padding: 6px;
      color: #fff;
      background-color: #0000008a;
      width: 100%;
      border-radius: 10px;
  }

    #heroSection .links{
      width: 100%;
      padding: 10px;
      margin: 0px 2px;
      margin-left: 0px;
      margin-top: 110px;
    }

  .service,.recentWork{
    flex-wrap: wrap;
    
  }
  .service-list,.recentWork-list{
    width: 47%;
    padding: 2px;
  }


  /* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 11vh;
    height: 80px;
    width: 80px;
    color: #fff;
    right: 4px;
    z-index: 10;
}

.whatsapp-button svg {
    width: 72px;
    height: 66px;
    margin-top: 6px;
    margin-left: 3px;
}

.whatsapp-button:hover {
    transform: scale(1.3);
}
    .contactForm{
      width: 100%;
      margin-bottom: 200px;
    }

    .contactForm form{
      margin: 0 auto;
      width: 90%;

      }

    #verification{
      width: 90%;
      left: 20px;
      top: 15%;
    }
  #registrationForm {width: 100%;}
}

@media screen and (max-width: 500px){
  #verification{
    text-align: left;
  }
  #verification form{
    width: 90%;
  }
  p{
    color: #000;
  }
    .service,.recentWork{
    flex-wrap: wrap;
    
  }
  .service-list,.recentWork-list{
    width: 90%;
    padding: 10px;
  }
  .service img {
    margin: 0 auto;
    width: 100%;
    margin-left: -11px;
  }
  .recentWork img {
    margin: 0 auto;
    width: 100%;
    margin-left: -11px;
  }
  .service-list,.recentWork-list p {
            text-align: left;
        margin-left: 1px;
        padding: 10px;
  }
 #heroSection {
  position: relative;
        top: 10vh;
        background-size: cover;
        background-position: bottom;
        height: auto;
        max-height: 488px;
        width: 100%;
        width: 100vw;
        margin-bottom: 70px;
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 320px){
  #registrationForm{width: 100%;}
}