/* ==========================================
   1. GLOBAL RESET & BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page Protection for Mobile Overflow */
html, body {
  width: 100%;
  overflow-x: hidden; /* Screen se bahar kuch nahi bhagega */
  background-color: #13242d;
  color: #ffffff;
  min-height: 100vh;
}

/* ==========================================
   2. MAIN HEADER CONTAINER
   ========================================== */
.header-container {
  width: 100%;
  background-color: #0B0F17;
  border-bottom: 1px solid #333333;
  
  /* Yeh raha aapka sticky fix */
  position: sticky;
  top: 0;
  z-index: 1000; 
}
/* ==========================================
   3. TOP BAR LAYOUT (Desktop Default)
   ========================================== */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
}

/* Logo Styling */
.logo a {
  color: #ffffff;
  font-weight: bold;
  font-size: 32px;
  text-decoration: none;
  letter-spacing: 1px;
}
.logo sub {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #cacaca;
  margin-left: 2px;
}

/* Search Box Base Styling (Desktop) */
.search-box {
  flex: 1;
  max-width: 350px;
  margin: 0 15px;
}

.search-box input {
  width: 100%;                  /* Fixed 350px ki jagah 100% responsiveness */
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;              /* 16px font se mobile auto-zoom rukega */
  outline: none;
  transition: border-color 0.2s ease;
}

.search-box input::placeholder {
  color: #aaaaaa;
}

.search-box input:hover,
.search-box input:focus {
  border-color: #2563eb;        /* Royal Blue */
}


/* ==========================================
   4. MOBILE RESPONSIVE RULES (FIX FOR MOBILE)
   ========================================== */
@media (max-width: 768px) {
  .top-bar {
    padding: 12px 15px;         /* Mobile par padding kam ki */
    flex-wrap: wrap;            /* Mobile par elements ko wrap hone do */
    gap: 10px;
  }

  .logo a {
    font-size: 26px;            /* Mobile par Logo thoda compact */
  }

  /* Search Box Ko Mobile me Logo ke NEECHE poori line me set karega */
  .search-box {
    order: 3;                   /* Logo/Login ke neeche aayega */
    width: 100%;
    max-width: 100%;
    margin: 8px 0 0 0;
  }

  .search-box input {
    width: 100%;
  }
}

/* Top Right Actions (Store & Login Container) */
.top-actions {
  display: flex;
  border-radius: 6px;
  align-items: center;
  gap: 25px;
}

/* Individual Store/Login Button Styles */
.action-item {
  display: flex;
  align-items: center;
  border: 2px solid #1a2332;
  border-radius: 20px;
  border-width: 1px;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  padding: 5px 15px;
  background-color: transparent; /* Shuruat me transparent rahega */
  
  /* Transition me background-color add kiya taaki color smoothly fill ho */
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  
  cursor: pointer; /* Hover par hand icon dikhane ke liye */
}

/* Hover Effect */
.action-item:hover {
  background-color: #007979; /* GALTI REPLACED: 'buttn-color' ki jagah 'background-color' */
  border-color: #007979;     /* Optional: Border ko bhi same red color kar diya */
  color: #ffffff;
}

/* ==========================================
   4. DIVIDER LINE
   ========================================== */
.nav-divider {
  border: none;
  border-top: 1px solid #444444; /* Line between top and bottom bar */
  margin: 0;
}

/* ==========================================
   5. BOTTOM NAVIGATION ROW (Sticky Fix)
   ========================================== */
.bottom-nav {
  padding: 12px 30px;
  background-color: #0B0F17; /* Background color dena zaroori hai taaki peeche ka text na dikhe */
  position: sticky;
  top: 0;
  z-index: 1000;             /* Taaki baaki content iske neeche se guzre */
  border-bottom: 1px solid #1a2332; /* Optional: Neeche ek halki line ke liye */
}

/* Unordered List Styling for Navigation Items */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px; /* Space between links */
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 4px; /* Underline aur text ke beech thoda space */
  transition: color 0.3s ease;
}

/* Underline Animation Line setup */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: #ffffff;
  
  /* Smooth Directional Animation Magic */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover par Left to Right expand hoga */
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Hover par Text ka Color */
.nav-links a:hover {
  color: #ffffff;
}

/* Contact Hover Wrapper */
.contact-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

/* Hover Card (Initially Hidden) */
.contact-hover-card {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background-color: #111827;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: left;
}

/* Unordered List Styling for Navigation Items */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px; /* Space between links */
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 4px; /* Underline aur text ke beech thoda space */
  transition: color 0.3s ease;
}

