
/* Basic reset & CSS custom properties (variables) */
:root {
  /* primary accent color used for links, buttons and highlights*/
    --accent: #ff6b1a;
    /* muted text color : used for secondary text and metadata*/
    --muted: #6b7280
  }
   /* universal box sizing -ensures  padding and border are included in width/height*/
  * {
    box-sizing: border-box
  }
  /*================================================================================
                                    Base style
  =================================================================================
  */
  
  /** body size and color*/
  body {
    font-family: Inter, system-ui, Arial, Helvetica, sans-serif;
    margin: 0;
    color: #111;
    background: #fff
  }
  /*container -centered content wrap with max-width*/
  .container {
    max-width:1800px;
    margin: 0 auto;
    padding: 0 16px        
  }
  /* ============================================================================
                                
                                  Header and Navigation 

     =========================================================================*/
   /* site header- sticky navigation bar at the top of the page*/
  .site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 50;
    height: 90px;
  }
    

  
   .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  background: linear-gradient(to right, #ffffff, #ffffff);
}

  /*Logo -site branding*/
  .logo {
    font-weight: 100%;
    color: #111;
    text-decoration: none;
    font-size: 18px
  }
  /*Logo span-accent color for part of logo*/
  .logo span {
    color: var(--accent);
    margin-left: 6px
  }
  /*Main Navigation-Navigation Menu container*/ 
  .main-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 24px;
    
  }
  /*Navigation Links-Individual Navigation items*/
  .nav-link {
    color: #111;
    text-decoration: none
  }
  .logo-img {
  height:250px;
  width: auto;
  object-fit: contain;
}

.logo {
  display: flex;
  align-items: center;
}
/* Main Container */
.container2 {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Page Heading */
.container2 h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #2c3e50;
}

/* Section Styling */
.about {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.about:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Section Headings */
.about h2 {
  color:#20063f;
  margin-bottom: 10px;
}

/* Paragraph Styling */
.about p {
  color: #555;
  font-size: 16px;
}

/* List Styling */
.about ul,
.about ol {
  margin-left: 20px;
  color: #444;
}

.about ul li,
.about ol li {
  margin-bottom: 8px;
}

/* CTA Section Button */
.about button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff7a18;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn.orange {
  background: linear-gradient(45deg, #ff7a18, #ffb347);
  border: none;
  padding: 12px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn.orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* Button Hover */
.about button:hover {
  background-color: #d7b20f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .container h1 {
    font-size: 28px;
  }

  section {
    padding: 15px;
  }
}
 /* ============================================================================
   Footer
   ============================================================================ */

/* Site Footer - Footer container */
  .modal {
    width: 90%;
    max-width: 540px;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #ddd;
    background: #fff;
    position: relative
  }
  /*Dim background-overlay when modal is open*/
  .modal::backdrop {
    background: rgba(0,0,0,0.5);
  }
  /* close button for modal*/
  
  .modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    border: 0;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 4px 8px
  }
  /*modal heading style */
  .modal h2 {
    margin: 0 0 16px 0;
    font-size: 24px
  }
  /* ===============================
   FOOTER STYLING
   =============================== */

.site-footer {
  background: linear-gradient(180deg, #0b0f1a 0%, #1a1f35 100%);
  color: #fff;
  padding: 50px 20px 30px;
  margin-top: 60px;
  position: relative;
}

/* Accent border line on top of footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.8;
}

/* Footer heading style */
.site-footer h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 16px 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

/* Underline effect for footer headings */
.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Paragraph text in footer */
.site-footer p {
  margin: 8px 0;
  line-height: 1.6;
  opacity: 0.85;
  color: #d1d5db;
}

/* Remove default list styles */
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Footer link items hover animation */
.site-footer li {
  margin: 10px 0;
  transition: all 0.3s ease;
}

.site-footer li:hover {
  transform: translateX(5px);
}

/* Footer links */
.site-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Footer link hover effect */
.site-footer a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

/* Footer layout container */
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 30px;
}

/* Social media icons container */
.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.95rem;
}

/* Social icon styles */
.socials a {
  color: #d1d5db;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 6px;
}

/* Social icon hover effect */
.socials a:hover {
  color: var(--accent);
  background: rgba(255, 107, 26, 0.1);
  transform: translateY(-2px);
}

/* Copyright section */
.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  color: #9ca3af;
  font-size: 0.9rem;
  text-align: center;
}
/* ================= CART ================= */

.cart-container {
    position: relative;
    color: #349b3c;
}

.cart-container i {
    font-size: 20px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}

  /* ===============================
   FOOTER RESPONSIVE ADJUSTMENTS
   =============================== */

