
    
body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    height: 130px;
    display: flex;
    align-items: center;
}
.logo {
    height: 200px;
    width: auto;
}
.navbar-nav .nav-link {
    font-size: 1.5rem;
    margin-left: 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
}
.hero-text {
    position: relative;
    font-size: 7rem;
    line-height: 1.1;
    z-index: 2; /* The key to making the text appear in front of the circles */
}

/* Gradient Circles */
.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, #F4E541, #B78989);
    opacity: 0.95;
    z-index: 1; /* This z-index keeps the circles behind the text */
}
.circle.large {
    width: 750px;
    height: 750px;
    /* Position adjusted to match the screenshot */
    bottom: -250px;
    left: 25%;
    z-index: 1;
}
.circle.small {
    width: 500px;
    height: 500px;
    /* Position adjusted to match the screenshot */
    right: -100px;
    top: 35%;
}

    /* Dotted Pattern */
.dots {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#555 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
    right: 15%;
    top: 25%;
    border-radius: 50%; /* Added this line to make the container circular */
}

    .app-buttons {
  position: absolute;
  right: 10%;
  top: 125%;
  display: flex;
  gap: 20px;
  z-index: 2;
}


.app-button {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #2a2a2a, #000);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  text-decoration: none;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  transition: transform 0.3s ease;
}

.app-button:hover {
  transform: scale(1.05);
}

.app-button img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}


    .scroll-banner {
      width: 100%;
      background-color: #f4e541;
      color: #000;
      font-weight: bold;
      font-size: 1.8rem;
      white-space: nowrap;
      overflow: hidden;
      position: relative;
      z-index: 3;
      top: 400px;
    }

    .scroll-text {
      display: inline-block;
      padding-left: 100%;
      animation: scrollText 15s linear infinite;
    }

    @keyframes scrollText {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-100%);
      }
    }
@media (max-width: 768px) {
    /* Navbar adjustments */
    .navbar {
        height: 80px;
    }
    .logo {
        height: 100px;
        width: auto;
    }
    /* Hero Section */
    .hero-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        padding: 0 20px;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    .hero-text {
        font-size: 2.8rem;
        z-index: 2;
        bottom: 250px;
        position: relative;
        right: 60px;
    }
    .left-align {
        text-align: left;
        margin-left: 10%;
    }
    /* Large circle (bottom background) */
    .circle.large {
        width: 250px;
        height: 250px;
        bottom: 40%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    /* Small circle (top-right) */
    .circle.small {
        width: 180px;
        height: 180px;
        top: 10%;
        right: -30px;
        z-index: 1;
    }
    /* Dotted pattern */
    .dots {
        width: 130px;
        height: 130px;
        background-image: radial-gradient(#444 1.5px, transparent 2px);
        background-size: 18px 18px;
        right: 0%;
        top: 25%;
        border-radius: 50%;
        z-index: 0;
    }


    .scroll-banner {
        top: 80%; /* Adjusted for new button position */
    }
}
@media (max-width: 768px) {
    .app-buttons {
        position: absolute;   /* allow free placement */
        top: 85%;             /* move UP or DOWN */
        right:15%;           /* move LEFT or RIGHT */
        transform: translateY(-50%);
        flex-direction: row;  /* keep in same line */
        gap: 12px;
    }

    .app-button {
        width: 130px;
        height: 130px;
    }

    .app-button img {
        width: 40px;
        height: 40px;
    }

    .app-button div {
        font-size: 0.75rem;
    }
}

.about-us-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #000; /* keep dark background */
    top: 400px; 
}

.about-us-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.about-us-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #ffc107; /* yellow highlight */
    font-weight: bold;
}

/* Blurred gradient circles */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.65;
    z-index: 0;
    pointer-events: none;
}