/* Underline Animation Line setup */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: #ffffff;
  
  /* Smooth Directional Animation Magic */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover par Left to Right expand hoga */
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Hover par Text ka Color */
.nav-links a:hover {
  color: #ffffff;
}

/* Contact Hover Wrapper */
.contact-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

/* Hover Card (Initially Hidden) */
.contact-hover-card {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background-color: #111827;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: left;
}
/* ==========================================
   1. GLOBAL RESET & BODY STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Dark Background */
body {
  background-color: #0B0F17;
  color: #ffffff;
}

/* ==========================================
   2. HERO SECTION CONTAINER
   ========================================== */
.hero-section {
  display: flex;
  flex-direction: column; /* Items ko ek ke niche ek rakhne ke liye */
  align-items: center;    /* Horizontally center karne ke liye */
  justify-content: center;/* Vertically center karne ke liye */
  text-align: center;
  padding: 100px 20px;    /* Top/Bottom padding - size apne hisab se kam/zyada kar sakte hain */
  min-height: 60vh;       /* Screen ka 60% height lene ke liye */
}

/* ==========================================
   3. MAIN HEADLINE STYLING
   ========================================== */
.hero-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  max-width: 900px;       /* Text ko zyadatar screen par failne se rokne ke liye */
  line-height: 1.4;
  margin-bottom: 20px;    /* Headline aur Sub-text ke beech gap */
}

/* ==========================================
   4. SUB-TEXT STYLING
   ========================================== */
.hero-subtitle {
  font-size: 20px;
  color: #cccccc;         /* Light gray text */
  margin-bottom: 35px;    /* Sub-text aur buttons ke beech gap */
}

/* Sub-text me 'services' ko bold/highlight karne ke liye */
.hero-subtitle strong {
  color: #ffffff;
  font-weight: bold;
}

/* ==========================================
   5. BUTTONS CONTAINER & BUTTON STYLES
   ========================================== */
.hero-buttons {
  display: flex;
  gap: 20px;               /* Dono buttons ke beech ka distance */
  align-items: center;
}

/* Base style for both buttons */
.hero-btn {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;     /* Button ki height aur width control karne ke liye */
  border-radius: 50px;      /* Rounded corners */
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Button 1 (Web & Digital) */
.primary-btn {

  background-color: transparent;
  color: #fcfbfb;
  border: 1px solid #ffffff;
}

.primary-btn:hover {
   
  background-color: #eb1d21;
  color: #fffefe;
}

/* Button 2 (TECH) */
.secondary-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.secondary-btn:hover {
  background-color: #eb1d21;
  color: #ffffff;
}

/* ==========================================
   CTA SECTION STYLING
   ========================================== */
.cta-section {
  width: 100%;
  background-color: #0B0F17; /* Dark Background */
   border-top: 1px solid #1a2332;
   border-bottom: 2px solid #1a2332;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px; /* Features aur Note box ke beech space */
}

/* 1. Features Row Container */
.cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px; /* Emojis ke beech ka distance */
  flex-wrap: wrap; /* Mobile view par line change karne ke liye */
}

/* Single Feature Item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

/* Emoji Icon Styling */
.feature-icon {
  font-size: 20px;
}

/* 2. Note / Highlight Text Styling */
.cta-note {
  text-align: center;
}

.note-highlight {
  background-color: #ffff00; /* Yellow Highlight Color */
  color: #000000;            /* Text color inside highlight */
  padding: 6px 14px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;        /* Smooth edges */
  display: inline-block;
}
/* FAQ Section Styling */
.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #121212;
  border: 1px solid #333333;
  border-radius: 6px;
  padding: 15px 20px;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: #ffffff;
}

.faq-question {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  list-style: none; /* Default arrow hide karne ke liye */
  position: relative;
}

/* Custom Accordion Arrow (+ indicator) */
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '-';
}

.faq-answer {
  margin-top: 12px;
  color: #cccccc;
  font-size: 15px;
  line-height: 1.6;
}
/* ==========================================
   FOOTER STYLING
   ========================================== */
.site-footer {
  background-color: #080e18; /* Dark Navy Background */
  color: #ffffff;
  padding: 60px 40px 30px 40px;
  font-family: Arial, sans-serif;
}

/* 1. TOP 5 COLUMNS LAYOUT */
.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 Barabar Columns */
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #a0aab8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* 2. MIDDLE BRANDING & SOCIALS */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}

/* Brand OMX Text */
.footer-brand h2 {
  font-size: 48px;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.footer-brand span {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #a0aab8;
}

/* Social Icons (Clean without box) */
.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-socials a {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  color: #a0aab8;
  transform: translateY(-2px);
}

/* 3. DIVIDER LINE */
.footer-divider {
  border: 0;
  border-top: 1px solid #1a2332;
  margin: 20px 0 25px 0;
}

/* 4. BOTTOM COPYRIGHT & NOTES */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #a0aab8;
}