/* Adjust footer layout for tablets and larger screens */
@media (min-width: 768px) {
  .site-footer {
    padding: 60px 30px 40px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-grid > div {
    flex: 1;
    max-width: 350px;
  }
}
/********Responsive for navbar****************/
/* =========================
   TABLET FIX
========================= */

@media (max-width:1024px){

.site-header .container{
  max-width:100%;
  padding:0 20px;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

/* navbar text */

.nav-link{
  font-size:17px;
}

/* login button fix */

.btn.orange{
  padding:8px 16px;
  font-size:16px;
  white-space:nowrap;
}

/* cart icon spacing */

.cart-container{
  margin-left:5px;
  font-size:20px;
}


}

/* =========================
   MOBILE VIEW (0px - 600px)
   ========================= */

@media (max-width: 600px) {

  .container{
    width:90%;
    margin:auto;
  }

  /* Header */
  .header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
  }
  

  .menu-toggle{
    display:block;
    font-size:22px;
    background:none;
    border:none;
  }

  /* Navigation hidden by default */
  .main-nav{
    display:none;
    flex-direction:column;
    background:white;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    padding:20px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
  }

  .main-nav a{
    padding:10px 0;
  }

  .main-nav.active{
    display:flex;
  }
}
/* Hamburger hidden in desktop */
.menu-toggle{
display:none;
font-size:24px;
background:none;
border:none;
cursor:pointer;
}

/* Mobile Navbar */

@media (max-width:768px){

.header-inner{
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
}

/* Show hamburger */

.menu-toggle{
display:block;
}

/* Hide nav by default */

.main-nav{
display:none;
flex-direction:column;
background:white;
position:absolute;
top:80px;
left:0;
width:100%;
padding:20px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
gap:15px;
}

/* Show when active */

.main-nav.active{
display:flex;
}

.main-nav a{
font-size:18px;
}

/* Adjust logo */

.logo{
position:absolute;
left:20%;
transform:translateX(-50%);
}

.menu-toggle{
position:absolute;
right:15px;
display:block;


}
.logo-img{
height:90px;
right:12px;
}

@media (max-width:768px){
.logo-img{
height:175px;
right:12px;
}
}

}
/*  AUTH OVERLAY */
.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 25, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* MODAL */
.auth-modal {
  display: flex;
  width: 700px;
  max-width: 90%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

/* LEFT PANEL */
.auth-left {
  flex: 1;
  background: linear-gradient(135deg, #ff6b00, #cc9042);
  color: white;
  padding: 30px;
}

/* RIGHT PANEL */
.auth-right {
  flex: 1;
  padding: 30px;
}

/* INPUT */
.auth-right input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
}

/* BUTTON */
.auth-right button {
  width: 100%;
  padding: 12px;
  background:#ff6b00;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

/* ERROR */
.error {
  color: red;
  font-size: 12px;
}

/* TERMS */
.terms {
  font-size: 14px;
}

/* ANIMATION */
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/*  BLOCK PAGE */
body.auth-active {
  overflow: hidden;
}

.auth-active .container {
  filter: blur(6px);
  pointer-events: none;
}
/* CAPTCHA BOX */
.captcha-box {
  margin: 10px 0;
}

/* ROW */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CAPTCHA IMAGE */
#captchaImage {
  height: 45px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* REFRESH BUTTON */
.refresh-btn {
  padding: 6px 10px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 6px;
}

/* INPUT */
#captchaInput {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
}
/* NAME ROW */
.name-row {
  display: flex;
  gap: 10px;
}

.name-row input {
  width: 100%;
}

/* TERMS BOX */
.terms-box {
  background: #f8f9ff;
  border: 1px solid #e0e3ff;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
}

.terms-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.terms-box ul {
  padding-left: 15px;
  font-size: 13px;
}

.terms-box li {
  margin-bottom: 4px;
}
.terms-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
}

.terms-inline input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.resend-btn {
  margin-top: 10px;
  background: transparent;
  color: #ff6b00;
  border: none;
  cursor: pointer;
}
p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
.bg-shape {
  position: fixed;
  border: 1px solid rgba(136, 78, 6, 0.25);
  border-radius: 40px;
  z-index: -1;
}

/* Top Right Shape */
.shape1 {
  width: 320px;
  height: 150px;
  top: 60px;
  right: 60px;
  transform: rotate(25deg);
}

/* Bottom Left Shape */
.shape2 {
  width: 300px;
  height: 150px;
  bottom: 80px;
  left: 40px;
  transform: rotate(-20deg);
}

/* Middle Light Shape */
.shape3 {
  width: 400px;
  height: 180px;
  top: 40%;
  left: 20%;
  transform: rotate(15deg);
  opacity: 0.5;
}
/* ================= BACKGROUND OUTLINE DESIGN ================= */

body {
  position: relative;
  background: #f9f9f9;
  overflow-x: hidden;
}

/* MAIN SHAPES (circles + rounded rectangles outlines only) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;

  background-image:

    /* Circle bottom-left */
    radial-gradient(circle at 10% 80%, 
      transparent 110px, 
      rgba(255,140,0,0.25) 111px, 
      transparent 112px),

    /* Circle right side */
    radial-gradient(circle at 95% 50%, 
      transparent 130px, 
      rgba(255,140,0,0.25) 131px, 
      transparent 132px),

    Rounded rectangle top-left
    /* linear-gradient(rgba(255,140,0,0.25), rgba(255,140,0,0.25)), */

    /* Rounded rectangle top-right */
    /* linear-gradient(rgba(255,140,0,0.25), rgba(255,140,0,0.25)), */

    /* Rounded rectangle bottom */
    linear-gradient(rgba(255,140,0,0.25), rgba(255,140,0,0.25));

  background-size:
    350px 350px,
    400px 400px,
    350px 180px,
    320px 160px,
    500px 200px;

  background-position:
    left bottom,
    right center,
    left top,
    right top,
    center bottom;

  background-repeat: no-repeat;
}


/* OUTER BORDER FRAME */
body::after {
  content: "";
  position: fixed;
  inset: 20px;
  border: 1px solid rgba(255,140,0,0.2);
  border-radius: 30px;
  z-index: -1;
}
/* ===============================
   PRO ABOUT PAGE - LIGHT THEME
   =============================== */
:root {
    --bg-cream: #fdfbf7;      /* Light Beige/Cream */
    --primary-navy: #0c2049;  /* Deep Navy for text/cards */
    --accent-orange:#f58220;; /* Your brand orange */
    --text-main: #0c2247;     /* Dark grey for readability */
    --glass-white: rgba(255, 255, 255, 0.8);
    --border-light: rgba(0, 0, 0, 0.08);
}

body {
    background-color: var(--bg-cream);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Dynamic Background Shapes (Subtle for Light Mode) */
.glass-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
}
.circle-1 { width: 400px; height: 400px; background: var(--accent-orange); top: -100px; right: -100px; }
.circle-2 { width: 300px; height: 300px; background: #3b82f6; bottom: -50px; left: -50px; }

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
}

/* --- Hero Section --- */
.about-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.badge {
    background: #fff1e7;
    color: var(--accent-orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 26, 0.2);
}

