* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Global section spacing */
section {
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  section {
    margin-bottom: 20px;
  }
}

/* Navbar section Styling */
.navbar {
  padding: 10px;
}

/* keep toggler on top */
.navbar-toggler {
  border: none;
  z-index: 2000;
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav {
  gap: 1rem;
}

/* nav link base */
.navbar-nav .nav-link {
  color: #141d38 !important; /* Dark text for contrast */
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative; /* for underline pseudo element */
}

/* underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 3px;
  width: 0;
  background: #111;
  transition: width 0.25s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #111 !important;
}

/* custom hamburger icon svg (keeps your style) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2817, 17, 17, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper .girl-img {
  position: relative;
  z-index: 2;
  max-width: 90%;
}

.hero-image-wrapper .graphic-bg {
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  max-width: 110%;
  z-index: 1;
}

/* Custom Button */
.btn-custom {
  display: inline-block;
  background: #111; /* Dark base color */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  border: none;
}

/* Shine effect */
.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: left 0.7s ease;
}

.btn-custom:hover::before {
  left: 200%;
}

/* Hover effect */
.btn-custom:hover {
  background: #f5b315; /* Gold on hover */
  color: #111; /* Dark text on hover */
  box-shadow: 0 8px 20px rgba(245, 179, 21, 0.5);
}