.optout-link {
  text-align: right;
  margin-bottom: 15px;
}

.optout-link a {
  color: #a0aab8;
  text-decoration: underline;
  font-size: 12px;
}

.copyright-text {
  line-height: 1.8;
  margin-bottom: 25px;
}

.copyright-text a {
  color: #a0aab8;
  text-decoration: underline;
}

.copyright-text strong {
  color: #ffffff;
}

.footer-note {
  font-size: 13px;
  color: #ffffff;
}

/* RESPONSIVE DESIGN (FOR MOBILE/TABLET) */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .optout-link {
    text-align: center;
  }
}
/* Universal Reset for Page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0B0F17; /* Dark Tech Theme */
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Common Section Container Styling */
section {
  padding: 60px 8%;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

/* 1. HERO SECTION */
.hero-section {
  text-align: center;
  padding: 100px 10% 80px;
}

.hero-title {
  font-size: 42px;
  max-width: 800px;
  margin: 0 auto 20px;
  font-weight: 700;
}

.hero-subtitle {
  color: #a0aab8;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.2s ease;
}

.btn-primary {
  border: 1px solid #334155;
  color: #ffffff;
}

.btn-primary:hover {
   background-color: #1e293b;
}

.btn-secondary {
  border: 1px solid #334155;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #1e293b;
}

/* 2. CORE SERVICES (2x2 GRID) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.service-card {
  border: 1px solid #1e293b;
  background-color: #111827;
  padding: 30px;
  border-radius: 8px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: #94a3b8;
  font-size: 14px;
}

/* 3. FEATURED WORK (3 CARDS) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.portfolio-card {
  border: 2px solid #334155; /* 2px Border as per design */
  background-color: #111827;
  padding: 20px;
  border-radius: 8px;
}

.portfolio-preview {
  height: 160px;
  background-color: #1e293b;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 15px;
}

.portfolio-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.portfolio-card p {
  color: #94a3b8;
  font-size: 13px;
}

/* 4. TECH STACK HORIZONTAL BAR */
.tech-stack-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #111827;
  border-top: 1px solid #1e293b;
  border-bottom: 1px solid #1e293b;
  padding: 25px;
  flex-wrap: wrap;
}

.tech-label {
  font-weight: bold;
  color: #94a3b8;
}

.tech-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.badge {
  background-color: #1e293b;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: #38bdf8;
  border: 1px solid #334155;
}

/* 5. CTA BANNER */
.cta-banner-section {
  padding: 80px 8%;
}

.cta-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #334155;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.cta-banner h2 {
  font-size: 26px;
  max-width: 650px;
}

/* RESPONSIVE DESIGN (Mobile / Tablet) */
@media (max-width: 850px) {
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 30px;
  }
}

 /*   ORDER.HTMML KI STYLING  */

    .order-container {
      max-width: 600px;
      margin: 60px auto;
      padding: 40px;
      background-color: #111827;
      border: 1px solid #1e293b;
      border-radius: 12px;
    }

    .order-container h1 {
      font-size: 28px;
      margin-bottom: 10px;
      text-align: center;
    }

    .order-container p {
      color: #94a3b8;
      text-align: center;
      margin-bottom: 30px;
      font-size: 14px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
      color: #e2e8f0;
    }

    .form-group input, 
    .form-group select {
      width: 100%;
      padding: 12px;
      background-color: #0b0f17;
      border: 1px solid #334155;
      border-radius: 6px;
      color: #ffffff;
      font-size: 15px;
      outline: none;
    }

    .form-group input:focus, 
    .form-group select:focus {
      border-color: #38bdf8;
    }

    .submit-btn {
      width: 100%;
      padding: 14px;
      background-color: #ffffff;
      color: #0b0f17;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.2s ease;
    }

    .submit-btn:hover {
   background-color: #ffffff;
   color: #000000;
}

/* QR Container Box */
.qr-placeholder {
  width: 160px;          /* Box ki width fix kar do */
  height: 160px;         /* Box ki height fix kar do */
  margin: 0 auto 12px;   /* Center align karne ke liye */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a; /* Agar dark theme ka background chahiye */
  border-radius: 10px;    /* Smooth corners */
  padding: 8px;           /* Padhne me clean lage */
  border: 1px solid #1e293b;
}