.about-hero h1 {
    font-size: 3.8rem;
    color: var(--primary-navy);
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-hero h1 span {
    color: var(--accent-orange);
}

.about-hero p {
    font-size: 1.2rem;
    color: #4a5568;
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 100px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.stat-item h3 { font-size: 2.8rem; color: var(--primary-navy); margin: 0; font-weight: 700; }
.stat-item p { color: var(--accent-orange); font-weight: 600; text-transform: uppercase; margin-top: 5px; }

/* --- Mission & Vision --- */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 100px;
}

.mv-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.mv-card h2 { color: var(--primary-navy); margin-bottom: 15px; }

/* --- What We Offer Grid --- */
.section-title { 
    text-align: center; 
    margin-bottom: 60px; 
    font-size: 2.5rem; 
    color: var(--primary-navy); 
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.feature-card {
    text-align: center;
    padding: 50px 40px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 25px;
}

.feature-card h3 { color: var(--primary-navy); margin-bottom: 15px; }

/* --- Learning Process --- */
.timeline {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto 100px;
}

.t-step { text-align: center; position: relative; flex: 1; }

.t-step span {
    width: 60px;
    height: 60px;
    background: var(--primary-navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.t-step h4 { color: var(--primary-navy); font-weight: 600; }

/* --- Tech Master Section --- */
.tech-stack { text-align: center; margin-bottom: 100px; }

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.t-icon { text-align: center; transition: 0.3s; color: var(--primary-navy); }
.t-icon:hover { color: var(--accent-orange); transform: scale(1.1); }
.t-icon i { font-size: 3.5rem; margin-bottom: 12px; }

/* --- Call to Action --- */
.about-cta {
    text-align: center;
    padding: 100px 50px;
    background: var(--primary-navy);
    border-radius: 40px;
    color: white;
}

.about-cta h2 { font-size: 2.5rem; margin-bottom: 30px; }

.btn.big {
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    background: var(--accent-orange);
    color: white;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn.big:hover { 
    background: #e85a00;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 26, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-hero { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .about-hero h1 { font-size: 2.8rem; }
    .mission-vision { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
    .timeline { flex-direction: column; gap: 40px; }
}
/* ===============================
   RESPONSIVE MEDIA QUERIES
   =============================== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .about-hero p { margin: 0 auto; }
}

/* Mobile & Small Tablets (768px and below) */
@media (max-width: 768px) {
    .about-page { padding: 80px 20px; }
    
    .stats-grid {
        grid-template-columns: 1fr; /* Stack stats */
        padding: 30px;
        gap: 30px;
    }

    .mission-vision {
        grid-template-columns: 1fr; /* Stack Mission/Vision */
    }

    .timeline {
        flex-direction: column; /* Stack Journey steps */
        align-items: flex-start;
        gap: 40px;
        padding-left: 20px;
    }

    .timeline::after {
        width: 2px;
        height: 80%;
        top: 10%;
        left: 47px; /* Align line vertically with icons */
    }

    .t-step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .t-step span { margin: 0; }
    .t-step h4 { margin: 0; }

    .tech-icons { gap: 30px; }
    .t-icon i { font-size: 2.5rem; }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .about-hero h1 { font-size: 2.2rem; }
    .feature-card { padding: 30px 20px; }
}
/* ===============================
   AUTH MODAL BASE FIX
=================================*/
.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

/* MAIN MODAL */
.auth-modal {
  display: flex;
  width: 900px;
  max-width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-height: 90vh;
}

/* LEFT */
.auth-left {
  flex: 1;
  background: linear-gradient(135deg, #0b1f3a, #1a2f4d);
  color: #fff;
  padding: 40px;
  overflow-y: auto;
}

/* RIGHT */
.auth-right {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}

/* INPUTS */
.auth-right input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
}

/* NAME ROW */
.name-row {
  display: flex;
  gap: 10px;
}

.name-row input {
  flex: 1;
}

/* ===============================
   TABLET FIX
=================================*/
@media (max-width: 992px) {

  .auth-modal {
    width: 100%;
    max-height: 90vh;
  }

  .auth-left {
    padding: 25px;
  }

  .auth-right {
    padding: 25px;
  }
}

/* ===============================
   MOBILE FIX (MAIN PART)
=================================*/
@media (max-width: 600px) {

  /* FULLSCREEN MODAL */
  .auth-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .auth-modal {
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  /* HIDE LEFT SIDE (IMPORTANT UX) */
  .auth-left {
    display: none;
  }

  /* RIGHT FULL WIDTH */
  .auth-right {
    width: 100%;
    padding: 20px;
    overflow-y: auto;
  }

  /* TITLE */
  .auth-right h3 {
    font-size: 20px;
  }

  /* STACK NAME INPUTS */
  .name-row {
    flex-direction: column;
  }

  /* CAPTCHA FIX */
  .captcha-row {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .captcha-row img {
    width: 120px;
    height: 40px;
  }

  /* BUTTON FULL WIDTH */
  #continueBtn,
  #verifyBtn {
    width: 100%;
  }

  /* TERMS BOX SCROLL FIX */
  .terms-box {
    max-height: 120px;
    overflow-y: auto;
  }

  /* RESEND TEXT */
  .resend-text {
    font-size: 13px;
    text-align: center;
  }
}
/* ================= NAV CONTAINER ================= */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= NAV LINKS ================= */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* NAV ITEMS */
.nav-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* Hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange);
}

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

/* ACTIVE LINK */
.nav-link.active {
  color: var(--primary-orange);
}

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

/* ================= LOGIN BUTTON ================= */
.btn.orange {
  background: #ff7a18;
  color: var(--white);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.orange:hover {
  background: var(--primary-orange-dark);
  transform: translateY(-1px);
}

/* ================= CART ================= */
.cart-container i {
  font-size: 18px;
  color:var(--primary-navy);
  transition: 0.3s;
}

.cart-container i:hover {
  color: var(--primary-orange);
}

/* Badge */
.cart-badge {
  font-size: 11px;
  font-weight: 600;
  background: red;
  color: var(--white);
  padding: 2px 6px;
  border-radius: 50%;
}

/* UNDERLINE (hidden by default) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2.5px;
  background: var(--primary-orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* HOVER EFFECT */
.nav-link:hover {
  color: var(--navy); /* keep text navy */
}

.nav-link:hover::after {
  width: 100%;
}
/* About Page Footer Styling */
.site-footer {
  background: linear-gradient(180deg, #0b0f1a 0%, #1a1f35 100%);
  color: #ffffff;
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Brand Section */
.footer-logo-img {
  height: 225px;
  margin-bottom: 20px;
  filter: brightness(1.1);
}

.footer-mission {
  color: #b0b8c4;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Titles */
.site-footer h3 {
  color: #ff8c00; /* Orange Accent */
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Link Lists */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color:navy;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

/* Social & Contact */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background: #ff8c00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.footer-contact p {
  color: #b0b8c4;
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #ff8c00;
  width: 20px;
}

/* Mini Newsletter inside Footer */
.mini-input-group {
  display: flex;
  margin-top: 10px;
}

.mini-input-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 4px 0 0 4px;
  color: white;
  width: 100%;
}

.mini-input-group .btn {
  border-radius: 0 4px 4px 0;
  padding: 0 15px;
}

/* Copyright Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
  color: #6c757d;
  font-size: 0.85rem;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-socials, .mini-input-group, .footer-contact p {
    justify-content: center;
  }
}
/*  AUTH OVERLAY */
.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 25, 0.8);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* MODAL */
.auth-modal {
  display: flex;
  width: 700px;
  max-width: 90%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  animation: slideUp 0.4s ease;
}

/* LEFT PANEL */
.auth-left {
  flex: 1;
  background: linear-gradient(135deg, #ff6b00, #cc9042);
  color: white;
  padding: 30px;
}

/* RIGHT PANEL */
.auth-right {
  flex: 1;
  padding: 30px;
}

/* INPUT */
.auth-right input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
}

/* BUTTON */
.auth-right button {
  width: 100%;
  padding: 12px;
  background:#ff6b00;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

/* ERROR */
.error {
  color: red;
  font-size: 12px;
}

/* TERMS */
.terms {
  font-size: 14px;
}

/* ANIMATION */
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/*  BLOCK PAGE */
body.auth-active {
  overflow: hidden;
}

.auth-active .container {
  filter: blur(6px);
  pointer-events: none;
}
/* CAPTCHA BOX */
.captcha-box {
  margin: 10px 0;
}

/* ROW */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* CAPTCHA IMAGE */
#captchaImage {
  height: 45px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* REFRESH BUTTON */
.refresh-btn {
  padding: 6px 10px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 6px;
}

/* INPUT */
#captchaInput {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
}
/* NAME ROW */
.name-row {
  display: flex;
  gap: 10px;
}

.name-row input {
  width: 100%;
}

/* TERMS BOX */
.terms-box {
  background: #f8f9ff;
  border: 1px solid #e0e3ff;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
}

.terms-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.terms-box ul {
  padding-left: 15px;
  font-size: 13px;
}

.terms-box li {
  margin-bottom: 4px;
}
.terms-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
}

.terms-inline input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.resend-btn {
  margin-top: 10px;
  background: transparent;
  color: #ff6b00;
  border: none;
  cursor: pointer;
}
/* --- Our Story Section --- */
.perfect-story {
  padding: 60px 5% 140px;
  /* background-color: #ffffff; */
  overflow: hidden;
}

.story-flex {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Efficient 2-column grid */
  gap: 100px;
  align-items: center;
}

/* --- Left Side: Visuals --- */
.story-visual {
  position: relative;
  opacity: 0; /* Starts hidden for animation */
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-img-wrapper {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 25, 47, 0.12);
  border: 8px solid #fff;
  transition: transform 0.4s ease;
}

.main-img-wrapper:hover {
  transform: scale(1.02) rotate(-1deg);
}

.story-img {
  width: 100%;
  display: block;
}

/* Smart Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px); /* Glassmorphism */
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  z-index: 2;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.badge-top {
  top: -20px;
  right: -30px;
  background: #ff8c00;
  color: #fff;
}

.badge-bottom {
  bottom: 40px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0a192f;
  font-weight: 700;
}

.badge-bottom i { color: #ff8c00; font-size: 1.4rem; }

/* --- Right Side: Content --- */
.story-content-box {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-label {
  color: #ff8c00;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.story-title {
  font-size: 3rem;
  color: #0a192f;
  line-height: 1.1;
  margin-bottom: 25px;
}

.story-title span { color: #ff8c00; }

.highlight-text {
  font-size: 1.25rem;
  color: #0a192f;
  font-weight: 600;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 15px;
}

/* --- Scroll Animation Trigger --- */
.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .story-flex { grid-template-columns: 1fr; gap: 60px; }
  .story-visual, .story-content-box { text-align: center; }
  .badge-bottom { left: 0; bottom: -20px; }
}
/* --- Expanded Our Story Section --- */
.perfect-story {
  padding: 140px 5%; 
  padding: 60px 5% 140px;/* Reduced side padding to allow more width */
  /* background-color: #ffffff; */
  overflow: hidden;
}

.story-wrapper {
  max-width: 1600px; /* Increased max-width for broad screens */
  margin: 0 auto;
}

.story-flex {
  display: grid;
  max-width: 1800px;
  grid-template-columns: 1.2fr 0.8fr; /* Image takes more space than text */
  gap: 80px;
  align-items: center;
}

/* --- Broad Image Styling --- */
.story-visual {
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-img-wrapper-broad {
  width: 100%;
  height: 600px; /* Set a specific height for a broad, cinematic look */
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(10, 25, 47, 0.15);
  border: 10px solid #fff;
}

.story-img-broad {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the broad container perfectly */
  display: block;
  transition: transform 0.6s ease;
}

.main-img-wrapper-broad:hover .story-img-broad {
  transform: scale(1.05);
}

/* Glassmorphism Badges with Larger Proportions */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 25px 35px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 2;
  border: 1px solid rgba(255, 140, 0, 0.3);
}

.badge-top {
  top: -30px;
  right: 20px;
  background: #ff8c00;
  color: #fff;
}

.badge-bottom {
  bottom: 50px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #0a192f;
}

/* --- Content Adjustments --- */
.story-content-box {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-title {
  font-size: 3.5rem; /* Larger font for broader section */
  color: #0a192f;
  margin-bottom: 30px;
}

/* Animation trigger */
.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Responsive: Stack for Tablet/Mobile */
@media (max-width: 1200px) {
  .story-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .main-img-wrapper-broad {
    height: 450px; /* Adjust height for smaller screens */
  }
}
/* ============================================================
   profile-dropdown.css
   Profile icon + dropdown styles — navy & orange only.
   Link this in every page that uses the header.
============================================================ */

/* ── tokens ─────────────────────────────────────────────── */
:root {
  --pd-navy:        #0d1b3e;
  --pd-navy-mid:    #1a2d5a;
  --pd-orange:      #f47b20;
  --pd-orange-dark: #d4631a;
  --pd-orange-pale: #fff3e8;
}

/* ── profile icon button ────────────────────────────────── */
.profile-wrap {
  position: relative;
  display: inline-block;
}

.profile-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pd-orange);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.profile-btn:hover,
.profile-btn.open {
  border-color: var(--pd-orange);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.35);
}

/* ── dropdown panel ─────────────────────────────────────── */
.profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 290px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(9, 19, 40, 0.28);
  overflow: hidden;
  z-index: 9999;
  animation: pdDropIn 0.18s ease;
}

.profile-dropdown.visible {
  display: block;
}

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

/* ── header strip (navy bg with avatar + name/email) ─────── */
.pd-header {
  background: var(--pd-navy);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.pd-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pd-orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}

.pd-info {
  min-width: 0;
}

.pd-name {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.73rem;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── section label ──────────────────────────────────────── */
.pd-section-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9aa3b2;
  padding: 0.6rem 1rem 0.2rem;
}

/* ── list item (fav / saved) ────────────────────────────── */
.pd-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  color: var(--pd-navy);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.pd-item:hover {
  background: var(--pd-orange-pale);
  color: var(--pd-orange-dark);
}

.pd-item svg {
  flex-shrink: 0;
  opacity: 0.65;
}

.pd-item:hover svg {
  opacity: 1;
}

/* ── purchase history row ───────────────────────────────── */
.pd-purchase-row {
  border-left: 3px solid var(--pd-orange);
  margin: 0.2rem 1rem;
  padding: 0.3rem 0.55rem;
  background: var(--pd-orange-pale);
  border-radius: 0 6px 6px 0;
  font-size: 0.76rem;
  color: var(--pd-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pd-purchase-row span {
  font-weight: 600;
  color: var(--pd-orange-dark);
}

/* ── empty state ────────────────────────────────────────── */
.pd-empty {
  font-size: 0.76rem;
  color: #b0b8c9;
  padding: 0.25rem 1rem 0.5rem;
  font-style: italic;
}

/* ── divider ────────────────────────────────────────────── */
.pd-divider {
  height: 1px;
  background: #f0f2f5;
  margin: 0.35rem 0;
}

/* ── logout button ──────────────────────────────────────── */
.pd-logout {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: #c0392b;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
}

.pd-logout:hover {
  background: #fff0f0;
}


/* MOBILE VIEW */
@media (max-width: 768px) {

  .header-inner {
    position: relative;
  }

  /* HAMBURGER BUTTON */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    z-index: 1002;
  }

  .menu-toggle i {
    font-size: 24px;
    color: #000;
  }

  /* MOBILE NAV MENU */
  .main-nav {

    position: absolute;

    top: 70px;
    left: 0;

    max-width: 100%;

    background: #fff;

    padding: 32px 24px;

    display: none;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 22px;

    border-radius: 0 0 16px 16px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    z-index: 1001;
  }

  /* SHOW MENU */
  .main-nav.active {
    display: flex;
  }

  /* NAV LINKS */
  .main-nav .nav-link {
    width: 100%;

    text-align: center;

    font-size: 22px;
    font-weight: 400;

    color: #111;
        padding: 8spx 14px;

  }

  /* LOGIN BUTTON */
  .main-nav .btn {
    width: 100%;
    text-align: center;
  }

  /* CART */
  .cart-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* PROFILE */
  .profile-wrap {
    position: relative;

    width: fit-content;

    margin: 0 auto;
  }

  .profile-btn {
    margin: 0 auto;
  }

  /* DROPDOWN */
  .profile-dropdown {

    display: none;

    position: absolute;

    top: 48px;

    left: 50%;

    transform: translateX(-50%);

    width: 320px;
    max-width: 90vw;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    z-index: 9999;
  }

  .profile-dropdown.show {
    display: block;
  }
  /* CART */
.cart-container {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-container a {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;

  top: -8px;
  right: -10px;

  min-width: 18px;
  height: 18px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 600;

  background: red;
  color: #fff;
}
}
@media (max-width: 768px) {

  .main-nav {

    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    

    background: #fff;

    padding: 90px 24px 40px;

    display: none;

    flex-direction: column;
    align-items: center;

    gap: 28px;

    /* overflow-y: auto; */

    z-index: 1001;
  }

  .main-nav.active {
    display: flex;
  }

}
/* ===============================
   FOOTER STYLING (WHITE TO GREEN)
   =============================== */

.site-footer {
  /* Blends from an elegant off-white down into your sage green */
  background: linear-gradient(to bottom, #f8fafc 0%, #f1f5f9 40%, var(--complient-sage-green, #114d27) 100%);
  
  padding: 80px 0 30px;
  margin-top: 80px;
    border-top: 3px solid #e7e2df;
  position: relative;
  
 
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

/* Responsive drop for mobile screen layouts */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   TEXT COLOR CONTRAST REFINEMENTS
   Because the top half is white, text needs to be dark at 
   the top and stand out cleanly across the whole block.
   =================================================== */

/* Headings (Now dark charcoal so they stand out on the white top half) */
.site-footer h3 {
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ff6b1a;
}

/* Main Brand Text paragraph */
.footer-brand p {
  color: #334155; 
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 350px;
}

/* Navigation Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #334155; 
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ff6b1a;
  padding-left: 5px;
}

/* Contact Info Area */
.footer-contact p {
  color: #334155; 
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: #ff6b1a;
  width: 20px;
}

/* SOCIAL ICONS (Dark borders/icons so they look clean on the bright background) */
.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: rgba(30, 41, 59, 0.08); /* Muted semi-transparent dark ring */
  color: #1e293b !important; 
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  background: #ff6b1a;
  transform: translateY(-5px);
  color: #fff !important;
}

/* Bottom Copyright Strip */
.copy {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
  text-align: center;
  color: #e2e8f0; /* Crisp white-slate text to pop perfectly off the green base */
  font-size: 0.9rem;
}



/* Responsive drop for mobile screen layouts */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}



/* Headings */
.site-footer h3 {
  color: #0b0b45; 
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.site-footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #ff6b1a;
}

/* Main Brand Text paragraph */
.footer-brand p {
  color: #0b0b45; 
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 350px;
}

/* Navigation Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #0b0b45; 
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ff6b1a;
  padding-left: 5px;
}

/* Contact Info Area */
.footer-contact p {
  color: #0b0b45; 
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-contact i {
  color: #ff6b1a;
  width: 20px;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: rgba(11, 11, 69, 0.08); 
  color: #0b0b45 !important; 
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.socials a:hover {
  background: #ff6b1a;
  transform: translateY(-5px);
  color: #fff !important;
}


.copy {
  border-top: 1px solid rgba(11, 11, 69, 0.1);
  padding-top: 25px;
  text-align: center;
  color: #e2e8f0; 
  font-size: 0.9rem;
}
/* ==========================================================================
   GET STARTED NAVBAR BUTTON - EXTRA WIDE EDITION
   ========================================================================== */
.nav-btn-get-started {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  
  /* --- MAXIMUM WIDTH LAYOUT CHANGES --- */
  min-width: 150px !important;              /* Significantly wider baseline footprint */
  height: 52px !important;                 /* Proportional height boost for larger width */
  padding: 0 76px 0 36px !important;       /* Generous horizontal inner spacing */
  box-sizing: border-box !important;
  border-left: 4px;
  
  /* Styling & Colors */
  background-color: #ffffff !important;    
  color: #1a253c !important;               /* Deep Navy Blue text */
  font-family: system-ui, -apple-system, sans-serif !important;
  font-size: 16px !important;              /* Slightly larger text to match size */
  font-weight: 500 !important;
  text-decoration: none !important;
  border: 2px solid #f97316 !important;     /* Clean orange border */
  border-radius: 8px !important;           
  
  /* Vector Arrow Setup */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 32 24' stroke='%23f97316' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2 12h26M20 4l8 8-8 8'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 28px) center !important; 
  
  /* --- EXTRA WIDE ARROW GRAPHIC DIMENSIONS --- */
  background-size: 36px 20px !important;    /* Expanded scale for a longer, more prominent arrow */
  
  transition: all 0.2s ease-in-out !important;
  cursor: pointer !important;
}

/* Dynamic Interactive States */
.nav-btn-get-started:hover {
  background-color: #fff7ed !important;    
  background-position: calc(100% - 22px) center !important; /* Smooth tracking micro-movement */
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15) !important;
}
#authBtn[style*="display: none"],
#authBtn[style*="display:none"] {
    display: none !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* ==========================================================================
   GET STARTED NAVBAR BUTTON - EXTRA WIDE EDITION
   ========================================================================== */
.nav-btn-get-started {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  /* --- MAXIMUM WIDTH LAYOUT CHANGES --- */
  min-width: 150px !important;
  /* Significantly wider baseline footprint */
  height: 52px !important;
  /* Proportional height boost for larger width */
  padding: 0 76px 0 36px !important;
  /* Generous horizontal inner spacing */
  box-sizing: border-box !important;
  border-left: 2px;

  /* Styling & Colors */
  background-color: #ffffff !important;
  color: #1a253c !important;
  /* Deep Navy Blue text */
  font-family: system-ui, -apple-system, sans-serif !important;
  font-size: 22px !important;
  /* Slightly larger text to match size */
  font-weight: 500 !important;
  text-decoration: none !important;
  border: 1px solid #f97316 !important;
  /* Clean orange border */
  border-radius: 8px !important;

  /* Vector Arrow Setup */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 32 24' stroke='%23f97316' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2 12h26M20 4l8 8-8 8'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 28px) center !important;

  /* --- EXTRA WIDE ARROW GRAPHIC DIMENSIONS --- */
  background-size: 36px 24px !important;
  /* Expanded scale for a longer, more prominent arrow */

  transition: all 0.2s ease-in-out !important;
  cursor: pointer !important;
}

/* Dynamic Interactive States */
.nav-btn-get-started:hover {
  background-color: #fff7ed !important;
  background-position: calc(100% - 22px) center !important;
  /* Smooth tracking micro-movement */
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15) !important;
}
/* ─────────────────────────────────────────────────
   MYWEAVERLABS NAVBAR – Simplified Riipen Aesthetic
───────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  max-width: 1500px;
  margin: 0 auto;
}

.logo-img { 
  height:200px; 
  width: auto; 
  display: block; 
}

/* Pure CSS Hamburger Button (No FontAwesome dependency) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1a2b56;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hamburger to X Transformation */
.menu-toggle.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ── Top-level nav ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item { 
  position: relative; 
}

/* All top-level links and toggle buttons */
.nav-link,
.nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a2b56;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .16s, background .16s;
  letter-spacing: .01em;
  outline: none;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link {
  color: #f58220;
}

/* Riipen-style Active Indicator Underline */
.nav-item.open > .nav-link {
  position: relative;
}
.nav-item.open > .nav-link::after {
  content: '';
  position: absolute;
  bottom: -14px; /* Pins nicely underneath the bottom of header layout */
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 2px;
  background: #f58220;
  z-index: 1000;
}

/* Chevron arrow indicator */
.nav-chevron {
  width: 10px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}
.nav-item.open > .nav-link .nav-chevron { 
  transform: rotate(180deg); 
}

/* ─────────────────────────────────────────────
   MEGA / FULL-WIDTH DROPDOWNS (Unified)
───────────────────────────────────────────── */
.mega-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e8eaf0;
  border-bottom: 1px solid #e8eaf0;
  box-shadow: 0 8px 32px rgba(26,43,86,.10);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s cubic-bezier(.4,0,.2,1);
}

.nav-item.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Inner block - scales with maximum header containment metrics */
.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 2rem 36px;
  display: flex;
  gap: 64px;
}

.mega-col {
  min-width: 160px;
}

/* Header Text categorization context tags */
.mega-col-heading {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .09em;

  color: #a0abc0;
  margin: 0 0 14px;
  padding: 0;
}

/* Interactive routes within dropdown cards */
.mega-link {
  display: block;
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a2b56;
  text-decoration: none;
  padding: 6px 0;
  transition: color .15s;
  line-height: 1.4;
}
.mega-link:hover { 
  color: #f58220; 
}

/* Dummy/In-progress styling rule sets */
.mega-link-soon {
  color: #b0bac8;
}
.mega-link-soon::after {
  content: ' — soon';
  font-size: 0.75rem;
  color: #c8d0dc;
}

/* ── Login / Action Interface Button ── */
.nav-btn-login {
  margin-left: 12px;
  padding: 8px 22px;
  background: transparent;
  color: #1a2b56;
  border: 1.5px solid #1a2b56;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'DM Sans', 'Poppins', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, color .18s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-btn-login:hover {
  background: #1a2b56;
  color: #ffffff;
}

/* ── Backdrop Layout ── */
#megaBackdrop {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(10,20,50,.15);
  z-index: 997;
}
#megaBackdrop.active { 
  display: block; 
}

/* ─────────────────────────────
   MOBILE RESPONSIVE OVERRIDES
───────────────────────────────*/
@media (max-width: 900px) {
  .menu-toggle { 
    display: flex; 
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0; 
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 8px 24px rgba(26,43,86,.1);
    padding: 16px;
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .main-nav.open { 
    display: flex; 
  }

  .nav-item { width: 100%; }
  .nav-link { width: 100%; border-radius: 7px; justify-content: space-between; padding: 12px 14px; }
  .nav-item.open > .nav-link::after { display: none; }

  .mega-menu {
    position: static;
    transform: none !important;
    border: none;
    box-shadow: none;
    display: none;
    padding: 0;
    background: #fafafa;
    border-radius: 6px;
  }
  .nav-item.open .mega-menu { 
    display: block; 
    opacity: 1; 
  }

  .mega-inner {
    flex-direction: column;
    gap: 20px;
    padding: 16px;
  }
  
  .mega-col-heading { 
    margin-bottom: 8px; 
  }

  .nav-btn-login { 
    margin: 12px 0 4px; 
    justify-content: center; 
    width: 100%; 
  }
  
  #megaBackdrop { 
    display: none !important; 
  }
}
/* ─────────────────────────────────────────────────
   MYWEAVERLABS NAVBAR – Professional Card Layout
───────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  max-width: 1500px;
  margin: 0 auto;
}

.logo-img { 
  margin-top: 12px;
  height: 220px; 
  width: auto; 
  display: block; 
}

/* Mobile Toggle Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 26px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #1a2b56;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Top Level Navigation links ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { 
  position: relative; 
}


.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item.open > .nav-link {
  color: #f58220;
}

/* Underline Indicator */
.nav-item.open > .nav-link {
  position: relative;
}
.nav-item.open > .nav-link::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 16px;
  right: 16px;
  height: 2px;
  border-radius: 2px;
  background: #f58220;
  z-index: 1000;
}

.nav-chevron {
  width: 10px;
  height: 6px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}
.nav-item.open > .nav-link .nav-chevron { 
  transform: rotate(180deg); 
}

/* ─────────────────────────────────────────────
   PROFESSIONAL CARD-BASED MEGA DROPDOWNS
───────────────────────────────────────────── */
.mega-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #eef0f5;
  border-bottom: 1px solid #eef0f5;
  box-shadow: 0 12px 40px rgba(26, 43, 86, 0.08);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item.open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 2rem;
}

