/* ===========================
   Global Styles
=========================== */
body.expari-click {
  font-family: 'Poppins', sans-serif;
  background-color: #124757;
  color: #b6d6cf;
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden; /* stop horizontal scroll */
}
h1, h2, h3, h4, h5 {
  font-weight: 700;
  color: #a4fae8;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  color: #a4fae8;
}

/* ===========================
   Navbar
=========================== */
.expari-click-navbar {
  background: #124757;
  border-bottom: 1px solid #a4fae8;
}

.expari-click-navbar .nav-link {
  color: #b6d6cf !important;
  margin-left: 18px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.expari-click-navbar .nav-link:hover {
  color: #a4fae8 !important;
  text-shadow: 0 0 6px rgba(164, 250, 232, 0.7);
}

.expari-click-navbar .nav-link.active {
  color: #124757 !important;
  background: #a4fae8;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(164, 250, 232, 0.5);
}

.expari-click-logo {
  height: 80px;
}

/* ===========================
   Hero Section
=========================== */
.expari-click-hero {
  position: relative;
  background: url("../images/hero.jpg") center/cover no-repeat;
  min-height: 85vh;
  color: #b6d6cf;
}



.expari-click-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.expari-click-hero-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #a4fae8;
}

.expari-click-hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #b6d6cf;
}

/* ===========================
   Section Titles
=========================== */
.expari-click-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #a4fae8;
  position: relative;
}

.expari-click-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: #a4fae8;
  border-radius: 3px;
}

/* ===========================
   Buttons
=========================== */
.expari-click-btn {
  background: #a4fae8;
  color: #124757;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.expari-click-btn:hover {
  background: #b6d6cf;
  color: #124757;
}

/* ===========================
   Disclaimer Section
=========================== */
.expari-click-disclaimer-card {
  background: #124757;
  border: 2px solid #a4fae8;
  color: #b6d6cf;
  border-radius: 12px;
  padding: 20px;
}

.expari-click-disclaimer-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===========================
   Game
=========================== */
.expari-click-game-card {
  max-width: 900px;       /* keeps it centered and not too wide */
  aspect-ratio: 16 / 10;   /* maintain 16:10 ratio */
  position: relative;
}

.expari-click-game-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  overflow: hidden;        /* hide inner scrollbars */
}


/* ===========================
   Features Section
=========================== */
.expari-click-feature-card {
  background: #124757;
  border: 2px solid #a4fae8;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 20px;
}

.expari-click-feature-card i {
  color: #a4fae8;
  font-size: 2rem;
  margin-bottom: 10px;
}

.expari-click-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ===========================
   About Section
=========================== */
.expari-click-about {
  background: #0f3841; /* slightly darker shade for contrast */
  color: #b6d6cf;
}

.expari-click-about .expari-click-section-title {
  color: #a4fae8;
  font-weight: 700;
}

.expari-click-about .highlight {
  color: #b6d6cf;
}

.expari-click-about-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b6d6cf;
}

.expari-click-about-img {
  max-width: 100%;
  transition: transform 0.3s ease;
}

.expari-click-about-img:hover {
  transform: scale(1.05);
}

.expari-click-about .expari-click-btn {
  background: #a4fae8;
  color: #124757;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.expari-click-about .expari-click-btn:hover {
  background: #b6d6cf;
  color: #124757;
}

/* ===========================
   Reviews Grid Layout
=========================== */
body {
  overflow-x: hidden; /* stop horizontal scroll */
}

.expari-click-review-card {
  background: #124757;
  color: #b6d6cf;
  border: 1px solid #a4fae8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.expari-click-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===========================
   Footer
=========================== */
.expari-click-footer {
  background: #0e3742; /* slightly darker than site bg for contrast */
  color: #b6d6cf;
  font-size: 0.95rem;
  line-height: 1.6;
}

.expari-click-footer-logo {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(164, 250, 232, 0.3));
}

.expari-click-footer h5 {
  color: #a4fae8;
  font-weight: 600;
}

.expari-click-footer-link {
  color: #b6d6cf;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.expari-click-footer-link:hover {
  color: #a4fae8;
  padding-left: 4px; /* subtle hover effect */
}

.expari-click-footer-bottom {
  color: #8db1aa;
  font-size: 0.85rem;
}

.expari-click-footer-bottom a {
  color: #a4fae8;
  text-decoration: none;
}

.expari-click-footer-bottom a:hover {
  text-decoration: underline;
}


/* ===========================
   Popup
=========================== */
.expari-click-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 71, 87, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.expari-click-popup-card {
  background: #124757;
  padding: 2rem;
  max-width: 600px;
  border-radius: 15px;
  border: 2px solid #a4fae8;
  color: #b6d6cf;
  text-align: center;
}

.expari-click-popup-card h2 {
  color: #a4fae8;
  font-weight: 700;
}

.expari-click-popup-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* ===========================
   Scroll Top
=========================== */
.expari-click-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #a4fae8;
  color: #124757;
  font-size: 22px;
  border: none;
  width: 40px;         /* Equal width */
  height: 40px;        /* Equal height */
  border-radius: 50%;  /* Perfect circle */
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: none;
  transition: background 0.3s, transform 0.2s;
  z-index: 1500;

  display: flex;        /* Center icon */
  align-items: center;
  justify-content: center;
}

.expari-click-scroll-top:hover {
  background: #b6d6cf;
  color: #124757;
  transform: scale(1.1); /* Subtle hover effect */
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .expari-click-navbar .nav-link {
    margin: 8px 0;
  }

  .expari-click-hero-heading {
    font-size: 2rem;
  }

  .expari-click-hero-text {
    font-size: 1rem;
  }

  .expari-click-popup-card {
    margin: 20px;
  }

  .expari-click-reviews-track {
    animation: scrollReviews 40s linear infinite;
  }
}



/* ===========================
   Contact Section
=========================== */
.expari-click-contact {
  background: #124757;
  color: #b6d6cf;
}

.expari-click-contact-text {
  max-width: 700px;
  margin: 0 auto;
  color: #b6d6cf;
  font-size: 1.1rem;
}

.expari-click-contact-form {
  background: #0f3943;
  border: 1px solid #a4fae8;
  color: #b6d6cf;
}

.expari-click-contact-form .form-label {
  color: #a4fae8;
  font-weight: 500;
}

.expari-click-contact-form .form-control {
  background: #124757;
  border: 1px solid #a4fae8;
  color: #b6d6cf;
}

.expari-click-contact-form .form-control:focus {
  border-color: #a4fae8;
  box-shadow: 0 0 6px rgba(164, 250, 232, 0.5);
}

.expari-click-contact-form textarea {
  resize: none;
}



/* ===========================
   Legal Sections
=========================== */
.expari-click-legal {
  background: #124757;
  color: #b6d6cf;
  line-height: 1.7;
}

.expari-click-legal.bg-light {
  background: #f8f9fa;
  color: #124757;
}

.expari-click-legal h2 {
  font-size: 2rem;
  color: #a4fae8;
}

.expari-click-legal h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #a4fae8;
}

.expari-click-legal p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.expari-click-legal a {
  color: #a4fae8;
  text-decoration: underline;
}