/* Inside Image (Actual QR Image) */
.qr-placeholder img {
  width: 100%;           /* Container ke hisab se 100% fill hoga */
  height: 100%;
  object-fit: contain;   /* Image Stretch nahi hogi */
  border-radius: 6px;
}
  
    /*      thank you page styling */

     .success-container {
      max-width: 550px;
      margin: 100px auto;
      padding: 50px 30px;
      background-color: #111827;
      border: 1px solid #1e293b;
      border-radius: 12px;
      text-align: center;
    }

    .success-icon {
      font-size: 50px;
      color: #22c55e;
      margin-bottom: 20px;
    }

    .success-container h1 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .success-container p {
      color: #94a3b8;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .back-btn {
      display: inline-block;
      padding: 12px 28px;
      background-color: #ffffff;
      color: #0b0f17;
      text-decoration: none;
      font-weight: bold;
      border-radius: 6px;
      font-size: 14px;
    }

    .back-btn:hover {
      background-color: #e2e8f0;
    }

    /* ==========================================
   FLOATING BACK BUTTON (FOR EASY TESTING)
   ========================================== */
.floating-back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999; /* Dusre elements ke uper dikhne ke liye */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: rgba(17, 24, 39, 0.85); /* Semi-transparent dark background */
  border: 1px solid #334155;
  color: #ffffff;
  text-decoration:aliceblue;
  font-size: 12px;
  font-weight: 500;
  border-radius: 30px; /* Modern pill shape */
  backdrop-filter: blur(8px); /* Smooth blur effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.floating-back-btn:hover {
 /* background-color: #1e293b;
  border-color: #38bdf8;*/
  color: #f5f8fa;
  transform: translateX(-3px); /* Hover par thoda left slide hamesha responsive lagega */
}

     /* mini footer styling  */
    .order-footer {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.order-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.order-footer a {
  color: #94a3b8;
  text-decoration: none;
  margin-left: 15px;
}

.order-footer a:hover {
  color: #38bdf8;
}

                                     /* ABOUT SECTION STYLES */
.about-section {
  padding: 80px 8%;
  background-color: #0B0F17;
  color: #ffffff;
}

.about-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.about-header h2 {
  font-size: 32px;
  margin: 15px 0 10px;
}

.about-header p {
  color: #94a3b8;
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.about-card {
  background-color: #111827;
  border: 1px solid #1e293b;
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}

.card-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.about-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.about-footer-tag {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  color: #38bdf8;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Step visibility rules */
.checkout-step {
  display: none;
}
.checkout-step.active {
  display: block;
}

/* Header links inside step */
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.back-link {
  background: none;
  border: none;
  color: #38bdf8;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
}
.close-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 22px;
}

/* Selection Cards for Step 1 */
.cards-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 20px 0;
}
.selection-card {
  cursor: pointer;
}
.selection-card input {
  display: none;
}
.selection-card .card-content {
  background: #0b0f17;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}
.selection-card input:checked + .card-content {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.05);
}

/* Summary Box & Payment Layout */
.order-summary-box {
  background: #0b0f17;
  border: 1px solid #1e293b;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}
.payment-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}
.payment-card {
  background: #0b0f17;
  border: 1px solid #1e293b;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}
.success-screen {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  font-size: 40px;
  color: #22c55e;
  margin-bottom: 15px;
}
 
/* legal.html styling*/

.legal-container {
  max-width: 950px;
  margin: 50px auto;
  padding: 0 20px;
}

.legal-subtitle {
  color: #64748b;
  font-size: 13px;
  margin-top: 5px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  margin-top: 35px;
  background-color: #111827;
  border: 1px solid #1e293b;
  border-radius: 12px;
  padding: 25px;
}

.legal-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-right: 1px solid #1e293b;
  padding-right: 15px;
}

.tab-item {
  padding: 12px 14px;
  color: #94a3b8;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 6px;
  transition: all 0.2s ease;
}

.tab-item.active, .tab-item:hover {
  color: #ffffff;
  background-color: #1e293b;
  font-weight: 600;
}

.tab-item.active {
  color: #38bdf8;
}

.legal-content {
  padding-left: 10px;
}

.policy-section {
  display: none;
}

.policy-section.active {
  display: block;
}

.policy-section h2 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 10px;
}

.policy-section h3 {
  font-size: 15px;
  color: #cbd5e1;
  margin: 18px 0 8px;
}

.policy-section p, .policy-section li {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 13.5px;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 8px;
}
/* Articles Section CSS */
.articles-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 40px;
}

.articles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Article Card */
.article-card {
  background-color: #121212;
  border: 1px solid #222222;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: #ffffff;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-content {
  padding: 20px;
}