.mega-col {
  width: 100%;
  max-width: 760px; /* Limits width so descriptions remain scannable */
  display: flex;
  flex-direction: column;
}

/* Layout Meta Tags (Small Context indicator text) */
.mega-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f58220;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-col-heading {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2b56;
  margin: 0 0 24px 0;
  padding: 0;
}

/* The Premium Card Item */
.mega-card {
  display: block;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  margin-bottom: 12px;
  cursor: pointer;
}

.mega-card:last-child {
  margin-bottom: 0;
}

/* Hover States for Active Menu Cards */
.mega-card:not(.coming-soon):hover {
  background-color: #f8fafc;
  border-color: #e2e8f0;
  transform: translateY(-1px);
}

.mega-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a2b56;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.mega-card:not(.coming-soon):hover .mega-card-title {
  color: #f58220;
}

.mega-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.5;
}

/* Coming Soon & Inactive Card Configurations */
.coming-soon {
  cursor: default;
  opacity: 0.75;
}

.badge-soon {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #f1f5f9;
  color: #64748b;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* ── Login / Actions Button ── */
.nav-btn-login {
  margin-left: 8px;
  padding: 8px 20px;
  background: transparent;
  color: #1a2b56;
  border: 1.5px solid #1a2b56;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-btn-login:hover {
  background: #1a2b56;
  color: #ffffff;
}

/* Backdrop Overlay */
#megaBackdrop {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(2px); /* Adds high-end glass texture to workspace background */
  z-index: 997;
}
#megaBackdrop.active { 
  display: block; 
}

