@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #0057ff;
    --color-navy: #0b0f19;
    --color-rich-gold: #f5b942;
    --color-light-gray: #f5f6fa;
    --color-text-gray: #d0d0d0;
    --color-white: #ffffff;
}

body {
    font-family: "Montserrat", sans-serif;

}

/* Preloader Overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--color-navy);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Loader Circles */
.loader {
  display: flex;
  gap: 10px;
}

.loader span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4e00ff, #09afff);
  animation: bounce 1.4s infinite ease-in-out;
}

.loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.loader span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Hide on load */
.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}


.navbar {
    backdrop-filter: blur(10px); 
    background-color: rgba(11, 15, 25, 0.85);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}

.nav-link {
  color: #d0d0d0 !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffffff !important;
}

.navbar-brand span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
}

.hero-section {
  height: 100vh;
  background-image: linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)),
                    url('../assets/banner-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
  position: relative;
}

.hero-section h1 {
  font-size: 3rem;
  color: #ffffff;
}

.hero-section p {
  color: #d0d0d0;
}

.btn-primary {
  background-color: #0057ff;
  border-color: #0057ff;
}

.btn-primary:hover {
  background-color: #0040cc;
  border-color: #0040cc;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #0b0f19;
  border-color: #ffffff;
}

.live-market-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  position: relative;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 87, 255, 0.12);
}


.why-invest-section {
  background-color: var(--color-light-gray);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 87, 255, 0.2);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}


.benefit-icon {
  font-size: 3rem;
  color: #0057ff;
}


.investment-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 12px 25px rgba(0, 87, 255, 0.08);
}

.investment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 87, 255, 0.2);
}

.investment-card .icon {
  font-size: 2.5rem;
  color: var(--bs-light);
}

.investment-card img {
  height: 220px;
  object-fit: contain;
  width: 100%;
}

.investment-card.gold {
  background: linear-gradient(135deg, #FFD700aa, #f4c430cc);
}

.investment-card.auto {
  background: linear-gradient(135deg, #1976d2cc, #42a5f5aa);
}

.investment-card.crypto {
  background: linear-gradient(135deg, #6a1b9acc, #ab47bcaa);
}

.investment-card.oil {
  background: linear-gradient(135deg, #ff8f00cc, #ffb300aa);
}

.investment-card .btn {
  margin-top: 1rem;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.investment-card .btn:hover {
  background: #fff;
  color: #000;
}

.investment-card .card-body {
  padding: 1.5rem;
}

.investment-card .card-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.investment-card .card-text {
  font-size: 0.95rem;
  color: #fff;
}

.investment-card .plan-details li {
  font-size: 0.9rem;
  color: #fff;
}

.step-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 200, 200, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
}

.icon-glass {
  background: rgba(0, 123, 255, 0.9);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.testimonials-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: radial-gradient(circle at top left, rgba(238, 243, 255, 0.5), transparent 70%);
  overflow: hidden;
}

.testimonial-glass {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(200, 200, 200, 0.3);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
}
.testimonial-glass:hover {
  transform: scale(1.015);
}
.star-rating i {
  font-size: 1.3rem;
  margin: 0 1px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
}
.bi-quote {
  opacity: 0.1;
  font-size: 4rem;
  z-index: 0;
}

  .swiper-slide {
    transition: transform 0.5s ease;
  }
  .swiper-slide:hover {
    transform: scale(1.02);
  }

.glass-box {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  transition: transform 0.3s ease;
  min-height: 120px;
}

.glass-box:hover {
  transform: translateY(-5px);
}

.glass-accordion {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.accordion-button {
  background: transparent;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
  border-radius: 0.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bs-dark);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg fill='black' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.accordion-button.collapsed::after {
  transform: rotate(-90deg);
}

.cta {
  background: linear-gradient(135deg, #0d0d0d, #1a1a2e); 
  overflow: hidden;
}

.glow-button {
  background: linear-gradient(135deg, #007bff, #6f42c1);
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(111, 66, 193, 0.4);
}

.glow-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(111, 66, 193, 0.8);
}

/* Background Animation (optional stars or wave gradient) */
.animated-gradient-overlay {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.05) 0%, transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(255,255,255,0.05) 0%, transparent 70%);
  background-size: 200% 200%;
  animation: pulseBg 15s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes pulseBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.footer-section a:hover {
  color: #ffffff !important;
  transition: color 0.3s ease;
}

.footer-section .bi {
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section .bi:hover {
  transform: scale(1.2);
  color: #6f42c1;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    font-size: 18px;
    padding: 12px 18px;
    border-radius: 40px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
    font-size: 22px;
}

.whatsapp-text {
    white-space: nowrap;
    font-weight: 500;
    font-size: 13px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    color: #fff;
}