.article-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-title {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-excerpt {
  color: #888888;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-btn {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: #eb1d21; /* Red fill effect matching your brand */
}

/* =========================================================
   3-LINE HAMBURGER & SIDE DRAWER MENU STYLES (Extra Code)
   ========================================================= */

/* 1. Hamburger Button (Placed inside bottom-nav left side) */
.bottom-nav {
  display: flex;
  align-items: center;
}

.menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
  margin-right: 15px; /* Navbar links se gap dene ke liye */
  flex-shrink: 0;
}

.menu-btn .bar {
  height: 2.5px;
  width: 100%;
  background-color:#ffffff; /* Apne navbar text color ke hisab se badal sakte hain */
  border-radius: 2px;
}

/* 2. Side Drawer (Click hone par hi khulega) */
.menu-drawer {
  position: fixed;
  top: 0;
  left: -280px; /* Hidden by default off-screen */
  width: 260px;
  height: 100vh;
  background-color: #0B0F17;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  color: #fefdfd;
}

/* Jab JS dwara 'active' class add hogi tab khulega */
.menu-drawer.active {
  left: 0;
}

/* Drawer Header */
.drawer-header {
  font-style: arial;
  padding: 16px 20px;
  background-color:  rgba(0, 0, 0, 0.15);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.close-btn {
  background:none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Drawer Links */
.drawer-links {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.drawer-links li a {
  display: block;
  padding: 12px 20px;
  color: #f2f4f8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid #1e293b
}

/* Background Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9998;
}

.overlay.active {
  display: block;
}
/* --- नए Side Menu (Drawer) के लिंक्स पर 'पानी' Hover इफ़ेक्ट --- */
.menu-drawer .drawer-links li a {
  /* ट्रांज़िशन इसे स्मूथ बनाएगा */
  transition: all 0.3s ease;
}

/* कर्सर ले जाने पर (Hover) इफ़ेक्ट */
.menu-drawer .drawer-links li a:hover {
  background-color: rgba(175, 238, 238, 0.3); /* हल्का 'पानी' (PaleTurquoise) कलर */
  color: #eaf0f1; /* टेक्स्ट का रंग गहरा नीला ताकि वो दिखे */
  padding-left: 25px; /* हल्का सा दाईं ओर खिसकेगा, ये "पानी" जैसा मूवमेंट देगा */
}
/* ===================================================
   ULTIMATE MOBILE RESPONSIVE FIX (High Priority)
   =================================================== */
@media screen and (max-width: 768px) {
  
  /* 1. Header Row ko Vertical Stack banao */
  header.header-container .top-bar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    gap: 8px !important;
  }

  /* 2. Logo Size Chhota karo */
  header.header-container .logo a {
    font-size: 24px !important; /* Text bada hone se roka */
    line-height: 1.1 !important;
  }
  header.header-container .logo sub {
    font-size: 10px !important;
  }

  /* 3. Actions (Store & Login) in Center */
  header.header-container .top-actions {
    display: flex !important;
    gap: 15px !important;
    margin: 2px 0 !important;
  }
  
  header.header-container .top-actions .action-item {
    font-size: 12px !important; /* Chhota Font Size */
    padding: 4px 10px !important;
  }

  /* 4. Search Box Perfect Fit & Compact Size */
  header.header-container .search-box {
    width: 100% !important;
    max-width: 280px !important; /* 2px chhota & tight fitting */
    margin: 4px 0 !important;
  }

  header.header-container .search-box input {
    width: 100% !important;
    padding: 6px 12px !important; /* Height/Border chhota kiya */
    font-size: 14px !important;   /* Text size chhota */
    border-width: 1px !important;
  }

  /* 5. Hero Section Heading Font Size Fix */
  .hero-section .hero-title {
    font-size: 20px !important;   /* Text screen par bohot bada tha, use fit kiya */
    line-height: 1.3 !important;
    padding: 0 10px !important;
  }
  .hero-section .hero-subtitle {
    font-size: 13px !important;
  }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #18181c;
    border-top: 2px solid #00bcd4;
    color: #e0e0e0;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    font-family: Arial, sans-serif;
  }
  .cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
  }
  .cookie-content a {
    color: #00bcd4;
    text-decoration: underline;
  }
  .cookie-actions {
    display: flex;
    gap: 12px;
  }
  .cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
  }
  .cookie-accept {
    background-color: #00bcd4;
    color: #0f0f12;
  }
  .cookie-accept:hover {
    background-color: #00acc1;
  }
  .cookie-decline {
    background-color: #2a2a32;
    color: #ffffff;
    border: 1px solid #444;
  }
  .cookie-decline:hover {
    background-color: #3a3a45;
  }