/* ─────────────────────────────
   MOBILE RESPONSIVE OVERRIDES
───────────────────────────────*/
@media (max-width: 900px) {
  .menu-toggle { 
    display: flex; 
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 68px;
    left: 0; 
    right: 0;
    background: #ffffff;
    border-top: 1px solid #edf2f7;
    box-shadow: 0 10px 25px rgba(26, 43, 86, 0.08);
    padding: 16px;
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .main-nav.open { 
    display: flex; 
  }

  .nav-item { width: 100%; }
  .nav-link { width: 100%; border-radius: 7px; justify-content: space-between; padding: 12px 14px; }
  .nav-item.open > .nav-link::after { display: none; }

  .mega-menu {
    position: static;
    transform: none !important;
    border: none;
    box-shadow: none;
    display: none;
    padding: 0;
    background: #f8fafc;
    border-radius: 6px;
  }
  .nav-item.open .mega-menu { 
    display: block; 
    opacity: 1; 
  }

  .mega-inner {
    padding: 16px;
  }
  
  .mega-col-heading { 
    margin-bottom: 16px; 
    font-size: 1rem;
  }

  .mega-card {
    padding: 12px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
  }

  .nav-btn-login { 
    margin: 12px 0 4px 0; 
    justify-content: center; 
    width: 100%; 
    padding: 12px;
  }
  
  #megaBackdrop { 
    display: none !important; 
  }
}
/* Add space to the left of the cart container on desktop viewports */
.cart-container {
  margin-left: 16px;  /* Adjust this value (e.g., 12px to 24px) to get your preferred spacing */
  margin-right: 20px;  /* Keeps a clean balanced gap before the Login button */
  display: inline-flex;
  align-items: center;
}