/* Mobile: Hide graphic background */
@media (max-width: 991px) {
  .hero-image-wrapper .graphic-bg {
    display: none;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-text {
    font-size: 16px;
  }
}

/* about section */
/* reduced top/bottom spacing to remove extra white-space issue */
.about-section {
  padding: 60px 0; /* Reduced from 80 -> 60 */
}

.about-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 30px 20px; /* More inner spacing */
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.about-card .icon {
  font-size: 48px; /* Bigger icons for premium look */
  color: #f5b315;
  margin-bottom: 20px;
}

.about-card .card-title {
  font-weight: 700;
  color: #111;
  font-size: 22px;
  margin-bottom: 12px;
}

.about-card .card-text {
  color: #333;
  font-size: 17px;
  line-height: 1.6;
}

/* Responsive adjustments for about */
@media (max-width: 992px) {
  .about-section {
    padding: 50px 0;
  }
  .about-card {
    padding: 25px 18px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }
  .about-card {
    padding: 20px 15px;
  }
  .about-card .icon {
    font-size: 38px;
  }
  .about-card .card-title {
    font-size: 18px;
  }
  .about-card .card-text {
    font-size: 15px;
  }
}

/* fantasy partner section */
/* reduced top spacing here so it aligns better with other sections */
.fantasy-partner-section {
  background: #fff;
  padding: 60px 0; /* Reduced from 100 -> 60 */
}

.fantasy-content .intro-text {
  font-size: 20px;
  color: #333;
  line-height: 1.9;
}

.fantasy-content ul li {
  font-size: 20px;
  color: #111;
  font-weight: 500;
  margin-bottom: 30px; /* more spacing between list items */
  display: flex;
  align-items: flex-start;
}

.fantasy-content ul li i {
  color: #f5b315;
  font-size: 28px;
  margin-right: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect (checkbox icon) */
.fantasy-content ul li:hover i {
  transform: scale(1.2);
  color: #111; /* optional invert on hover */
}

.fantasy-img {
  max-width: 95%; /* slightly larger */
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .fantasy-partner-section {
    padding: 45px 0;
  }
  .fantasy-content .intro-text {
    font-size: 18px;
  }
  .fantasy-content ul li {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .fantasy-img {
    max-width: 85%;
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .fantasy-partner-section {
    padding: 35px 0;
  }
  .fantasy-content .intro-text {
    font-size: 16px;
  }
  .fantasy-content ul li {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .fantasy-img {
    max-width: 80%;
  }
}


/* 🔹 All Categories Section */
#all-categories {
  background-color: #fff; /* adjust to your theme */
  padding: 60px 0;
}

.category-box {
  background: #f5b315;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* stronger shadow */
  transition: all 0.4s ease;
  padding: 30px 20px; /* increased height/padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.category-box i {
  font-size: 36px;
  color: #111; /* icon color */
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.category-box:hover i {
  transform: scale(1.2);
  color: #111;
}

.category-name {
  font-weight: 700; /* bolded category names */
  font-size: 20px;
  color: #111;
  margin-bottom: 15px; /* spacing between name and button */
  transition: color 0.3s ease;
}

.category-box:hover .category-name {
  color: #fff;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0006b1; /* Blue base color */
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  position: relative;          /* needed for shine */
  overflow: hidden;            /* hide shine overflow */
  transition: all 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.category-btn svg {
  transition: transform 0.3s ease;
}

/* Shine effect */
.category-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-45deg);
  transition: left 0.7s ease;
}

.category-btn:hover::before {
  left: 200%;
}

/* Hover effect */
.category-btn:hover {
  background: #111;
  color:#f5b315; /* Gold on hover */
  box-shadow: 0 8px 20px rgba(245, 179, 21, 0.5);
  transform: translateY(-2px);
}

.category-btn:hover svg {
  transform: translateX(5px);
}

/*  
.category-btn:hover svg {
  transform: translateX(4px) rotate(45deg);
} */

/* Hover effect for box */
.category-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .category-box {
    padding: 25px 15px;
  }
  .category-name {
    font-size: 18px;
  }
  .category-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .category-box {
    padding: 20px 12px;
  }
  .category-name {
    font-size: 16px;
  }
  .category-btn {
    padding: 7px 18px;
    font-size: 12px;
  }
}



/* benefits section */
/* add controlled padding so it sits well with neighbors */
.benefits-section {
  background: #fff;
  padding: 60px 0; /* Added explicit padding for consistent spacing */
}

.section-title {
  color: #111;
  font-size: 36px;
}
.section-title span {
  color: #f5b315;
}

.benefits-img {
  max-width: 95%;
  height: auto;
  border-radius: 15px;
}

.benefits-list li {
  align-items: center;
}

.icon-box {
  background: #f5b315;
  color: #111;
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.4s ease-in-out;
}

.benefits-section h4 {
  color: #111;
  font-size: 22px;
  margin-bottom: 8px;
}

.benefits-section p {
  color: #444;
  font-size: 18px;
  margin: 0;
  line-height: 1.6;
}

/* Hover effect for icons */
.icon-box:hover {
  background: #111;
  color: #f5b315;
}

/* Responsive adjustments for benefits */
@media (max-width: 991px) {
  .section-title {
    font-size: 30px;
  }
  .benefits-section h4 {
    font-size: 20px;
  }
  .benefits-section p {
    font-size: 16px;
  }
  .icon-box {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 26px;
  }
  .benefits-section h4 {
    font-size: 18px;
  }
  .benefits-section p {
    font-size: 15px;
  }
  .icon-box {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Legal Section */
.legal-section {
  background: #fff;
}

.legal-section .section-title {
  color: #111;
  font-size: 36px;
}

.legal-section .section-title span {
  color: #f5b315;
}

.section-subtitle {
  color: #444;
  font-size: 18px;
  max-width: 750px;
  margin: auto;
  line-height: 1.7;
}

.legal-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.icon-box {
  background: #f5b315;
  color: #111;
  font-weight: 700;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-card h5 {
  color: #111;
  font-size: 20px;
  margin-bottom: 6px;
}

.legal-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-section .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .legal-card h5 {
    font-size: 18px;
  }
  .legal-card p {
    font-size: 15px;
  }
  .icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Conclusion Section */
.conclusion-section {
  background: #f5b315;
  color: #111;
}

.conclusion-section .section-title {
  font-size: 36px;
  color: #111;
}

.conclusion-text {
  font-size: 18px;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  color: #222;
}

.conclusion-text .highlight {
  color: #111;
  font-weight: 600;
}

.conclusion-box {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #111;
}

.conclusion-box i {
  font-size: 32px;
  color: #f5b315;
  transition: transform 0.3s ease, color 0.3s ease;
}

.conclusion-box h5 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;
}

.conclusion-box:hover {
  background: #111;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.conclusion-box:hover i {
  color: #fff;
  transform: scale(1.2);
}

.conclusion-box:hover h5 {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .conclusion-section .section-title {
    font-size: 28px;
  }
  .conclusion-text {
    font-size: 16px;
  }
  .conclusion-box i {
    font-size: 26px;
  }
  .conclusion-box h5 {
    font-size: 14px;
  }
}

/* -------- Footer Section -------- */
.footer-section {
  background: #141d38;
  color: #f5b315;
}

.footer-logo {
  max-height: 55px;
}

.footer-title {
  color: #f5b315;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #f5b315;
  margin-right: 8px;
}

.footer-contact a {
  text-decoration: none;
  color: #f5b315;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-section a {
  color: #f5b315;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
}

/* Header fixes */
:root {
  --nav-h: 80px; /* adjust according to navbar height */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h); /* section scroll offset */
}

section {
  scroll-margin-top: var(--nav-h);
}

