/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-green: #00ff88;
  --secondary-green: #2d5a27;
  --accent-blue: #00d4ff;
  --warm-yellow: #ffeb3b;
  --deep-forest: #0a1a0a;
  --light-mint: #e8fff0;
  --glow-green: rgba(0, 255, 136, 0.3);
  --glow-blue: rgba(0, 212, 255, 0.3);
}

body {
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =========================================================
   1) GLOBAL / BASE
   ========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  /* allows only vertical scroll */
}

/* ===== Scrollbar Styling (Dark Green Theme) ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  /* light green background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background:  #EE007D;
  /* dark green gradient */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background:  #af0146;
  /* slightly brighter green on hover */
}

/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 15px;
}

/* =========================
   Partner Section Styling
========================= */
.partner-section {
  position: relative;
  /* mint background */
  overflow: hidden;
}

/* ===== Logo Slider ===== */
.partner-slider {
  overflow: hidden;
  width: 100%;
  margin: 0%;
  padding: 20px;
  background: transparent;

}

.partner-track img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-track img:hover {
  transform: scale(1.1);
}

.partner-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: slideRight 20s linear infinite;
  animation-play-state: running;
  /* default running */
}

.partner-track.paused {
  animation-play-state: paused;
  /* stop animation when class added */
}

/* ===== Animation Keyframes ===== */
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}
/* =========================
   Responsive Design
========================= */
@media (max-width: 992px) {
  .partner-track {
    gap: 50px;
  }

  .partner-track img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .partner-track {
    gap: 40px;
  }

  .partner-track img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .partner-section {
    padding: 40px 0;
  }

  .partner-track {
    gap: 30px;
  }

  .partner-track img {
    height: 30px;
  }
} 

/* =========================================================
   2) HEADER / NAVIGATION
   ========================================================= */
/* ========== LOGO ========== */
.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

/* ========== HEADER ========== */
header {
  width: 100%;
  padding: 8px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  background: #f5f5f5;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
  overflow: visible;
  min-height: 70px;
}

/* Diagonal background shape on the right */
header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, #EE007D 0%, #b8005f 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

header.scrolled {
  background: rgba(245, 245, 245, 0.95);
  border-bottom: 1px solid rgba(238, 0, 125, 0.2);
}

header.scrolled::after {
  opacity: 0.9;
}

/* Logo */
header > .logo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Nav in the middle-left */
header > nav {
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Hamburger on the right */
header > .hamburger {
  position: relative;
  z-index: 1100;
  margin-left: auto;
  order: 3;
}

/* Login button */
header > .login-btn {
  order: 2;
}

/* ========== NAV MENU ========== */
nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  max-width: calc(100% - 200px);
}

.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.menu li a:hover {
  color: #EE007D;
}

.menu li > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #EE007D;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.menu li > a:hover::after {
  width: 100%;
}

/* ========== LOGIN BUTTON ========== */
/* Desktop login button */
.login-btn {
  position: absolute;
  right: 40px;
  z-index: 2;
}

.login-btn a {
  background: #ffffff;
  color: #EE007D !important;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.login-btn a:hover {
  background: #f0f0f0;
  color: #EE007D !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(238, 0, 125, 0.3);
}

.login-btn a::after {
  display: none !important;
}

/* Mobile login button - hidden on desktop */
.mobile-login-btn {
  display: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #EE007D;
  border: 1px solid rgba(238, 0, 125, 0.55);
  box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.6),
      0 0 18px rgba(238, 0, 125, 0.35);
  animation: dropdownFade 0.35s ease forwards;
  z-index: 9999;
  margin-top: 8px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 16px 22px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
  white-space: nowrap;
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #f1c3d6 !important;
  padding-left: 28px;
}

/* Left indicator for dropdown items */
.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 0%;
  width: 3px;
  background: linear-gradient(90deg, #ffffff, #ff85b3);
  border-radius: 4px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.dropdown-menu li a:hover::before {
  height: 60%;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #ffffff;
  border-radius: 4px;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown animation */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
  /* responsive padding */
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* slightly lighter */
  z-index: -1;
}

/* Hero Content */
.hero-content {
  max-width: 900px;
  padding: 20px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content h1 {
  font-size: clamp(32px, 6vw, 65px);
  /* responsive text */
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 1500;
  text-shadow: 0 0 1px rgba(145, 60, 215, 0.8);
}

.hero-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 28px;
  color: #ddd;
}



/* Fade-in Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* WHO WE ARE Section */
.who-section {
  padding: 70px 40px;

  color: #efedef;
  overflow: hidden;
}

.who-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
}

/* Left Side Image */
.who-image {
  flex: 1 1 45%;
}

