@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap");

:root {
  --brand-blue: rgb(51, 2, 91);
  --electric-cyan: rgb(94, 34, 144);
  --surface-white: #ffffff;
  --ink-black: #000000;
  --bg-light: #ffffff;
  --glass-surface: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --neon-violet: #b66df2;
  --neon-violet-glow: rgba(157, 78, 223, 0.4);
  --neon-violet-hover: #7b2cbf;
  --electric-lavender: #f1f1f1;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Color Palette Variables Initialization */
body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-light);
  color: var(--ink-black);
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/*=========================================================== HEADER STYLING ===========================================================*/

/* Header Navbar Rules */
.main-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 0, 181, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  box-sizing: border-box;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--brand-blue);
  letter-spacing: -0.5px;
}
.logo-accent {
  color: var(--ink-black);
  font-weight: 500;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brand-blue);
  cursor: pointer;
  z-index: 1100;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--ink-black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Buttons layout */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
.btn-electric {
  background: var(--brand-blue);
  color: var(--surface-white);
  box-shadow: 0 8px 24px rgba(30, 0, 181, 0.2);
}
.btn-electric:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(30, 0, 181, 0.35);
  background: var(--neon-violet);
}
.nav-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 18px 38px;
  font-size: 1.05rem;
  gap: 12px;
}
.btn-lg:hover .btn-icon {
  transform: translateX(6px);
}
.btn-icon {
  transition: transform 0.3s ease;
}

/* ==============FOIOTER DESIGN===========
================== */

/* Footer */
.main-footer {
  padding: 40px 0;
  background: var(--ink-black);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  box-sizing: border-box;
}

/*=========================================================== RESPONSIVE STYLES ===========================================================*/

/* ==========================================================================
   RESPONSIVE GRID ADAPTERS ENGINE
   ========================================================================== */
@media (max-width: 992px) {
  .main-header {
    padding: 30px 0 10px;
  }
  .logo {
    font-weight: 600;
    font-size: 1rem;
  }
  .logo-accent {
    color: var(--ink-black);
    font-weight: 300;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px 40px 30px;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1050;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 8px 0;
  }
  .nav-btn {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
  }
}
