/* ---------- General ---------- */
body.veyraly-click {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #c7c4f5;
  color: #140a3a;
  overflow-x: hidden;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  color: #3f2f7a;           /* Heading color */
  font-family: 'Poppins', sans-serif; /* or your chosen web font */
  font-weight: 700;          /* Bold for prominence */
  line-height: 1.3;          /* Better readability */
  margin-bottom: 1rem;       /* Spacing below headings */
}

/* Individual heading sizes (adjust as needed) */
h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.85rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Optional subtle text-shadow for extra emphasis */
h1, h2, h3 {
  text-shadow: 1px 1px 2px rgba(63, 47, 122, 0.2);
}

/* Responsive heading scaling */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
}

/* ---------- Navbar ---------- */
.veyraly-click-navbar {
  background-color: #c7c4f5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1rem 0;
}

.veyraly-click-navbar .nav-link {
  color: #3f2f7a;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: 0.3s;
  position: relative;
}

.veyraly-click-navbar .nav-link:hover {
  color: #140a3a;
  background-color: rgba(20,10,58,0.15);
}

.veyraly-click-navbar .nav-link.active {
  color: #c7c4f5;
  background-color: #3f2f7a;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Optional: small underline for active links */
.veyraly-click-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 20%;
  width: 60%;
  height: 3px;
  background-color: #c7c4f5;
  border-radius: 2px;
}

/* Navbar brand/logo */
.veyraly-click-logo {
  height: 85px;
}

/* Optional: make nav links stand out on mobile menu */
.navbar-collapse .nav-link {
  margin: 0.3rem 0;
}



/* ---------- Hero ---------- */
.veyraly-click-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 3rem 1rem;
  background: url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: #140a3a;
}

/* Contain content width */
.veyraly-click-hero-content {
  max-width: 700px; /* limits content width */
  width: 100%;
  margin: 0 auto;
}

.veyraly-click-hero-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #3f2f7a;
  margin-bottom: 1rem;
}

.veyraly-click-hero-text {
  font-size: 1.2rem;
  color: #140a3a;
  margin-bottom: 1.5rem;
}

.veyraly-click-btn {
  background-color: #3f2f7a;
  color: #c7c4f5;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}

.veyraly-click-btn:hover {
  background-color: #140a3a;
  color: #c7c4f5;
}

/* ---------- Disclaimer Card ---------- */
.veyraly-click-brief-disclaimer .veyraly-click-brief-card {
  background-color: #e5e2f8;
  color: #140a3a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
}
.veyraly-click-brief-disclaimer .veyraly-click-btn {
  margin-top: 1rem;
}



/* ---------- Features ---------- */
.veyraly-click-features .veyraly-click-feature-card {
  background-color: #e5e2f8;
  color: #140a3a;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.veyraly-click-features .veyraly-click-feature-card:hover {
  transform: translateY(-5px);
}
.veyraly-click-features i {
  color: #3f2f7a;
  margin-bottom: 1rem;
}

/* ---------- About Section ---------- */
.veyraly-click-about {
  background-color: #c7c4f5;
  color: #140a3a;
}

.veyraly-click-about .veyraly-click-about-image-wrapper {
  max-width: 400px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  border-radius: 16px;
  overflow: hidden;
}

.veyraly-click-about .veyraly-click-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.veyraly-click-about .veyraly-click-section-title {
  color: #3f2f7a;
  font-size: 2rem;
  font-weight: 700;
}

.veyraly-click-about .veyraly-click-highlight {
  color: #3f2f7a;
}

.veyraly-click-about .veyraly-click-about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .veyraly-click-about .veyraly-click-section-title {
    font-size: 1.75rem;
  }
  .veyraly-click-about .veyraly-click-about-text {
    font-size: 1rem;
  }
  .veyraly-click-about .veyraly-click-about-image-wrapper {
    max-width: 100%;
  }
}

/* ---------- Reviews Section ---------- */
.veyraly-click-reviews {
  background-color: #c7c4f5;
  color: #140a3a;
}

.veyraly-click-reviews .veyraly-click-section-title {
  color: #3f2f7a;
  font-size: 2rem;
  font-weight: 700;
}