.who-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

.who-image img:hover {
  transform: scale(1.05);
}

/* Right Side Text */
.who-content {
  flex: 1 1 50%;
}

.section-title {
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #EE007D, #ad045e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.who-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #080808;
  text-align: justify;
}

/* Cards */
.who-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.who-card {
  background: linear-gradient(145deg, #EE007D, #ad045e);
  flex: 1 1 45%;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.4s ease;
  border: 1px solid #ec76a5;
}

.who-card:hover {
  transform: translateY(-10px);
}

.who-card img {
  width: 60px;
  margin-bottom: 15px;
}

.who-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #ec76a5;
}

.who-card p {
  font-size: 15px;
  color: #eceaea;
}

/* Animation */
.who-section .who-container {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.who-section.active .who-container {
  opacity: 1;
  transform: translateY(0);
}

.who-icon {
  font-size: 35px;
  color: #EE007D; /* Your theme purple */
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 0.8rem;
  border: 1px solid #4a0621;
  background: #ffffff;
  border-radius: 50%;
}

.who-card:hover .who-icon {
  transform: scale(1.1);
  color: #184b50;
}

.ti {
  font-family: "tabler-icons" !important;
  font-style: normal;
  display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== HIGHLIGHT CARDS ===== */
.highlights-section {
  padding: 80px 10px;
  text-align: center;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: auto;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}

.highlights-section .card {
  border-radius: 15px;
  padding: 24px;
  width: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(60px);
  text-align: left;
  background: linear-gradient(145deg, #EE007D, #EE007D);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  min-height: 360px;
}

.highlights-section .card h3 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #dafff6;
  text-align: center;
}

.highlights-section .card-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.highlights-section .card-row.reverse {
  flex-direction: row-reverse;
}

.highlights-section .card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  flex: 0 0 auto;
  margin: 0 auto;
  transition: transform 0.4s ease;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

.highlights-section .card-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.highlights-section .card:hover img {
  transform: scale(1.05);
}

.highlights-section .card p {
  font-size: 16px;
  line-height: 1.6;
  color: #dedada;
  text-align: justify;
}

/* Animation */
.highlights-section .card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }

  .highlights-section .card {
    padding: 20px 16px;
  }

  .highlights-section .card-row {
    flex-direction: column;
    gap: 16px;
  }

  .highlights-section .card-row.reverse {
    flex-direction: column;
  }

  .highlights-section .card h3 {
    font-size: 28px;
  }

  .highlights-section .card img {
    width: 200px;
    height: 200px;
  }
}

/* ===== GRID ===== */
/* Highlights Section */
.highlights {
  padding: 20px 20px;
  text-align: center;
}

.highlights .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

