::-webkit-scrollbar{
    width: 0;
    height: 0;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    scroll-padding-top: 3rem;
}
:root {
    --main-color: #ff9f0d;
    --text-color: #ffffffea;
    --second-color: #9e9e9e;
    --bg-color: #111111;

    --big-font: 10.5rem;
    --h2-font: 2.1rem;
    --p-font: 1.2rem;

    --width: 100px;
    --height: 50px;
    --quantity: 10;
}
html::after{
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    pointer-events: none;
    background-image: url(/static/media/canvas.png);
    background-position: center;
    background-size: 100vw;
}
body{
    position: relative;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: Poppins;
    font-size: 12px;
}
body::-webkit-scrollbar {
    display: none;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

/* ------------ Preloader section ------------------- */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.Logo {
  width: 120px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid var(--second-color);
  border-top: 5px solid var(--main-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ------------------- Header section --------------- */
nav.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
}
.logo .btn {
  border: 2px solid var(--main-color);
  gap: 0.5rem;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.logo .btn:hover {
    background: var(--second-color);
}

.page1-hero {
  position: relative;
  text-align: center;
  padding-top: 7rem;
  background-color: var(--bg-color);
  overflow: hidden;
}

.hero-image img {
  width: 600px;
  height: auto;
  z-index: 0;
  position: relative;
  bottom: 4.5rem;
  animation: pulse-grow 2s infinite alternate;
  filter: drop-shadow(0 0 10px rgba(255, 159, 13, 0.5)) drop-shadow(0 0 20px rgba(255, 159, 13, 0.3));
}
@keyframes pulse-grow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 159, 13, 0.5)) drop-shadow(0 0 10px rgba(255, 159, 13, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 159, 13, 0.5)) drop-shadow(0 0 30px rgba(255, 159, 13, 0.3));
    transform: scale(1.05);
  }
}
.hero-title {
  font-size: var(--big-font);
  font-weight: 900;
  letter-spacing: -5px;
  margin: -3rem 0 0;
  color: var(--text-color);
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse-text 2s infinite alternate;
  text-shadow: 0 0 5px rgba(245, 242, 239, 0.4), 
              0 0 10px rgba(245, 242, 239, 0.3),
              0 0 15px rgba(245, 242, 239, 0.2)
              ;
  opacity: 0.8;
}
@keyframes pulse-text {
  from {
    text-shadow: 0 0 5px rgba(245, 242, 239, 0.4), 
                0 0 10px rgba(245, 242, 239, 0.3),
                0 0 15px rgba(245, 242, 239, 0.2);
  }
  to {
    text-shadow: 0 0 10px rgba(245, 242, 239, 0.1), 
                0 0 20px rgba(245, 242, 239, 0.2),
  }
}
.left-set, .right-set{
  text-align: left;
  position: absolute;
  width: 450px;
  bottom: 25rem;
  gap: 0.5rem;
}

.left-set {
  left: 2rem;
}
.left-set p {
  font-size: var(--h2-font);
}
.right-set {
  right: 2rem;
  font-size: var(--p-font);
}
.right-set p {
  font-size: var(--p-font);
  color: var(--second-color);
  margin-bottom: 10px;
}
.button {
      display: inline-flex;
      align-items: center;
      padding: 10px 15px;
      text-decoration: none;
      background-color: var(--main-color);
      border-radius: 20px;
      color: #000;
      transition: background-color 0.3s;
    }
.run {
  background-color: var(--second-color);
}
.button .icon {
      margin-right: 8px;
      border-radius: 50%;
      background-color: var(--text-color);
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
.run .icon {
  background-color: var(--main-color);
}
.button:hover {
      background-color: var(--second-color); /* Change background on hover */
      color: var(--bg-color); /* Ensure text remains readable */
    }
.run:hover {
  background: var(--text-color);
}
.button .text {
      transition: color 0.3s;
    }

.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    position: absolute;
    bottom: 1rem;
    border: 1px solid var(--other-color);
    mask-image: linear-gradient(
        to right, transparent, 
        #000 10% 90%, 
        transparent);
    -webkit-mask-image: linear-gradient(
        to right, transparent, 
        #000 10% 90%, 
        transparent);
  }
  
  .slider .list {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: scroll 30s linear infinite;
  }
  
  .slider .item {
    flex: 0 0 var(--width);
    height: var(--height);
    transition: filter 0.5s;
  }
  
  .slider .item i {
    color: var(--second-color);
    font-size: 2.5rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1 * var(--width) * var(--quantity)));
    }
  }
  .slider:hover .list {
    animation-play-state: paused !important;
    filter: grayscale(1);
  }
  .slider .item:hover i {
    filter: grayscale(0);
  }