/* Optional styling to make sure the icon looks crisp and matches the menu link theme */
.cart-container a {
  color: #1a2b56;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.16s ease;
  padding: 8px;
}

.cart-container a:hover {
  color: #f58220;
}

/* Responsive Override: Adjust layout behavior inside the mobile slide-out drawer */
@media (max-width: 900px) {
  .cart-container {
    margin-left: 14px;  /* Aligns the icon beautifully with text margins on small screens */
    margin-top: 8px;   /* Prevents overlapping vertically on mobile stacks */
    margin-bottom: 8px;
  }
}
/* ============================================================
   PIXEL-PERFECT SHOPPING CART BADGE GEOMETRY
============================================================ */

/* 1. Reset the container wrap to tightly hug the anchor link content dimensions */
.cart-container {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 16px !important; /* Clean horizontal layout gap between Contact and Profile */
    vertical-align: middle !important;
}

/* 2. Turn the link wrapper itself into the absolute coordinate engine layout boundary */
.cart-container a {
    position: relative !important;
    display: inline-block !important; /* Gives it an explicit, predictable bounding box shape */
    line-height: 1 !important;
    padding: 4px !important; /* Inner click padding box */
    text-decoration: none !important;
}

/* 3. The icon itself */
.cart-container .fa-cart-shopping {
    font-size: 20px !important;
    color: #002147 !important; /* Your brand navy base tone */
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4. Target the absolute coordinate positions directly relative to the link boundary wrapper box */
#cartCount.cart-badge {
    position: absolute !important;
    
    /* Lock the alignment precisely to the top right corner vertex edge of the icon path */
    top: -8px !important;
    right: -4px !important;
    
    /* Visual Design Accents & Color Palette Rules */
    /* Premium brand accent orange highlight */
    color: #ffffff !important;
    
    /* Strict font scaling parameters to guarantee vertical center alignment inside the box */
    font-family: 'Inter', sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 16px !important; /* Must exactly match or be 2px less than height to center numbers */
    text-align: center !important;
    
    /* Geometry circle constraints */
    width: 16px !important;
    height: 16px !important;
    border-radius: 50% !important; /* Forces a perfect mechanical circle shape profile */
    
    /* Layout positioning engine mechanics inside the badge container box node */

    align-items: center !important;
    justify-content: center !important;
    
    /* Polished presentation depth tweaks */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

/* 1. HIDDEN STATE: Strict visibility blocks when mouse is outside */
.main-nav .nav-item .mega-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important; /* Prevents ghost clicks when hidden */
    
    /* Smooth visual fade transition */
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

/* 2. ACTIVE STATE: Triggered cleanly when mouse enters the link or dropdown block */
.main-nav .nav-item:hover .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important; /* Re-enables clicking inside the dropdown */
}
/* ============================================================
   REVERSED TYPOGRAPHY HIERARCHY (BIG TAGS, SMALLER SUBHEADS)
============================================================ */