.veyraly-click-reviews .veyraly-click-lead {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.veyraly-click-review-card {
  background-color: #e0dbf7;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.veyraly-click-review-card i {
  color: #3f2f7a;
}

.veyraly-click-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

.veyraly-click-review-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.veyraly-click-review-card h6 {
  color: #140a3a;
  font-weight: 600;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .veyraly-click-review-card {
    padding: 1.5rem;
  }
}

/* ---------- Footer ---------- */
.veyraly-click-footer {
  background-color: #c7c4f5;
  color: #140a3a;
  font-family: 'Poppins', sans-serif;
}

.veyraly-click-footer-logo {
  height: 60px;
}

.veyraly-click-footer-links {
  padding: 0;
  margin: 0;
}

.veyraly-click-footer-links li {
  list-style: none;
}

.veyraly-click-footer-link {
  color: #140a3a;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.veyraly-click-footer-link:hover {
  color: #140a3a;
  transform: translateY(-2px);
}

.veyraly-click-footer-heading {
  color: #140a3a;
  font-weight: 600;
  font-size: 1.1rem;
}

.veyraly-click-footer-text {
  color: #140a3a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.veyraly-click-footer-bottom {
  color: #140a3a;
  font-size: 0.85rem;
}

.veyraly-click-footer hr {
  border-color: rgba(199,196,245,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .veyraly-click-footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/* ---------- Popup ---------- */
.veyraly-click-popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.veyraly-click-popup-card {
  background-color: #e5e2f8;
  color: #140a3a;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 500px;
}
.veyraly-click-btn-secondary {
  background-color: #c7c4f5;
  color: #3f2f7a;
  border: 1px solid #3f2f7a;
}
.veyraly-click-btn-secondary:hover {
  background-color: #3f2f7a;
  color: #c7c4f5;
}

/* ---------- Scroll Top ---------- */
.veyraly-click-scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;          /* fixed width */
  height: 40px;         /* same as width for perfect circle */
  background-color: #3f2f7a;
  color: #c7c4f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.veyraly-click-scroll-top:hover {
  background-color: #140a3a;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */

@media (max-width: 576px) {
  .veyraly-click-hero-heading {
    font-size: 1.9rem;
  }
  .veyraly-click-hero-text {
    font-size: 1rem;
  }



/* ---------- Contact Section ---------- */
.veyraly-click-contact {
  background-color: #c7c4f5;
  color: #140a3a;
}

.veyraly-click-contact-card {
  background-color: #fff0; /* transparent/light for soft look */
  backdrop-filter: blur(10px);
}

.veyraly-click-input {
  background-color: #fff;
  border: 2px solid #3f2f7a;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  color: #140a3a;
  transition: border-color 0.3s ease;
}

.veyraly-click-input:focus {
  border-color: #140a3a;
  outline: none;
  box-shadow: 0 0 8px rgba(63, 47, 122, 0.3);
}

.veyraly-click-btn {
  background-color: #3f2f7a;
  color: #c7c4f5;
  padding: 0.65rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.veyraly-click-btn:hover {
  background-color: #140a3a;
  color: #c7c4f5;
}



/* ---------- Legal Pages ---------- */
.veyraly-click-legal {
  background-color: #c7c4f5;
  color: #140a3a;
  font-family: 'Poppins', sans-serif;
  padding: 60px 15px;
}

.veyraly-click-legal h1 {
  color: #3f2f7a;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.veyraly-click-legal h2 {
  color: #3f2f7a;
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.veyraly-click-legal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #140a3a;
  margin-bottom: 15px;
}

.veyraly-click-legal-card {
  background-color: #f5f4ff;
  padding: 30px;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.veyraly-click-legal-card h2:first-of-type {
  margin-top: 0;
}

@media (max-width: 992px) {
  .veyraly-click-legal h1 {
    font-size: 2.2rem;
  }
  .veyraly-click-legal h2 {
    font-size: 1.5rem;
  }
  .veyraly-click-legal-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .veyraly-click-legal {
    padding: 40px 10px;
  }
  .veyraly-click-legal-card {
    padding: 20px;
  }
}
