@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* ==========================================================================
   Design Tokens (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Typography */
  --primary-font: "Roboto", sans-serif;
  --secondary-font: "Oswald", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 36px;
  --font-size-4xl: 48px;
  --line-height-base: 1.5;
  --line-height-tight: 1.25;

  /* Colors */
  --color-primary: #000620;
  --color-primary-dark: #000620;
  --color-primary-light: #f4efea;
  --color-secondary: #ff302d;
  --color-secondary-light: #ff302d;
  --color-background: #000620;
  --color-text: #ffffff;
  --color-gray: #c0c0c0;
  --color-text-gray: #757575;
  --color-border: #e5e7eb;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.05);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Transitions */
  --transition-base: all 0.3s ease-in-out;
  --transition-fast: all 0.2s ease-in-out;
  --transition-speed: 0.4s;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;
}

/* ==========================================================================
   Browser Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Matches typical navbar height */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: var(--primary-font);
  background-color: var(--color-background);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: var(--line-height-tight);
}

p {
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: var(--line-height-base);
  margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Common Components
   ========================================================================== */

.section {
  position: relative;
  padding: var(--spacing-3xl) 0;
}

.section--no-pt {
  padding-top: 0;
}

.section--no-pb {
  padding-bottom: 0;
}

.heading-section {
  margin-bottom: var(--spacing-xl);
}

.heading-section__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-family: var(--primary-font);
}

.heading-section__description {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--primary-font);
  color: #0e0e0e80;
  max-width: 48rem;
  text-align: center;
  color: #ffffff66;
}

.common__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--color-primary);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.common__btn :hover,
.common__btn :focus {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }

  .heading-section__title {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 576px) {
  .heading-section__title {
    font-size: var(--font-size-xl);
  }

  .heading-section__description {
    font-size: var(--font-size-sm);
  }
}

/* ==========================================================================
   Navbar Section Start
   ========================================================================== */
.custom-navbar {
  background: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80px;
  position: relative;
  width: 100%;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  backdrop-filter: blur(100px);
  width: 100%;
}

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

.navbar-brand {
  color: white !important;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.navbar-brand:hover {
  color: white !important;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 25px;
}

.nav-link {
  font-weight: 600;
  text-decoration: none;
  color: white;
  padding: 10px 0;
  letter-spacing: 0.5px;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-secondary);
}

.nav-link::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--color-secondary);
  width: 0%;
  left: 50%;
  bottom: -5px;
  transition: 0.3s ease-in-out;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
  left: 0%;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  fill: white;
}

.nav-item.show .dropdown-icon,
.nav-item:hover .dropdown-icon,
.nav-item.active .dropdown-icon {
  transform: rotate(180deg);
  fill: white;
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: absolute;
  left: 0;
  top: 50px;
  background: #2c2c2c;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 15px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1070;
  border: 1px solid #404040;
}