/* 1. Main Accent Label — Swapped to be the dominant, biggest element */
.main-nav .mega-tag {
        font-family: Crimsonpro variablefont wght, sans-serif !important; /* Switched to bold display font */
    font-size: 22px !important;       /* Making it drastically bigger */
    font-weight: 800 !important;       /* Ultra bold structural thickness */
     /* Clean capitalization style */
    letter-spacing: -0.3px !important; /* Tight tracking for pro editorial aesthetic */
    color: #ff6b00 !important;         /* Vibrant brand orange pop */
    margin-bottom: 4px !important;
    display: block !important;
}

/* 2. Secondary Column Sub-Heading — Scaled down to sit under the tag */
.main-nav .mega-col-heading {
   font-family: Dmsans, sans-serif important; /* Switched to cleaner body font */
    font-size: 14px !important;       /* Small, elegant tag scale */
    font-weight: 800 !important;       /* Medium premium weight */
 
    letter-spacing: 1px !important;    /* Slightly spaced out readability */
         /* Muted high-contrast slate tone */
    margin: 0 0 24px 0 !important;     /* Creates breathing room before the cards */
}
@media screen and (max-width: 768px) {
 .logo-img{
    max-height: 190px;
    margin-top:20px;
    margin-left:35px;
   
  }
}
/* 1. Ensure the main container stacks and centers everything vertically */
#mainNav.main-nav.open.active {
    display: flex;
    flex-direction: column;
    align-items: center;      /* Centers items horizontally */
    justify-content: center;   /* Centers items vertically if needed, or use flex-start with gaps */
    text-align: center;
    gap: 10px;                 /* Adds clean, even spacing between all elements */
    width: 100%;
    padding-top: 5px;
}