.highlights .card {
  background: linear-gradient(145deg, #EE007D, #EE007D);
  padding: 30px 20px;
  border-radius: 100px; /* makes the card rounded */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
  .highlights .card {
    border-radius: 50%;  /* makes it circular */
    width: 180px;         /* make width = height */
    height: 180px;        /* make height = width */
    margin: auto;         /* center it */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .highlights .card i {
    margin-bottom: 10px;  /* icon spacing inside circle */
  }

}
.highlights .card i {
  font-size: 40px;
  color: #f7c5d8;
  margin-bottom: 1opx;
}

.highlights .card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #f8f7f7;
}

.highlights .card span {
  font-size: 15px;
  color: #ededed;
  display: block;
}

/* Animation on scroll */
.highlights.active .card {
  opacity: 1;
  transform: translateY(0);
}

.highlights.active .card:nth-child(1) {
  transition: all 0.6s ease 0.2s;
}

.highlights.active .card:nth-child(2) {
  transition: all 0.6s ease 0.4s;
}

.highlights.active .card:nth-child(3) {
  transition: all 0.6s ease 0.6s;
}

.highlights.active .card:nth-child(4) {
  transition: all 0.6s ease 0.8s;
}

.highlights.active .card:nth-child(5) {
  transition: all 0.6s ease 1s;
}




/* Footer Styles */
.footer {
  background: radial-gradient(circle at center, #021b1b 0%, #033032 50%, #0a6969 100%);
  /* dark green gradient */
  color: #fff;
  padding: 60px 25px 20px;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #11c8cb, #25f8fc);
  display: block;
  margin-top: 8px;
}

.footer-col ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #ddd;

  /* Ensure icon stays left and text shrinks instead of overflowing */
  flex-wrap: nowrap;
  /* no wrapping to next line */
  overflow-wrap: anywhere;
  /* allow breaking within long words if necessary */
}

.footer-col ul li i {
  margin-right: 10px;
  /* gap between icon and text */
  flex-shrink: 0;
  /* icon never shrinks */
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;

  /* allow long emails to break within container */
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col ul li a:hover {
  color: #95f5fe;
}

/* Logo & Social */
.footer-logo {
  max-width: 540px;
  margin-bottom: 20px;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #EE007D, #d50156, #72002c);
  color: #fff;
  padding: 60px 25px 20px;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0a3a3f, #EE007D);
  display: block;
  margin-top: 8px;
}

.footer-col ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #ffffff;
  flex-wrap: nowrap;
  overflow-wrap: anywhere;
}

.footer-col ul li i {
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col ul li a:hover {
  color: #95f5fe;
}

.footer-logo {
  max-width: 540px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff4ba0;
}

.footer-legal {
  background: rgba(247, 249, 250, 0.9);
  color: #EE007D;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.legal-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.legal-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #EE007D;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px;
  text-align: left;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-tab:hover,
.legal-tab.active {
  border-color: #ff4ba0;
  background: rgba(255, 0, 96, 0.15);
}

.legal-card {
  flex: 1;
  min-width: 300px;
  padding: 26px;
  border-radius: 20px;
  box-shadow: inset 0 0 50px rgba(255, 0, 96, 0.07);
}

.legal-card__content {
  margin: 0;
  display: none;
  color: #EE007D;
  font-size: 15px;
  line-height: 1.65;
}

.legal-card__content.active {
  display: block;
}

@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    padding: 20px;
  }

  .legal-navigation {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .legal-tab,
  .legal-card {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .legal-tab {
    font-size: 14px;
    padding: 10px 12px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-copy {
  font-size: 13px;
  color: #dfe0e1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-align: center;
}

.footer-bottom .partner-section {
  width: 100%;
}

.footer-bottom .partner-slider {
  padding: 0;
  background: transparent;
}

.footer-bottom .partner-track {
  animation-duration: 16s;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .footer-logo {
    margin-left: 0;
    margin-right: auto;
    display: block;
    text-align: left;
  }
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 70px;
  /* moved up so it doesn’t overlap */
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: black;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(38, 58, 47, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {

  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

  /* Hide desktop login button */
  header > .login-btn {
    display: none !important;
  }

  /* Adjust header diagonal for tablets */
  header::after {
    width: 30%;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  }

  /* Mobile menu slides from RIGHT side - FULL WIDTH */
  nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: 100% !important;
    max-width: 60% !important;
    height: 100vh !important;
    background: #EE007D !important;
    backdrop-filter: blur(10px);
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9999 !important;
    padding: 80px 20px 20px 20px !important;
    margin: 0 !important;
    transition: right 0.4s ease !important;
  }

  nav.active {
    right: 0 !important;
  }

  .menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    flex-wrap: nowrap;
    padding: 0;
    align-items: flex-start;
  }

  .menu li {
    width: 100%;
    text-align: left;
  }

  .menu > li > a {
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    display: flex;
  }

  .menu li a::after {
    display: none !important;
  }

  .dropdown-menu {
    position: static !important;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    animation: none;
    text-align: left;
    width: 100%;
  }

  .dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li {
    text-align: left;
    width: 100%;
  }

  .dropdown-menu li a {
    padding: 18px 20px 18px 40px !important;
    justify-content: flex-start !important;
    text-align: left !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    width: 100% !important;
    display: flex !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  /* Mobile login button inside menu */
  nav .mobile-login-btn {
    display: block;
    width: 100%;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    text-align: center;
  }

  nav .mobile-login-btn a {
    display: block;
    background: #ffffff;
    color: #EE007D !important;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  nav .mobile-login-btn a:hover {
    background: #f0f0f0;
    transform: scale(1.05);
  }
}

/* Mobile - adjust diagonal */
@media (max-width: 768px) {
  header {
    min-height: 60px;
  }

  header::after {
    width: 40%;
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 15% 100%);
  }

  nav {
    padding: 80px 15px 20px 15px !important;
  }
}

@media (max-width: 480px) {
  header {
    padding: 5px 20px;
    min-height: 60px;
  }

  header::after {
    width: 50%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 20% 100%);
  }

  nav {
    padding: 80px 10px 20px 10px !important;
  }

  .menu > li > a {
    font-size: 17px;
    padding: 18px 15px;
  }

  .dropdown-menu li a {
    font-size: 15px !important;
    padding: 16px 15px 16px 35px !important;
  }

  nav .mobile-login-btn {
    padding: 25px 15px;
  }

  nav .mobile-login-btn a {
    font-size: 17px;
    padding: 14px 15px;
    white-space: nowrap;
  }
}