.nav-item.show .custom-dropdown,
.nav-item:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item-custom {
  display: block;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.dropdown-item-custom:hover {
  background-color: #404040;
  color: var(--color-secondary);
  padding-left: 35px;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-sponsor {
  background: #000dff;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Pulse effect */
.pulse-button {
  animation: pulseEffect 2s infinite;
}

@keyframes pulseEffect {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.pulse-button-dark {
  animation: pulseEffectDark 2s infinite;
}

@keyframes pulseEffectDark {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.btn-sponsor:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
  color: white;
}

.btn-contact {
  background: #ff302d;
  color: white;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: white;
  color: #2c2c2c;
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
  padding: 5px;
}

/* Custom Offcanvas Styles */
.custom-offcanvas {
  width: 320px !important;
  background: linear-gradient(135deg, #000620 0%, #0a0f2a 100%);
  color: white;
  border: none;
  z-index: 1080 !important;
}

.offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.7) !important;
  z-index: 1075 !important;
}

.offcanvas-header-custom {
  padding: 30px 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.offcanvas-title-custom {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.btn-close-custom {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-close-custom:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.offcanvas-body-custom {
  padding: 30px 0;
}

.mobile-nav-item {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 133, 244, 0.2);
  transition: left 0.3s ease;
}

.mobile-nav-link:hover::before {
  left: 0;
}

.mobile-nav-link:hover {
  color: white;
  padding-left: 35px;
}

.mobile-dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  fill: white;
}

.mobile-nav-item.show .mobile-dropdown-icon {
  transform: rotate(180deg);
  fill: #4285f4;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: max-height 0.3s ease;
}

.mobile-nav-item.show .mobile-dropdown {
  max-height: 200px;
}

.mobile-dropdown-item {
  display: block;
  padding: 15px 45px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-dropdown-item::before {
  content: "→";
  position: absolute;
  left: 25px;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
  color: var(--color-secondary);
  padding-left: 55px;
  background: rgba(66, 133, 244, 0.1);
}

.mobile-dropdown-item:hover::before {
  opacity: 1;
}

/* Mobile Action Buttons */
.mobile-action-buttons {
  padding: 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-btn-sponsor {
  background: var(--color-secondary);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-btn-sponsor:hover {
  background: #3367d6;
  color: white;
}

.mobile-btn-contact {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-btn-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Sticky Header Styles */
.main_navbar.sticky {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
  border-bottom: none !important;
}

/* Mobile menu adjustments when sticky */
.main_navbar.sticky .mobile-offcanvas {
  top: 70px;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* For when sticky is being removed (optional) */
.main_navbar:not(.sticky) {
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .custom-navbar {
    padding: 0 1rem;
  }

  .desktop-nav,
  .action-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .navbar-brand img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
  }
}
/* ==========================================================================
   Navbar Section END
   ========================================================================== */

/* ==========================================================================
   Footer Section Start
   ========================================================================== */
.finvest-footer {
  position: relative;
  background: url("../images/footer-bg.png") no-repeat center center;
  background-size: cover;
  color: #ddd;
  padding: 60px 20px 20px;
  overflow: hidden;
}

.finvest-footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--primary-font);
  font-size: 18px;
}
.finvest-footer a {
  color: #ffffff80;
  text-decoration: none;
  font-size: 14px;
}
.finvest-footer p {
  color: #ffffff80;
  font-size: 14px;
}
.finvest-footer a:hover {
  color: #fff;
}
.finvest-footer .finvest-logo {
  max-width: 200px;
}
.finvest-footer .finvest-social-icons a {
  font-size: 20px;
  color: var(--color-text);
  display: inline-block;
  transition: color 0.3s;
  border-radius: 10px;
  margin-right: 16px;
}
.finvest-footer .finvest-social-icons a:hover {
  color: #fff;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff80;
  margin: 30px 0;
}
.finvest-footer .finvest-bottom-bar {
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

.finvest-footer .finvest-bottom-bar p {
  color: #fff;
}
.finvest-footer .finvest-bottom-bar p a {
  color: #00c8ff;
}

@media (max-width: 768px) {
  .finvest__home-footer-pad {
    padding-top: 60px;
  }
}
/* ==========================================================================
   Footer Section End
   ========================================================================== */

/* ==========================================================================
   Common Hero Section Start
   ========================================================================== */

.hero_common--section {
  position: relative;
  background: url("../images/hero-bg.webp") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.hero_common--section .heading-section__title {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--primary-font);
  color: var(--color-text);
}
.hero_common--section .heading-section__description {
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .hero_common--section {
    height: 40vh;
    position: relative;
  }
  .hero_common--section .heading-section__title {
    font-size: 40px;
  }
  .details_common_section .heading-section__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero_common--section {
    height: 50vh;
    position: relative;
  }

  /* Ensure space below hero section */
  .hero_common--section::after {
    content: "";
    display: block;
    height: 80px;
  }

  .hero_common--section .heading-section__description {
    color: var(--color-text);
    max-width: 350px;
  }
}

/* ==========================================================================
    Common Hero Section End
   ========================================================================== */

/* ==========================================================================
   Hero Section Start
   ========================================================================== */
.hero-section {
  background: linear-gradient(
      359.91deg,
      rgba(0, 0, 0, 0) -8.37%,
      rgba(0, 0, 0, 0.4) 99.92%
    ),
    linear-gradient(
      180.15deg,
      rgba(0, 0, 0, 0) 36.67%,
      rgba(0, 6, 32, 0.4) 99.87%
    ),
    url("/assets/images/hero-bg.webp") no-repeat center center;
  background-size: cover;
  min-height: 90vh;
  padding: 6rem 1rem;
  overflow: hidden;
}

.hero-section .hero-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--secondary-font);
  font-size: 4.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.15),
    0 0 20px var(--color-primary);
}

.highlight {
  color: #00f6ff;
}

.hero--description {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  max-width: 100%;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}

.btn-explore {
  background-color: #000dff;
  color: var(--color-primary-light);
  border-radius: 6px;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease !important;
}

.btn-explore:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 4rem 1rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    line-height: 1.4;
    margin-bottom: 1.4rem;
    padding: 0 1rem;
    letter-spacing: 0.3px;
  }

  .btn-explore {
    font-size: 13px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 70vh;
    padding: 3rem 1rem;
  }

  .mobile-container {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    padding: 0 0.8rem;
    letter-spacing: 0.2px;
    word-spacing: 0.5px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.75);
  }

  .hero--description {
    font-size: 1.2rem;
  }

  .btn-explore {
    width: 100%;
    max-width: 180px;
  }
}

/* ==========================================================================
   Hero Section End
   ========================================================================== */

/* ==========================================================================
   Why Choose Section Start
   ========================================================================== */
/* Why Choose Us Section */
.why-choose--us {
  position: relative;
  background-color: var(--color-background);
  color: #fff;
  overflow: hidden;
  padding: 4rem 0;
}

/* Noise overlay effect */
.why-choose--us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* Ensure section content is above noise */
.why-choose--us > * {
  position: relative;
  z-index: 2;
}

/* Headings */
.heading-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.title-highlight {
  color: #ff302d;
}

.why-choose--us-description {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 0.9rem;
  color: #ffffffcc;
  text-align: center;
}

/* Gradient border wrapper */
.finance-card-wrapper {
  background: linear-gradient(
    180deg,
    rgba(255, 48, 45, 0.6),
    rgba(0, 0, 0, 0.6)
  );
  padding: 2px;
  border-radius: 25px;
  height: 100%;
}

/* Card Container */
.finance-card {
  background-color: #000;
  border-radius: 23px;
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

/* Icon Wrapper */
.finance-card-icon {
  background-color: #000dff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Icon Image */
.finance-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card title and description */
.finance-card .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.finance-card .card-description {
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
  color: #ccc;
}

/* Decorative shape */
.card-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .heading-section__title {
    font-size: 1.5rem;
  }

  .why-choose--us-description {
    font-size: 0.75rem;
  }

  .finance-card {
    padding: 2.5rem 1.5rem;
  }

  .finance-card .card-title {
    font-size: 1.3rem;
  }

  .finance-card .card-description {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   Why Choose Section  End
   ========================================================================== */

/* ==========================================================================
   About Section Start
   ========================================================================== */
.about-us-section {
  position: relative;
  background-color: var(--color-background);
  color: #ffffff;
  overflow: hidden;
}

.about-content .btn-explore {
  background-color: var(--color-secondary);
}
.about-content .btn-explore:hover {
  background-color: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
}

.title-highlight {
  color: var(--color-secondary);
}

.about-us-section > * {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}

.about-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-card {
  background-color: #ffffff1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
  }
  .about-content p {
    color: #ccc;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   About  Section End
   ========================================================================== */

/* ==========================================================================
   Our Segment Why Shouid Section Start
   ========================================================================== */

.why-join-section {
  position: relative;
  color: #ffffff;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

/* Blurred background image layer */
.why-join-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/segment-bg.webp") no-repeat center center / cover;
  filter: blur(8px);
  z-index: -2;
}

/* Dark overlay layer */
.why-join-section::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5);  */
  z-index: -1;
}


.why-join-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.why-join-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #dddddd;
}

.why-card {
  background-color: var(--color-background);
  border-radius: 20px;
  padding: 2rem 1rem;
  height: 100%;
  border: 1px solid #ffffff4d;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card-icon {
  width: 60px;
  margin-bottom: 1rem;
  background-color: #000dff;
  padding: 10px;
  border-radius: 100%;
}

.why-card-icon img {
  width: 60px;
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-card-desc {
  font-size: 0.95rem;
  color: #cfcfcf;
}

/* Responsive Text Alignment */
@media (max-width: 576px) {
  .why-join-title,
  .why-join-subtitle {
    text-align: center;
  }

  .why-join-title {
    font-size: 1.8rem;
    font-weight: 700;
  }

  .why-join-subtitle {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: #dddddd;
  }
}

/* ==========================================================================
   Why Shouid Section End
   ========================================================================== */

/* ==========================================================================
   Finvest Numbers Section Start
   ========================================================================== */
.finvest-stats-section {
  position: relative;
  background-color: var(--color-background);
  color: #ffffff;
  overflow: hidden;
  z-index: 1;
}

/* Noise overlay effect */
.finvest-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

.finvest-stats-title {
  font-size: 2rem;
  font-weight: 700;
}

.finvest-stat-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border: 1px solid #ffffff33;
  backdrop-filter: blur(300px);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.finvest-stat-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #cccccc;
}

/* Mobile adjustments */
@media (max-width: 575.98px) {
  .finvest-stat-card {
    padding: 1rem;
  }
  .stat-number {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Finvest Numbers Section End
   ========================================================================== */

/* ==========================================================================
   Partner  Section End
   ========================================================================== */
/* Partners Section - Maintains previous design */
.partners-section {
  position: relative;
  background-color: var(--color-background);
  padding: 80px 0;
  overflow: hidden;
  color: #ffffff;
}

.partners-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/noise.png");
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.partners-section > * {
  position: relative;
  z-index: 2;
}

.section-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partners-scroller {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Gradient fade effect */
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 10%,
    white 90%,
    transparent
  );
}

.partners-track {
  display: flex;
  align-items: center;
  will-change: transform;
  gap: 40px;
  width: max-content;
}

.partner-card {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  min-width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 12px;
}

.partner-card:hover,
.partner-card:focus {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.9);
  transition: filter 0.3s ease;
  border-radius: 12px;
}

.partner-card:hover .partner-logo,
.partner-card:focus .partner-logo {
  filter: grayscale(0%) opacity(1);
}

/* Animation */
@keyframes partnerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .partners-scroller {
    mask: none;
    -webkit-mask: none;
  }

  .partners-track {
    gap: 30px;
  }

  .partner-card {
    min-width: 140px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  .partners-track {
    gap: 25px;
  }

  .partner-card {
    min-width: 120px;
    height: 60px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none !important;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* ==========================================================================
   Partner  Section End
   ========================================================================== */

/* ==========================================================================
   Gallery  Section Start
   ========================================================================== */
.gallery-section {
  position: relative;
  background-color: var(--color-background);
  padding: 80px 20px;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* Content wrapper to ensure content stays above background elements */
.gallery-content {
  position: relative;
  z-index: 2;
}

/* Subtitle */
.gallery-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  margin-top: 15px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

/* Swiper setup */
.gallery-section .swiper {
  padding: 50px 0 60px;
}

.gallery-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.gallery-image {
  width: 100%;
  max-width: 280px;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 1.2s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  color: #000;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  top: 52%;
  transform: translateY(-50%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gallery-bg-shape {
    width: 40%;
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 15px;
  }

  .gallery-image {
    max-width: 100%;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 38px;
    height: 38px;
  }

  .gallery-glow-left,
  .gallery-glow-right {
    width: 200px;
    height: 200px;
    filter: blur(150px);
  }
}

@media (max-width: 576px) {
  .gallery-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
}
/* ==========================================================================
   Gallery  Section End
   ========================================================================== */

/* ==========================================================================
   Event location  Section Start
   ========================================================================== */
/* Event Section Styles */
.event-section {
  background-color: #000447;
  color: #fff;
  width: 100%;
}

.left-content {
  padding: 40px;
}

.event-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}

.event-logo {
  height: 80px;
}

.event-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.event-details p {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.event-details span {
  font-weight: 600;
  display: inline-block;
  min-width: 120px;
}

.event-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .left-content {
    padding: 30px 20px;
  }

  .event-content-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .event-title {
    font-size: 1.5rem;
  }
  .event-details p {
    font-size: 1rem;
  }
  .event-map {
    min-height: 300px;
  }
}

/* ==========================================================================
   Event location  Section End
   ========================================================================== */

/* ==========================================================================
   About Page Mision Vision  Section Start
   ========================================================================== */
.mission-vision-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--color-background);
  color: #ffffff;
  overflow: hidden;
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.mission-vision-section > * {
  position: relative;
  z-index: 2;
}

.mission-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.mission-card,
.vision-card {
  background-color: #000;
  border-radius: 20px;
  position: relative;
  padding: 40px 60px;
  margin-bottom: 60px;
  overflow: hidden;
}

.mission-card {
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 4px solid var(--color-secondary);
}

.vision-card {
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 4px solid var(--color-secondary);
  margin-bottom: 20px;
}

.mission-card .circle-img,
.vision-card .circle-img {
  width: 180px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.mission-card .circle-img {
  left: 0;
}

.vision-card .circle-img {
  right: 0;
}

.mission-content {
  margin-left: 160px;
}

.vision-content {
  margin-right: 160px;
}

.mission-content .card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.mission-content .card-text {
  font-size: 0.95rem;
  color: #ccc;
}

.vision-content .card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.vision-content .card-text {
  font-size: 0.95rem;
  color: #ccc;
}

@media (max-width: 1024px) {
  .mission-card,
  .vision-card {
    padding: 21px 60px;
  }
}

@media (max-width: 768px) {
  .mission-title {
    text-align: center;
  }

  .mission-card,
  .vision-card {
    padding: 80px 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0;
  }

  .mission-card .circle-img,
  .vision-card .circle-img {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    margin-bottom: 20px;
  }

  .mission-content,
  .vision-content {
    margin: 0;
  }
}
/* ==========================================================================
   About Page Mision Vision  Section End
   ========================================================================== */
/* ==========================================================================
   Contact Page Get in touch  Section Start
   ========================================================================== */

.get-in-touch {
  position: relative;
  background-color: var(--color-background);
  color: #ffffff;
  overflow: hidden;
}

.get-in-touch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.get-in-touch > * {
  position: relative;
  z-index: 2;
}

.contact-form-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background-color: #1a1e36;
  color: var(--text-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-md);
  backdrop-filter: blur(10px);
}

.contact-form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.8rem;
  text-align: center;
}

.contact-form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: var(--text-color);
  font-size: 0.95rem;
}

.contact-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.contact-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form-input:focus {
  border-color: var(--color-primary-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.15);
}

.contact-form-input.is-invalid {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

.contact-form-input.is-valid {
  border-color: var(--success-color);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
}

select.contact-form-input {
  cursor: pointer;
}

select.contact-form-input option {
  background-color: #404040;
  color: var(--text-color);
}

textarea.contact-form-input {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.contact-form-error {
  color: red;
  font-size: 0.875rem;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

.contact-form-error.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.character-count {
  position: absolute;
  bottom: -20px;
  right: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
}

.character-count.warning {
  color: var(--warning-color);
}

.character-count.error {
  color: var(--error-color);
}

.contact-form-submit {
  background: #000dff;
  color: var(--text-color);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.contact-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  background-color: #ffff;
  color: var(--color-primary);
}

.contact-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-form-success {
  margin-top: 15px;
  padding: 15px;
  background: linear-gradient(45deg, var(--success-color), #20c997);
  color: white;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  animation: slideIn 0.5s ease;
  display: none;
  width: 100%;
}

.contact-form-success.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 30px 0;
  }

  .contact-form-container {
    margin: 20px;
    padding: 30px 20px;
  }

  .contact-form-title {
    font-size: 2rem;
  }

  .contact-form-group {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .contact-form-container {
    margin: 10px;
    padding: 25px 15px;
  }

  .contact-form-title {
    font-size: 1.75rem;
  }

  .contact-form-input {
    padding: 10px 14px;
  }

  .contact-form-submit {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .contact-form-success {
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* Contact Section */
.contact-section {
  background-color: var(--color-background);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 20px;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.contact-card {
  background-color: #1a1e36;
  border-radius: 16px;
  padding: 20px 20px;
  transition: transform 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 30px;
  height: 30px;
}

.contact-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-info {
  font-size: 1rem;
  color: #cccccc;
  margin-top: 10px;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Page Get in touch  Section End
   ========================================================================== */

/* ==========================================================================
   Gallery Section Start
   ========================================================================== */
.gallery-section {
  background: var(--color-background);
  position: relative;
}

.gallery-container {
  position: relative;
  z-index: 2;

  margin: 0 auto;
  padding: 0 20px;
}

/* Gallery Header */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-subtitle {
  color: #e0e0e0;
  font-size: 1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.8),
    rgba(118, 75, 162, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Lightbox Close Button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-close:active {
  transform: scale(0.95) rotate(90deg);
}

/* Lightbox Container */
.lightbox-container {
  width: 90%;
  height: 90%;
  max-width: 1200px;
  position: relative;
}

.lightbox-swiper {
  width: 100%;
  height: 100%;
}

.lightbox-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Lightbox Navigation */
.lightbox-nav-prev,
.lightbox-nav-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.lightbox-nav-prev:hover,
.lightbox-nav-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox-nav-prev::after,
.lightbox-nav-next::after {
  font-size: 20px;
  font-weight: bold;
}

/* Lightbox Pagination */
.lightbox-pagination {
  bottom: 30px !important;
}

.lightbox-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.lightbox-pagination .swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 2.2rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-container {
    width: 95%;
    height: 85%;
  }

  .lightbox-nav-prev,
  .lightbox-nav-next {
    width: 50px;
    height: 50px;
  }

  .lightbox-nav-prev::after,
  .lightbox-nav-next::after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
  }

  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 18px;
    top: 15px;
    right: 15px;
  }

  .lightbox-nav-prev,
  .lightbox-nav-next {
    width: 45px;
    height: 45px;
  }
}

/* Loading Animation */
.gallery-item.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Smooth Animations */
.gallery-item,
.lightbox-close,
.lightbox-nav-prev,
.lightbox-nav-next {
  will-change: transform;
}

/* Focus States for Accessibility */
.gallery-item:focus,
.lightbox-close:focus,
.lightbox-nav-prev:focus,
.lightbox-nav-next:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
/* ==========================================================================
   Gallery Section End
   ========================================================================== */

/* ==========================================================================
   Why Attnd Section Start
   ========================================================================== */

.why--attend {
  position: relative;
  background-color: var(--color-background);
  color: #ffffff;
  overflow: hidden;
}

.why--attend::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.card-custom {
  background-color: #1a1e36;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-5px);
}

.content-card {
  max-width: 300px;
  margin: 0 auto;
}

.card-custom h5 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.card-custom p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 20px;
}

.btn-register {
  background-color: #000dff;
  color: var(--color-text);
  font-weight: 400;
  padding: 8px 25px;
  font-size: 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-register:hover {
  background-color: #001fcc;
}
/* ==========================================================================
   Why Attnd  Section End
   ========================================================================== */

/* ==========================================================================
   Why Meet  Section Start
   ========================================================================== */

.why--meet {
  position: relative;
  background-color: var(--color-background);
  color: #ffffff;
  overflow: hidden;
}

.why--meet::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.why--meet > * {
  position: relative;
  z-index: 2;
}

.meet-card {
  background-color: #1a1e36;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.3s;
  height: 100%;
}

.meet-card:hover {
  background-color: #1a1e36;
}

.icon-wrapper {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-wrapper img {
  height: 40px;
  width: auto;
  object-fit: cover;
}

.meet-card .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0;
}

.meet-card .card-text {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.btn-sponsor-cta {
  background-color: #000dff;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  transition: 0.3s;
  border: none;
}

.btn-sponsor-cta:hover {
  background-color: #0e4bd4;
}

@media (max-width: 576px) {
  .meet-card {
    flex-direction: row;
    text-align: left;
  }
}
/* ==========================================================================
   Why Meet  Section End
   ========================================================================== */

/* ==========================================================================
  Floor Plan  Section Start
   ========================================================================== */
.floor-plan {
  position: relative;
  background-color: var(--color-background);
  color: var(--color-text);
  overflow: hidden;
}

.floor-img-wrapper {
  width: 100%;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
  Floor Plan  Section End
   ========================================================================== */

/* ==========================================================================
  Soponser FOrm Section Start
   ========================================================================== */
.sponsor-section {
  position: relative;
  padding: 60px 0;
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #ffffff;
  overflow: hidden;
}

.sponsor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-commonbg.png");
  background-repeat: repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.sponsor-section > * {
  position: relative;
  z-index: 2;
}

.sponsor-form-container {
  width: 100%;
  max-width: 900px;
  padding: 40px;
  background: #1a1e36;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.sponsor-form-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.sponsor-form-subtitle {
  font-size: 1.1rem;
  color: #ccc;
}

.sponsor-form-divider {
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, #0d6efd, transparent);
  margin: 30px 0;
}

.sponsor-form-group {
  margin-bottom: 20px;
}

.sponsor-form-label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.sponsor-form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 2px solid #666;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.3s;
}

.sponsor-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.sponsor-form-input:focus {
  border-color: #0d6efd;
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.sponsor-form-error {
  color: red;
  font-size: 0.875rem;
  margin-top: 6px;
  display: none;
}

.sponsor-form-error.show {
  display: block;
}

.sponsor-form-submit {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
  margin: 0 auto;
}

.sponsor-form-submit:hover:not(:disabled) {
  background-color: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.sponsor-form-success {
  margin-top: 25px;
  padding: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .sponsor-form-container {
    padding: 40px 15px;
  }
  .sponsor-form-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .sponsor-form-subtitle {
    font-size: 0.8rem;
    color: #ccc;
  }
}

/* ==========================================================================
  Soponser FOrm Section End
   ========================================================================== */

/* ==========================================================================
  Home Page Opportunities  Section Start
   ========================================================================== */
/* Opportunities Section */
.opportunities-section {
  position: relative;
  background-color: var(--color-background);
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

.opportunities-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.opportunities-card-wrapper {
  background: linear-gradient(
    180deg,
    rgba(255, 48, 45, 0.6),
    rgba(0, 0, 0, 0.6)
  );
  padding: 2px;
  border-radius: 25px;
  height: 100%;
}

/* Cards styling */
.opportunities-card {
  background-color: #000000;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.opportunities-card-img {
  height: 100%;
  display: flex;
  transition: all 0.4s ease;
}

.opportunities-card-img img {
  border-radius: 20px;
}

.opportunities-card:hover {
  background-color: #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.opportunities-card-icon {
  width: 70px;
  margin-bottom: 1.5rem;
  padding: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.opportunities-card-icon img {
  width: 100%;
  height: auto;
}

.opportunities-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.opportunities-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.opportunities-card-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .opportunities-card {
    padding: 2rem 1rem;
  }
  .opportunities-card-title {
    font-size: 1.3rem;
  }
  .opportunities-card-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .opportunities-card-img img {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .opportunities-section {
    padding: 60px 0;
  }

  .opportunities-glow-left,
  .opportunities-glow-right {
    width: 200px;
    height: 200px;
    filter: blur(150px);
  }

  .opportunities-card {
    padding: 1.8rem 1rem;
  }

  .opportunities-card-title {
    font-size: 1.2rem;
  }

  .opportunities-card-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .opportunities-description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .opportunities-card {
    padding: 1.5rem 0.8rem;
  }

  .opportunities-card-icon {
    width: 60px;
    padding: 12px;
  }
}
/* ==========================================================================
  Home Page Opportunities  Section End
   ========================================================================== */
/* ==========================================================================
 Whatsapp Flotoing Button  Section Start
   ========================================================================== */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.floating__btn {
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25d366;

  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Call Button */
.call-button {
  font-size: 23px;
  background-color: #287cd6;
  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Background Circle for WhatsApp */
.whatsapp-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Background Circle for Call */
.call-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 123, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Hover Effects */
.whatsapp-button:hover,
.call-button:hover {
  transform: scale(1.1);
}

/* WhatsApp Pulse Animation */
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Background Pulse Animation */
@keyframes backgroundPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 568px) {
  .floating__btn {
    width: 50px;
    height: 50px;
  }
}
/* ==========================================================================
 Whatsapp Flotoing Button  Section End
   ========================================================================== */
