/* -----------------------------------
   ROOT VARIABLES & GLOBAL STYLES
----------------------------------- */
:root {
  --blue: #000000;
  --blue-light: #000000;
  --gold: #D4AF37;
  --dark: #000000;
  --muted: #5b6b78;
  --bg: #f6f9fb;
  --wrap: 1100px;
  font-family: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  font-size: 1.1rem;
  line-height: 1.8;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

 /* NAVBAR */
.navbar {
  background: #000;
  height: 80px;
  padding: 0 20px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* DESKTOP MENU (FIXED ALIGNMENT) */
.desktop-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.desktop-menu .nav-item {
  list-style: none;
}

.desktop-menu .nav-link {
  color: #f1f1f1 !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding: 0 !important;
  line-height: normal !important;
}

/* Hover underline */
.desktop-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f3c623d0;
  transition: width 0.3s ease;
}

.desktop-menu .nav-link:hover::after {
  width: 100%;
}


/* BRAND AREA */
.brand-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

.brand-text {
    padding-top: 8px;
  font-family: "Lexend Peta", sans-serif;
  display: flex;
  flex-direction: column;
  line-height: 18px;
}

.brand-title {
    padding-top: 4px;
     font-size: 30px; /* 26px*/
  /* font-weight: 300; */
  color:#debf5b;;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 13px;
  color: #fff9eb;
  margin-top: 1px;/* -2px*/
}

/* MOBILE MENU ICON */
.menu-icon {
  font-size: 25px; /* 35px*/
  color: #d8a114;
  cursor: pointer;
  display: none;
}

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


/* FORCE MOBILE HIDE — IMPORTANT FIX */
@media (max-width: 1000px) {
  .desktop-menu {
    display: none !important;
  }
  .menu-icon {
    display: block !important;
  }
  .brand-title {
    padding-top: 4px;
   font-size: 20px; /* 26px*/
  /* font-weight: 700; */
  color: #f8db7d;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 8px;
  color: #fff9eb;
  margin-top: 0px;/* -2px*/
}


}

/* SIDE MENU (Mobile Drawer) */
.side-menu {
  height: 100%;
  width: 260px;
  position: fixed;
  top: 0;
  right: 0;
  background: #000000;
  overflow-y: auto;
  padding-top: 80px;
  z-index: 999999;
  
  /* OLD: width transition → REMOVE */
  /* transition: 0.4s ease; */

  /* NEW SMOOTH ANIMATION */
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.36, 1);
}

/* When opened */
.side-menu.open {
  transform: translateX(0);
}


/* Side menu links */
.side-menu a {
  padding: 15px 30px;
  font-size: 20px;
  color: #fff;
  display: block;
  text-decoration: none;
}

.side-menu a:hover {
  /* background: #0b740f; */
  color: #e1b532;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1000000;
}

/* hero section */
 .hero {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  padding: 170px 40px;
  display: flex;
  justify-content: center;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}