/* 2. Fix the navigation links so they don't stretch or push content to edges */
@media (max-width: 900px) {
    .nav-link {
        display: inline-flex;     /* Changes from block/flex width 100% */
        width: auto;              /* Lets the link shrink to its text size */
        justify-content: center;  /* Centers text inside the link if width is applied */
        align-items: center;
        padding: 10px 20px;       /* Gives them a nice, clickable touch target */
        text-align: center;
    }
}

/* 3. Ensure the cart and login elements inherit the centering */
.cart-container, 
#authBtn,
.btn.orange {
    margin: 0 auto;           /* Fail-safe backup for horizontal centering */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
/* 1. Tighten the parent container's layout */
#mainNav.main-nav.open.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* CHANGE THIS: Stops elements from stretching vertically to fill the screen */
    justify-content: flex-start; 
    
    /* Adjust this top padding to control exactly how close the links sit to the logo */
    padding-top: 40px; 
    
    /* Spacing between the individual items */
    gap: 15px; 
}

/* 2. Remove any accidental top margins on the first link wrapper */
.nav-item:first-of-type,
.nav-link:first-of-type {
    margin-top: 0;
}
/* ==========================================================================
    NAVIGATION STYLES
   ========================================================================== */

:root {
  --nav-font-family: 'DM Sans', sans-serif;
  --color-text-primary: #111928; 
  --color-text-muted: #4b5563;   /* Slate gray for menu descriptions */
  --color-accent: #047857;       /* Emerald Green accent line / active text */
  --header-bg: #ffffff;
  --dropdown-bg: #ffffff;
}

/* Base Header Setup */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header-bg);
  border-bottom: 1px solid #f3f4f6;
  z-index: 1000;
  font-family: var(--nav-font-family);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px; /* Matching the comfortable height of Riipen's navbar */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navigation Links Style */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  height: 100%;
}

.nav-item {
  display: inline-block;
  height: 100%;
}

/* Exact typography properties from screenshot */
.nav-link, 
.nav-item button.nav-link {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--nav-font-family);
  font-size: 20px;            /* Precise font scale */
  font-weight: 300;           /* Medium weight styling */
  color: var(--color-text-primary);
  text-transform: capitalize; 
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0.25rem;
  position: relative;
  transition: color 0.2s ease;
}

/* Hover and Active Visual states */
.nav-link:hover,
.nav-item:hover button.nav-link,
.nav-link.active {
  color:  #f58220!important;
}

/* Bottom green accent bar matching Riipen's dropdown active state */
.nav-item:hover button.nav-link::after,
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color:  #f58220;
  border-radius: 3px 3px 0 0;
}

/* ==========================================================================
   DROPDOWN / MEGA MENU STRUCTURE OVERRIDE
   ========================================================================== */

/* Full-width container positioned precisely below the navbar boundary */
.mega-menu {
  position: fixed;
  top: 80px; /* Must match .header-inner height exactly */
  left: 0;
  width: 100%;
  background-color: var(--dropdown-bg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #f3f4f6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 999;
}

/* Shows dropdown state using your existing JS trigger mechanisms */
.nav-item:hover .mega-menu,
.nav-item button[aria-expanded="true"] + .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Layout framework matching Screenshot (15).jpg */
.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem 2rem; /* Clean asymmetric padding layout */
  display: flex;
  flex-direction: column;
}

/* Main Top Section Heading */
.mega-col-heading {
  font-family: var(--nav-font-family);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem 0;
}

/* Subheading Content Stack Style */
.mega-tag {
  font-family: var(--nav-font-family);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  display: block;
}

/* List/Card layout for inner column references */
.mega-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

/* Links inside dropdown mapping to screenshot styling */
.mega-card {
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease;
}

.mega-card-title {
  font-family: var(--nav-font-family);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color 0.15s ease;
}

.mega-card:hover .mega-card-title {
  color: var(--color-accent);
}

/* Hide descriptions to match cleaner text alignment in screenshot 2 */
.mega-card-desc, .badge-soon, .mega-tag {
  display: none !important; 
}
/* ==========================================================================
   DROPDOWN SPACING ADJUSTMENTS
   ========================================================================== */

/* Inner container padding - reduced top/bottom padding for a tighter fit */
.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem 2rem 2rem; /* Reduced from 2.5rem and 4rem */
  display: flex;
  flex-direction: column;
}

/* Main Heading margin - reduced bottom gap */
.mega-col-heading {
  font-family: var(--nav-font-family);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0; /* Cut in half from 1.5rem */
}

/* Subheading Content Stack Style */
.mega-tag {
  font-family: var(--nav-font-family);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem; /* Reduced from 1rem */
  display: block;
}

/* Column Link Stack - controls the gap between individual links */
.mega-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem; /* Tightened gap between lines from 0.85rem */
}

/* Individual Link Container adjustments */
.mega-card {
  text-decoration: none;
  display: block;
  padding: 0.15rem 0; /* Small vertical padding target for easy clicking */
  transition: transform 0.2s ease;
}

.mega-card-title {
  font-family: var(--nav-font-family);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.2; /* Tighter text tracking */
  transition: color 0.15s ease;
}

.mega-card:hover .mega-card-title {
  color: var(--color-accent);
}

/* Keeps descriptions hidden to maintain clean layout */
.mega-card-desc, .badge-soon, .mega-tag {
  display: none !important; 
}
/* ==========================================================================
   MYWEAVERLABS - ABOUT PAGE TYPOGRAPHY UNIFICATION
   ========================================================================== */

/* 
   1. Global Element Target:
   Forces the primary font stack across all core HTML structural elements.
*/
html, 
body, 
h1, h2, h3, h4, h5, h6, 
p, span, a, button, input, label, textarea, div, li {
  font-family: 'DM Sans', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 
   2. Layout-Specific Class Overrides:
   Ensures that modern UI elements, hero segments, and custom cards 
   maintain typographic continuity.
*/
.about-hero h1,
.about-hero h1 span,
.perfect-story .story-title,
.perfect-story .story-title span,
.story-label,
.highlight-text,
.cta-mini p,
.stats-grid .stat-item h3,
.stats-grid .stat-item p,
.mission-vision h2,
.mission-vision p,
.offer-section .section-title,
.feature-card h3,
.feature-card p,
.process-section .section-title,
.timeline .t-step h4,
.tech-stack h2,
.tech-stack p,
.about-cta h2,
.ui-card span,
.floating-badge span {
  font-family: 'DM Sans', sans-serif !important;
}

/* 
   3. Header, Footer, and Auth Modal Specific Classes:
   Bridges typographic alignment between the layout framework and the modal architecture.
*/
.mega-col-heading,
.mega-card-title,
.mega-card-desc,
.nav-link,
.nav-btn-get-started,
.auth-modal h2,
.auth-modal h3,
.auth-modal p,
.auth-benefits p,
.footer-mission,
.footer-links h3,
.footer-contact h3 {
  font-family: 'DM Sans', sans-serif !important;
}