.intro-section {
  position: relative;
  left: 30%;
  text-align: left;
  padding: 2rem 2rem;
  max-width: 900px;
}

.intro-text h2 {
  font-size: 3.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.intro-text p {
  font-size: var(--p-font);
  color: var(--second-color);
  margin-bottom: 2rem;
}

/* ----------------  slider Images --------------- */

.image-gallery {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--bg-color);
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 10s linear infinite; /* 20 slides x 2.8s */
  will-change: transform;
}

.image-gallery img {
  width: 424px;
  min-width: 424px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  box-shadow: 0 0 15px rgba(255, 159, 13, 0.5);
  transform: scale(1.05);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* -------------solutions section ----------------------- */

.solutions-section {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
}
.solutions-section .text {
  position: relative;
  text-align: left;
  max-width: 650px;
  gap: 1rem;
  margin-bottom: 2rem;
}
.solutions-section .text h2 {
  color: var(--text-color);
  font-size: 3.7rem;
  margin-bottom: 1rem;
}

.solutions-section .text p {
  font-size: var(--p-font);
  color: var(--second-color);
}

.solution-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  max-width: 300px;
  height: 300px;
  text-align: left;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card .bottom {
  position: relative;
}
.card h3 {
  color: var(--main-color);
  font-size: 2.3rem;
  margin-bottom: 2.8rem;
}

.card h4 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

.card p {
  font-size: 1.1rem;
  color: var(--second-color);
}

/* ---------------------------------- FAQ's and Questions ----------------------------------------- */
.faq-section {
  padding: 4rem 2rem;
  max-width: 100%;
  margin: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.faq-section p {
  color: var(--second-color);
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.faq-item {
  border: 1px solid var(--main-color);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  transform: scale(1.01);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  padding: 0 1.5rem;
  font-size: 1.3rem;
  color: var(--second-color);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 1rem 1.5rem;
}

.faq-question .icon {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--main-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  content: "-";
  transform: rotate(45deg);
}


/* ---------------------------------- Get Started ------------------------------------------------- */
.awards-section {
  background: var(--bg-color);
  text-align: center;
  padding: 4rem 2rem;
}

.awards-section h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.awards-section p {
  font-size: var(--p-font);
  color: var(--second-color);
  margin-bottom: 2rem;
}

.award-badge {
  position: relative;
  display: inline-block;
  right: 20%;
}
.award-badge img {
  width: 660px;
  height: auto;
}
.awards-section .btn {
  position: absolute;
  right: 40%;
  bottom: 18%;
  color: var(--main-color);
  font-weight: bold;
  font-size: 1rem;
  border: 1px solid var(--main-color);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  animation: heartbeat 1.8s infinite;
  transition: all 0.3s ease;
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

.awards-section .btn:hover {
  background: var(--main-color);
  color: var(--bg-color);
}
.awards-section .btn:hover i {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* ----------- Footer ----------------------- */
.footer {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 3rem 2rem;
  font-size: var(--p-font);
  border-top: 1px solid var(--main-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 2rem;
  gap: 2rem;
}

.footer-left h3 {
  margin: 0;
  font-size: var(--h2-font);
  color: var(--main-color);
}

.footer-left p {
  margin-top: 0.5rem;
  color: var(--second-color);
  max-width: 300px;
}

.footer-left img {
  margin-top: 1rem;
  width: 120px;
  height: auto;
}

.footer-middle ul,
.footer-right ul {
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-middle ul li,
.footer-right ul li {
  margin-bottom: 1.3rem;
  gap: 0.5rem;
}

.footer-middle ul li a,
.footer-right ul li a {
  color: var(--second-color);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-middle ul li a i {
  color: var(--main-color);
  font-size: 1.2rem;
}

.footer-middle ul li a:hover,
.footer-right ul li a:hover {
  color: var(--main-color);
}
.footer-middle ul li a:hover i {
  transform: rotateX(180deg);
  transition: transform 0.8s ease;
}

.footer-bottom {
  text-align: center;
  color: var(--second-color);
  border-top: 1px solid var(--main-color);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.footer-bottom p a {
  color: var(--main-color);
  font-weight: bold;
}

/* ---------- ===Responsive Media Query=== ---------- */
@media (max-width: 1219px) {
  .left-set, .right-set {
    width: 200px;
    bottom: 20rem;
  }
  .right-set p {
    font-size: 0.9rem;
  }
  .left-set p {
    font-size: 1.6rem;
  }
  .hero-image img {
    width: 600px;
    bottom: 3.5rem;
  }
  .hero-title {
    font-size: 7rem;
  }
  .slider .list {
    margin-top: 1rem;
  }
  .intro-section {
    left: 2%;
  }
  .award-badge img {
    width: 620px;
  }
  .awards-section .btn {
    right: 28%;
    bottom: 16%;
  }
}

@media (max-width: 768px) {
  nav.navbar {
    flex-direction: column;
    padding: 1rem;
  } 
  .logo {
    top: 50%;
    left: 50%;
  }
  .hero-image img {
    width: 500px;
  }
  .hero-title {
    font-size: 5rem;
    bottom: 90px;
  }
  .left-set, .right-set {
    position: absolute;
    width: 200px;
    padding: 0.5rem;
    text-align: left;
  }
  .intro-section {
    left: 0;
    padding: 2rem 1rem;
  }
  .solutions-section .text h2 {
    font-size: 2.2rem;
  }
  .awards-section h2 {
    font-size: 2.2rem;
  }
  .award-badge img {
    width: 600px;
  }
  .awards-section .btn {
    position: absolute;
    right: 18%;
    bottom: 17%;
  }
  .footer-content {
    gap: 1rem;
  }
  .footer-left h3 {
    font-size: 1.5rem;
  }
  .footer-left p {
    width: 210px;
    font-size: 0.9rem;
  }
 .footer-left img {
    width: 90px;
  }
  .footer-middle ul li a, footer-right ul li a {
    font-size: 0.9rem;
  }
  .footer-middle ul li a {
    gap: 0.3rem;
  }
  .slider {
    position: relative;
    bottom: 4rem;
  }
}
@media (max-width: 699px) {
  .right-set {
    display: none;
  }
  .award-badge img {
    width: 590px;
  }
  .awards-section .btn {
    right: 10%;
    bottom: 13%;
  }
}
@media (max-width: 589px) {
  .award-badge img {
    width: 481px;
  }
  .awards-section .btn {
    right: 6%;
    bottom: 12%;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 3.8rem;
    bottom: 6rem;
  }
  .left-set {
    width: 180px;
    bottom: 15rem;
    left: 0;
  }
  .hero-image img {
    width: 400px;
  }
  .intro-text h2 {
    font-size: 2rem;
  }
  .solutions-section .text h2 {
    font-size: 1.8rem;
  }
  .faq-section h2 {
    font-size: 1.8rem;
  }
  .awards-section h2 {
    font-size: 1.8rem;
  }
  .award-badge img {
    width: 350px;
  }
  .awards-section .btn {
    right: 3%;
    bottom: 10%;
  }
  .card {
    width: 100vw;
    height: auto;
  }
  .card h3 {
    margin-bottom: 2.5rem;
  }
  .image-gallery img {
    width: 90vw;
  }
  .footer {
    padding: 2rem 0.2rem;
  }
  .footer-left {
    width: 100px;
  }
  .footer-left h3 {
    font-size: 1.2rem;
  }
  .footer-left p {
    display: none;
  }
  .footer-left img {
    width: 50px;
  }
}
@media (max-width: 399px) {
  .hero-image img {
    width: 290px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .left-set {
    bottom: 11rem;
    left: 55%;
  }
  .left-set p {
    font-size: 1.3rem;
  }
  .award-badge img {
    width: 300px;
  }
  .awards-section .btn {
    padding: 0.5rem 0.5rem;
    font-size: 0.9rem;
    bottom: 10%;
}
}
@media (max-width: 320px) {
  .left-set {
    display: none;
  }
  
}
/* ------------------ fade effects in and out --------------- */
.pre-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s ease-in-out;
}
.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
@media (prefers-reduced-motion: reduce) {
  .pre-fade, .in-view {
    transition: none;
  }
}