:root {
  --tw-bg-opacity: 1;
  --primary-color: #ea580c;
  --bg-dark: #000000;
  --text-dark: #111315;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  --tw-ring-offset-shadow: 0 0 #0000;
}



@font-face {
  font-family: 'MyFont';
  src: url('fonts/Revolvingdor.otf') format('opentype');   <//to change font here>
}

.custom-font {
  font-family: 'MyFont', sans-serif;
  color: white; /* example styling */
}

body {
  font-family: "Inter", sans-serif;
}
.nav {
  background-color: black;
  /* position: fixed; */
}
.navList {
  margin-left: auto;
  padding-right: 5rem;
}

.navList a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s;
}

.navList a:hover {
  color: #f97316;
}
.main-text {
  letter-spacing: 1px;
}
.logo-text {
  position: relative;
  display: inline-block;
  z-index: 1;
  perspective: 1000px;
}
.main-text h1 {
  font-size: 3rem;
  font-weight: 700;
}
.adv-tech {
  background: linear-gradient(45deg, #f97316, #c2410c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1.3;
  padding-bottom: 4px;
}
#home {
  padding: 6rem 30px 2rem 30px;
  min-height: 100vh;
}
section:target {
  scroll-margin-top: 80px;
}
.getStarted-btn {
  background: linear-gradient(45deg, #f97316, #c2410c);
  color: white;
  border: none;
}
.learnMore-btn {
  border: 1.2px solid #f97316;
  background: white;
  color: #1f2937;
}
.learnMore-btn:hover {
  color: #c2410c;
}
.main-content {
  font-size: 1.35rem;
  line-height: 2rem;
  color: #636363;
}
.logo-test {
  position: absolute;
  top: 12%;
  left: 12%;
  transform: translate(-50%, -50%);
  animation: rotate 8s linear infinite;
  opacity: 0.15;
  z-index: 0;
  transform: translate(-50%, -50%);
  animation: rotate3d 10s linear infinite;
  transform-style: preserve-3d;
}

@keyframes rotate3d {
  0% {
    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg)
      rotateZ(360deg);
  }
}
.main-logo {
  width: 100%;
}
#services {
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  padding: 50px 30px;
  text-align: center;
}

#services h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

#services .subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card-container .card {
  background-color: black;
  border-radius: 12px;
  padding: 20px;
  width: 350px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s;
  z-index: 1;
}

.card-container .card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.card-container .icon {
  width: 40px;
  height: 40px;
  background: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card-container .icon img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  /* margin-top: 3px;
  margin-left: 1px; */
}

.card-container .card h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: white;
}

.card-container .card p {
  font-size: 0.95rem;
  color: #94a3b8;
}

.why-choose-us {
  padding: 60px 20px;
  background: #fff;
}
#about {
  padding: 60px 30px;
}

.why-mission-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.why-left {
  flex: 1;
  min-width: 300px;
}

.why-left h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.why-left p {
  color: var(--text-muted);
  margin-bottom: 25px;
}
.why-left-main p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.why-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.why-point .icon {
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 20px;
  flex-shrink: 0;
}

.why-point h4 {
  margin: 0;
  font-size: 20px;
  color: var(--text-dark);
}

.why-point p {
  margin: 5px 0 0;
  color: var(--text-muted);
}

.mission-box {
  position: relative;
  flex: 1;
  min-width: 300px;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.mission-box h3 {
  text-align: center;
  margin-bottom: 15px;
}

.mission-box p {
  text-align: center;
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 30px;
}

.stats h4 {
  color: var(--primary-color);
  font-size: 28px;
  margin: 0;
}

.stats p {
  margin: 5px 0 0;
  color: #cbd5e1;
}

#contact {
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
#contact h2 {
  font-size: 2rem;
  margin: 10px 10px;
  color: white;
  text-align: center;
}
#contact .subtitle {
  color: #cbd5e1;
  text-align: center;
}
.form-control {
  background: rgb(31 41 55 / var(--tw-bg-opacity, 1)) !important;
  border: none !important;
  padding: 12px 2px !important;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1)) !important;
}
.send-msg-btn {
  width: 100%;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
}
.send-msg-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  z-index: 10;
}
.form-label {
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.form-control::placeholder {
  color: rgb(209 213 219 / var(--tw-text-opacity, 1)) !important;
}
#contact input:focus,
#contact textarea:focus {
  border-color: #ffffff; /* White border on focus */
  box-shadow: 0 0 0 1px rgb(243, 241, 241); /* Optional white glow */
  outline: none;
}

@media (max-width: 768px) {
  .navList {
    display: none;
  }
  .menubars {
    margin-left: auto;
  }

  .mobile-nav.show {
    display: flex;
  }
  .mobile-nav {
    /* margin-left: auto; */
    background-color: #000000;
    padding-right: 5rem;
  }

  .mobile-nav a {
    margin-left: 30px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
  }

  .mobile-nav a:hover {
    color: #f97316;
  }
}
.mobile-nav {
  display: none;
  flex-direction: column;
}

.mobile-nav a {
  margin-bottom: 10px;
}
.contact-info {
  background-color: #000000;
  padding: 30px 30px;
}
.contact-info h3 {
  color: #fff;
}
/* .contact-info p {
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
} */
.contact-info a {
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  text-decoration: none;
}
.contact-info h5 {
  color: #f97316;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a:hover {
  color: #f97316;
}
.copy-right,
.contact-info p,
.fa-facebook,
.fa-twitter,
.fa-linkedin {
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.fa-brands {
  width: 50px;
  height: 50px;
}
.contact-container,
.row {
  margin-right: 0px !important;
}

@media (max-width: 400px) {
  #about {
    padding: 60px 12px;
  }
  .main-text h1 {
    font-size: 2rem;
  }
  #home {
    padding: 2rem 30px 2rem 30px;
  }
  .main-logo {
    display: none;
  }
}