.circle-bg.yellow-purple {
    background: linear-gradient(to bottom right, #F4E541, #B78989);
    width: 650px;
    height: 650px;
    top: -150px;
    left: -200px;
}

.circle-bg.purple-gold {
    background: linear-gradient(to top left, #3c1c52, #1d1807);
    width: 700px;
    height: 700px;
    bottom: -200px;
    right: -250px;
}

/* inner circle that hides the center (transparent inside) */
.grad-circle__inner{
  width: calc(var(--size) - 2 * var(--thickness));
  height: calc(var(--size) - 2 * var(--thickness));
  border-radius: 50%;
  background: transparent; /* empty center */
  /* Optional: if you want a clickable/visible center, add styles here */
}

@media (min-width: 992px) {
    .about-us-section {
        top: 400px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 20px;
        top: 0; /* reset so no gap on mobile */
    }
    .about-us-section h1 {
        font-size: 2.2rem;
    }
    .about-us-section p {
        font-size: 1rem;
    }
}
/* Mobile adjustments */
@media (max-width: 768px) {
    .circle-bg.yellow-purple {
        width: 300px;
        height: 300px;
        top: 20px;
        left: -120px;
    }
    .circle-bg.purple-gold {
        width: 350px;
        height: 350px;
        bottom: -120px;
        right: -150px;
    }
}

.ellipse1 {
  position: absolute;
  width: 704.38px;
  height: 95.25px;
  top: 1860px;
  left: -241px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  transform: rotate(15.32deg);
  opacity: 1;
  background: transparent;
}

.ellipse2 {
  position: absolute;
  width: 704.38px;
  height: 95.25px;
  top: 1910px;
  left: -241px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  transform: rotate(20.32deg);
  opacity: 1;
  background: transparent;
}
@media (max-width: 768px) {
    .ellipse1 {
        /* Adjust these values to position the ellipses as needed */
        top: 1620px;
        left: 30%;
        transform: translateX(-50%) rotate(10.32deg);
        /* Decrease size */
        width: 300px; /* Reduced width */
        height: 60px; /* Reduced height to maintain the aspect ratio */
    }

    .ellipse2 {
        /* Adjust these values to position the ellipses as needed */
        top: 1650px;
        left: 25%;
        transform: translateX(-50%) rotate(10.32deg);
        /* Decrease size */
        width: 300px; /* Reduced width */
        height: 60px; /* Reduced height to maintain the aspect ratio */
    }
}
.torch-section {
    position: absolute;
    top: 2100px;
    left: 0;
    width: 100%;
}

.boxes-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 900px; /* Increased to fit the larger boxes */
    position: absolute;
    top: 2450px;
    left: 50%; /* Center the section horizontally */
    transform: translateX(-50%); /* Adjust for perfect centering */
    gap: 20px; /* Adds space between the boxes */
}

.box {
    width: 250px; /* Increased width to match screenshot */
    height: 250px; /* Increased height to match screenshot */
    border: 1px solid #FFFFFF;
    border-radius: 14px;
    background-color: #b29e21;
    background-size: 800px; /* Adjusted to fit the new box dimensions */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
}

.box-1 {
    background-position: 0% 0%; /* Shows the left part of the image */
}

.box-2 {
    background-position: 50% 0%; /* Shows the center part of the image */
}

.box-3 {
    background-position: 100% 0%; /* Shows the right part of the image */
}

.box p {
    color: #fff;
    font-size: 20px; /* Increased font size for readability */
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* Media query for small screens (e.g., phones) */
@media (max-width: 768px) {
    .boxes-section {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        position: relative;
        top: 300px; /* Adjust this value to control how far down the boxes move */
        left: auto;
        transform: none;
        padding: 0 10px;
    }
    
    .box {
        width: 30%;
        height: 120px;
        border: 1px solid #FFFFFF;
        border-radius: 14px;
        background-size: 300% 100%;
        padding: 5px;
    }
    
    .box p {
        font-size: 10px;
        line-height: 1.2;
    }
}
@media (max-width: 768px) {
    /* ... existing styles for boxes-section ... */

    .torch-section {
        /* You may need to adjust the positioning for mobile */
        top: 1750px; /* Example: move it up */
    }

    .torch-light img {
        width: 80%; /* Decreases the image width to 80% of its container */
        height: auto; /* Maintains the aspect ratio */
        max-height: 400px; /* Set a maximum height to prevent it from being too tall */
    }
}