.hero-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}
.hero-text h2 {
  color: #000000;
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1rem;
  margin-bottom: 20px;
}
.hero-image img {
  width: 400px;
  max-width: 100%;
}
.btn-primary {
  background-color: #D1AB2C;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}
.btn-primary:hover {
  background-color: #000000;
}

/* -------------------------- */
/* 📱 MOBILE RESPONSIVE PART  */
/* -------------------------- */
@media (max-width: 768px) {

  .hero {
    padding: 100px 20px;
    text-align: center;
  }

  .hero-content {
    margin-top: 200px;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .hero-text h2 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-image img {
    width: 280px;
  }
}

/* -----------------------------------
   INFO SECTIONS – Clean & Elegant
----------------------------------- */
.info {
  padding: 90px 0;
  background: #ffffff;
}

.info h2 {
  color: var(--blue);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

/* subtle underline animation for heading */
.info h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D1AB2C);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.info h2:hover::after {
  width: 120px;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.icon-title i {
  color: var(--blue);
  font-size: 2rem;
  opacity: 0.9;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon-title i:hover {
  transform: rotate(8deg) scale(1.1);
  color: #c19d0f;
}

.alt-bg {
  background: #fff;
  border-radius: 14px;
  padding: 60px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

/* -----------------------------------
   CATEGORY CARDS – Refined Shadows
----------------------------------- */
.aif-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 110, 127, 0.08);
}

.cat-card i {
  font-size: 2.3rem;
  color: var(--blue);
  margin-bottom: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cat-card:hover i {
  transform: scale(1.15);
  color: #000000;
}

/* -----------------------------------
   HIGHLIGHT LIST – Subtle Motion
----------------------------------- */
.highlight-points {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.highlight-points li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.highlight-points li:hover {
  transform: translateX(6px);
  color: var(--blue);
}

.highlight-points i {
  color: var(--blue-light);
  font-size: 1.2rem;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.highlight-points li:hover i {
  transform: scale(1.2) rotate(10deg);
  color: var(--blue);
}

/* -----------------------------------
   CONTACT BOX — Premium Animated Style
----------------------------------- */
.contact-box {
  position: relative;
  background: linear-gradient(135deg, var(--blue), #000000);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

/* floating soft shapes behind */
.contact-box::before,
.contact-box::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: floatGlow 10s ease-in-out infinite alternate;
  z-index: 0;
}
.contact-box::before {
  background: var(--gold);
  top: -150px;
  left: -200px;
}
.contact-box::after {
  background: #000000;
  bottom: -150px;
  right: -200px;
}

/* layered content animation */
.contact-box .wrap {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-box h3 {
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.contact-box p {
  font-size: 1.15rem;
  margin: 20px auto 35px;
  max-width: 680px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.5s;
}


/* contact */
.contact-cta {
  text-align: center;
  background-color: #000000;
  color: white;
  padding: 80px 30px;
}
.btn-secondary {
  background-color: #D4AF37;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
  transition: 0.3s;
}
.btn-secondary:hover {
  background-color: #ac8100;
}

/* -----------------------------------
   FOOTER
----------------------------------- */
.footer a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

.footer p, .footer li {
  font-size: 14px;
  line-height: 1.6;
}


/* -----------------------------------
   AIF POINTS SECTION (LEFT + RIGHT)
----------------------------------- */
.aif-points {
  padding: 100px 0;
  background: var(--bg);
}

.points-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
}

/* card base */
.info-box {
  flex: 1;
  min-width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 45px 35px;
  transition: all 0.45s cubic-bezier(.2,.9,.3,1);
  position: relative;
  overflow: hidden;
}

/* top gradient line on hover */
.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transition: width 0.45s ease;
}
.info-box:hover::before { width: 100%; }

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.info-box.alt-bg {
  /* background: linear-gradient(135deg, var(--blue), #00A7B7); */
  color: #fff;
}

.info-box.alt-bg h2,
.info-box.alt-bg i { color: #fff; }

.info-box h2 {
  font-size: 1.95rem;
  color: var(--blue);
  margin: 0 0 14px;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.icon-title i {
  color: var(--gold);
  font-size: 1.9rem;
}

/* list */
.highlight-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-points li {
  font-size: 1.06rem;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.highlight-points i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 4px;
}

/* -----------------------------------
   SCROLL REVEAL + SLIDE CLASSES
----------------------------------- */
/* default hidden states */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(.2,.9,.3,1);
}

.slide-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: all 0.9s cubic-bezier(.2,.9,.3,1);
}

.slide-right {
  opacity: 0;
  transform: translateX(70px);
  transition: all 0.9s cubic-bezier(.2,.9,.3,1);
}

/* visible states */
.reveal.active,
.slide-left.active,
.slide-right.active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* small stagger when inside points-grid (left then right) */
.points-grid .info-box.slide-left { transition-delay: 0.12s; }
.points-grid .info-box.slide-right { transition-delay: 0.28s; }

/* -----------------------------------
   ANIMATIONS (hero float/slide)
----------------------------------- */
@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* -----------------------------------
   RESPONSIVE
----------------------------------- */
@media (max-width: 1000px) {
  .hero {
    padding: 70px 20px;
  }
  .points-grid { gap: 28px; }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 18px;
  }
  .hero-text h2,
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-image img {
    width: 300px;
  }
  .info-box { padding: 28px; min-width: auto; }
  .points-grid { flex-direction: column; gap: 18px; }
}
