html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important; /* Forces the browser to ignore overflow */
    padding-top: 90px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Add this to your style.css to fix the spacing */
.projects-cta {
    margin-top: 40px;      /* Creates space above the section */
    text-align: center;    /* Keeps everything centered */
    padding: 40px 20px;    /* Adds space around the content */
}

/* Optional: Style the button inside it */
.projects-cta .btn-primary {
    margin-top: 20px;      /* Separates the button from the text */
}

/* Section wrapper to handle background and spacing */
.about-section {
    padding: 80px 20px;
    background-color: #f9fafb; /* Soft light gray for contrast */
}

/* This container keeps content centered and readable */

/* FORCE ALL CONTAINERS TO BE STABLE ON MOBILE */
.container {
    width: 100% !important;
    max-width: 1200px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Heading styling */
.about-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 30px;
    position: relative;
    text-align: center !important; 
    width: 100%;
}

/* Paragraph styling for professional look */
.about-text-wrapper p {
    text-align: left; /* Professional look for long text */
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.typing-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 30px;
    height: 30px; /* Keeps layout stable */
    text-align: center !important; 
    width: 100%;
}

/* Visual touch: Highlight key terms */
.about-text-wrapper strong {
    color: #1e40af; /* Deep blue to match your brand */
}

/* ==========================================================================
   MOBILE & SMARTPHONE OPTIMIZATIONS (Screens smaller than 768px)
   ========================================================================== */

   @media screen and (max-width: 768px) {
    .hero-badge, .card-main::before, .hero-card {
        border: none !important;
    }
}

@media screen and (max-width: 768px) {
    /* 1. Keep the card structure but fix the tint */
    .audience-card {
        /* Instead of solid white, use a very faint glass tint */
        background: rgba(255, 255, 255, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        /* Use a soft shadow instead of the heavy blue-ish one */
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05) !important;
        backdrop-filter: blur(8px) !important; /* Retains the glass feel */
        width: 100% !important;
    }

    /* 2. Neutralize the section background */
    .audience-section {
        background: #f9fafb !important;
        background-image: none !important;
    }
}

@media screen and (max-width: 768px) {
    /* Target the specific section that holds your cards */
    .audience-section, 
    .pricing-section, 
    .projects-section {
        background-color: #f9fafb !important; /* Matches your body color */
        background-image: none !important;
    }
}

@media screen and (max-width: 768px) {
    

    /* Force remove the blue tint borders */
    .audience-card, .card-main, .hero-card {
        border: none !important;
        background: #ffffff !important; /* Force white background on mobile */
        box-shadow: none !important;    /* Removes the glow that looks like blue */
    }
@media screen and (max-width: 768px) {
    /* This forces the background to be white/transparent on mobile */
    .audience-section {
        background-color: #ffffff !important; 
        background-image: none !important;
    }
}

    /* 1. Global Spacing & Layout Guardrails */
    .container {
        padding: 0 16px !important; /* Prevents text from sticking to the glass screen edges */
        width: 100% !important;
    }

    section {
        padding: 40px 0 !important; /* Reduces massive desktop padding for compact view */
    }

    /* 2. Sticky Navbar Adjustments */
    .nav-inner {
        padding: 10px 16px;
    }

   

    .nav-links, .nav-cta {
        display: none !important; /* Hides desktop links; menu relies on your toggleMenu() hamburger */
    }

    .hamburger {
        display: flex !important; /* Ensures mobile menu trigger is active */
    }

    /* 3. Hero Section Stack */
    .hero-container {
        display: flex;
        flex-direction: column !important; /* Stacks text on top, card stack on bottom */
        gap: 30px;
        text-align: center;
    }

    .hero-left, .hero-right {
        width: 100% !important;
    }

    .hero-headline {
        font-size: 2.2rem !important; /* Sizes down large desktop typography dynamically */
        line-height: 1.2;
    }

    .hero-actions {
        display: flex;
        flex-direction: column; /* Stacks "Book Project" and "Call" buttons for easy thumb-tapping */
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn-hero-primary, 
    .hero-actions .btn-hero-secondary {
        width: 100% !important;
        justify-content: center;
        padding: 14px;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Floating absolute cards can overflow on mobile; center or flatten them */
    .hero-card-stack {
        margin-top: 20px;
    }
    
    .card-float {
        position: relative !important; /* Flattens absolute floating cards so they line up neatly */
        top: 0 !important;
        left: 0 !important;
        margin: 10px auto !important;
        width: 100% !important;
    }

.pricing-section {
    padding: 40px 10px; /* Reduced side padding */
    width: 100%;
}

.pricing-section .container {
    max-width: 100% !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 10px !important; /* Minimal padding to keep cards off the edge */
    padding-right: 10px !important;
}

    /* 4. Grid To List Conversions (Collapses Multi-columns into 1 clean column) */
    .audience-grid,
    .pricing-grid,
    .projects-grid,
    .reviews-grid,
    .portfolio-grid,
    .why-grid,
    .contact-grid,
    
   .footer {
    background-color: #052369;
    grid-template-columns: 1fr !important; /* Deep Navy Blue */
    color: #ffffff;
    padding: 40px 0 20px 0;
    width: 100%;
}



.addons-grid {
    display: grid !important;
    /* Forces exactly 3 columns */
    grid-template-columns: repeat(3, minmax(280px, 1fr)) !important; 
    gap: 25px !important;
    /* Centers the grid items if they don't fill the row */
    justify-items: center !important; 
    margin: 0 auto !important;
    max-width: 1200px !important; /* Keeps the cards from getting too wide */
}

    /* 5. Add-on Horizontal Cards Shift to Vertical Layout */
    .addon-card {
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
    backdrop-filter: blur(10px);          /* The "glass" blur effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column !important;
     align-items: center !important;      /* Centers items horizontally */
    justify-content: center !important;  /* Centers items vertically */
    text-align: center !important;   
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1); /* Soft shadow */
    transition: transform 0.3s ease;
      width: 100% !important;
       display: flex !important;
    max-width: 350px !important; 
}


 .addon-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

    /* 6. Contact Form & Map Width fixes */
    .contact-left, .contact-right, .quick-contact-form {
        width: 100% !important;
    }

    /* 7. General Touch Targets for Mobile Browsers */
    button, .btn-primary, .filter-btn, .faq-question {
        min-height: 48px; /* Strict Google standard for fat-finger click safety */
    }
}


:root {
  --ink: #071326;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --soft: #f8fafc;
  --blue: #0084ff;
  --blue-dark: #0a54c9;
  --cyan: #38bdf8;
  --yellow: #ffca28;
  --pink: #ef2f78;
  --green: #16a34a;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(15, 23, 42, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
    body {
        background: #f9fafb !important; /* Forces solid color on mobile */
    }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1500px, calc(100% - 32px));
  margin-inline: auto;
}

.navbar {
  /* Changed from sticky to fixed */
  position: fixed;
  top: 18px; /* Keeps your 18px top gap */
  left: 0;
  right: 0;
  z-index: 1000; /* Increased z-index to ensure it stays on top of all content */
  
  /* Maintain your width and centering logic */
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  
  /* Your existing design properties */
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.35), 0 18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(34px);
}
.nav-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 10px 14px 10px 18px;
}

.nav-logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img,
.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-fallback,
.modal-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #06142f;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(56, 189, 248, 0.4);
  font-weight: 800;
}
.logo-text {
    display: none; /* OPTIONAL: If you are really tight on space, hide the sub-text on mobile/small laptops */
}

.logo-text,
.footer-logo div {
  display: grid;
  line-height: 1.1;
}

.logo-name,
.footer-name {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--blue);
}

.logo-sub,
.footer-tagline {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}



.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px; /* Space between the two links */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
  width: 100%;
}

.link-btn {
  background: none;
  border: none;
  color: #94a3b8; /* Subtle gray color */
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.link-btn:hover {
  color: #ffffff; /* Bright white on hover */
  transform: translateX(5px); /* Subtle interaction effect */
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0px;
  white-space: nowrap; /* Forces text to stay on one line */
    flex-wrap: nowrap;   /* Prevents wrapping to next line */
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: inherit;
  transition: 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--ink);
  background: rgba(15, 23, 42, 0.05);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(760px, calc(100vw - 32px));
  max-height: min(72vh, 520px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
  z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  border-radius: 12px;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  white-space: normal;
}

.nav-dropdown-menu small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .nav-dropdown-menu {
    position: fixed;
    top: 96px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translate(-50%, 0);
  }
  .nav-dropdown:nth-last-child(-n+2) .nav-dropdown-menu {
  left: auto;
  right: 0;
}
}

@media (max-width: 1080px) {
  .nav-dropdown-menu {
    display: none;
  }
}
.nav-links a {
    padding: 8px 6px; /* Reduced padding for more horizontal space */
    font-size: 0.82rem; /* Slightly smaller font to fit everything */
    white-space: nowrap;
    letter-spacing: -0.2px;
}

.nav-links a,
.mobile-menu a {

  border-radius: 999px;
  color: #475569;
  font-size: 0.86rem;
  font-weight: 700;
  transition: 0.2s ease;
  white-space: nowrap;
    padding: 10px 12px;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(15, 23, 42, 0.05);
}


.nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.process-section {
    padding: 80px 20px;
    background-color: #f8fafc;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  margin-top: 40px;
}

.process-step {
  flex: 1; /* Each step takes equal width */
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.step-card h3 {
    margin: 0 0 10px 0;
    color: #1e293b;
    font-weight: 700;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.section-header { text-align: center; margin-bottom: 20px; }
.section-eyebrow { color: #3b82f6; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #071c54; /* This is a deep, professional dark blue */
   
    margin-bottom: 10px;
    line-height: 1;  /* Keeps the numbers tight */
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.process-arrow {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 1.5rem;
}


.btn-call,
.btn-primary,
.btn-hero-primary,
.btn-hero-secondary,
.btn-plan,
.btn-secondary,
.map-link,
.proj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn-primary,
.btn-hero-primary {
  color: white;
  background: rgba(0, 132, 255, 0.88);
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.28), 0 18px 34px rgba(0, 132, 255, 0.23);
}

.btn-primary {
  padding: 12px 18px;
}

.btn-call,
.btn-hero-secondary,
.btn-secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn-call {
  padding: 11px 15px;
  color: var(--blue-dark);
}

.btn-primary:hover,
.btn-hero-primary:hover,
.btn-call:hover,
.btn-hero-secondary:hover,
.btn-plan:hover,
.map-link:hover,
.proj-btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eef6ff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
}

.mobile-menu.active {
  display: grid;
  gap: 8px;
}

.mob-call {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero {
  position: relative;
  padding: 42px 0 28px;
}

.hero-container {
  position: relative;
  width: min(1400px, calc(100% - 32px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 48px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84)),
    radial-gradient(550px 360px at 78% 40%, rgba(0, 132, 255, 0.24), transparent 62%);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
  padding: 72px 64px 54px;
}

.hero-container::before {
  content: "";
  position: absolute;
  inset: auto -10% -38% 42%;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.24), transparent 68%);
  filter: blur(12px);
}

.hero-bg-glow {
  position: absolute;
  top: -90px;
  left: 4%;
  width: 360px;
  height: 180px;
  border-radius: 50%;
  background: rgba(96, 177, 255, 0.35);
  filter: blur(70px);
  pointer-events: none;
}

.hero-bg-glow2 {
  top: 130px;
  left: 58%;
  width: 420px;
  background: rgba(49, 154, 255, 0.18);
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-badge,
.section-eyebrow,
.popular-badge,
.group-badge,
.review-tag,
.port-tag,
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 132, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue-dark);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-badge {
  padding: 9px 13px;
}

.badge-stars,
.review-stars {
  color: #ff801e;
  letter-spacing: 0.03em;
}

.hero-headline {
  margin-top: 24px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.1rem, 6vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #081a33;
}

.headline-accent {
  color: var(--blue);
}

.hero-sub {
  margin-top: 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.hero-price-badge {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: 22px;
  padding: 10px 14px;
  background: #06142f;
  color: white;
  box-shadow: 0 24px 50px rgba(6, 20, 47, 0.18);
}

.price-label {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.price-value {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.05em;
}

.price-tag {
  padding: 8px 11px;
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-hero-primary,
.btn-hero-secondary {
  min-height: 56px;
  padding: 0 22px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 750;
}

.trust-item svg {
  color: var(--green);
}

.hero-right {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card-stack {
  position: relative;
  width: min(470px, 100%);
}

.hero-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.card-main {
  position: relative;
  padding: 26px;
}

.card-main::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0, 132, 255, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #eaf4ff;
  color: var(--blue-dark);
  padding: 9px 13px;
  font-weight: 900;
}

.card-list,
.plan-features,

.footer-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.footer-col ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.footer-col ul li {
    margin-bottom: 12px; /* Adds space between list items */
}

.footer-col ul li a { color: #cbd5e1; text-decoration: none; }

.footer-col h4 {
    margin-bottom: 20px; /* Separates the header from the links */
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
}

.card-list {
  display: grid;
  gap: 14px;
}

.card-list li,
.plan-features li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.card-list svg,
.plan-features svg {
  width: 18px;
  min-width: 18px;
  color: var(--green);
}

.card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-weight: 800;
  color: var(--ink);
  animation: floaty 5s ease-in-out infinite;
}

.card-float1 {
  top: -24px;
  right: -18px;
}

.card-float2 {
  bottom: -24px;
  left: -20px;
  animation-delay: -2s;
}

.tech-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}



.tech-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.tech-card-float {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  white-space: nowrap;
}

.tech-chip {
  min-width: max-content;
  padding: 8px 16px; /* Reduced padding for smaller size */
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.8rem; /* Reduced font size */
  font-weight: 700;
  color: #334155;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

section:not(.hero) {
  padding: 86px 0;
}

.section-header {
  max-width: 740px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-eyebrow {
  padding: 8px 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section-header h2,
.contact-left h2 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #081a33;
}

.section-header p,
.contact-left p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.audience-grid,
.pricing-grid,
.why-grid,
.reviews-grid,
.portfolio-grid,
.tech-grid {
  display: grid;
  gap: 18px;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: 1 column */
    gap: 20px;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: 1 column */
    gap: 20px;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablets: 2 columns */
    }
}

@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
    }
}

.audience-section {
    padding: 80px 0; /* Remove horizontal padding here */
}

.audience-section .container {
    max-width: 1300px; /* Increase this to allow cards to grow */
    margin: 0 auto;
    padding: 0 15px;   /* Minimal padding on mobile only */
}

.audience-card,
.pricing-card,
.project-card,
.review-card,
.portfolio-card,
.why-card,
.quick-contact-form,
.addon-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background: white;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.06);
}

.addon-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
}

.audience-card,
.why-card,
.review-card {
  padding: 24px;
}

.aud-icon,
.why-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
}

.tech-card-float img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.tech-card-float span {
  font-size: 0.85rem;
  font-weight: 750;
  color: #334155;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Increase Title Size */
.addon-card h3 {
    font-size: 1.3rem !important; /* Adjust from 1.1rem to 1.3rem */
    margin-bottom: 10px !important;
}

/* Increase Description/Paragraph Size */
.addon-card p {
    font-size: 1rem !important;   /* Adjust from 0.85rem to 1rem */
    line-height: 1.5 !important; 
    text-align: center !important;
    margin: 0 auto 15px auto !important;
    max-width: 90% !important; /* Improves readability for larger text */
}


/* Increase Button Text Size */
.btn-primary {
    font-size: 1rem !important;
    padding: 12px 24px !important;
}
.audience-card h3,
.why-card h3,
.quick-contact-form h3,
.addon-card h3,
.portfolio-info h4,
.project-card h4 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.addons-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.addon-card {
  background: rgba(0, 132, 255, 0.2) !important;
   
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}

.audience-card p,
.why-card p,
.project-card p,
.review-card p,
.quick-contact-form p,
.addon-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.2rem;
}

.audience-card {
    width: 100%;
    /* IF YOU HAD THIS, REMOVE IT: */
    /* max-width: 200px; */ 
    box-sizing: border-box; /* This is essential for the padding to not shrink the width */
}

.audience-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Allows them to sit side-by-side if they fit */
    justify-content: center;
    gap: 8px; /* Adds small space between tags */
}

.audience-card ul li {
    background-color: #f1f5f9; /* Light gray background */
    padding: 6px 12px;         /* Compact padding for the pill shape */
    border-radius: 50px;       /* Pill shape */
    font-size: 0.75rem;        /* Smaller, shorter text */
    font-weight: 600;
    color: #475569;
    white-space: nowrap;       /* Prevents the tag from breaking into two lines */
    text-align: center;
}

.audience-card li,
.proj-tags span {
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 800;
}

.tech-section,
.reviews-section,
.contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.tech-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.tech-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 10px;
  background: transparent; /* Removed white circle background */
  box-shadow: none;        /* Removed shadow */
  border: none;           /* Removed border */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.tech-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 132, 255, 0.12), rgba(56, 189, 248, 0.2));
  opacity: 0;
  transform: scale(1.4);
  transition: 0.25s ease;
}

.tech-logo-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.tech-logo-card:hover {
  transform: translateY(-5px); /* Keep the float effect */
}

.tech-logo-img,
.tech-logo-card span {
  position: relative;
  z-index: 1;
}

.tech-logo-img {
  width: 40px;  /* Reduced size */
  height: 40px; /* Reduced size */
  display: grid;
  place-items: center;
  background: transparent !important; /* Forces the background color to go away */
  color: #334155; /* Set icon color to dark grey or original color */
  font-size: 1.5rem;
}

.tech-logo-card span {
  display: none; 
}

.php-logo { background: #777bb4; }
.python-logo { background: #3776ab; }
.django-logo { background: #0c4b33; }
.mysql-logo { background: #00758f; }
.react-logo { background: #20232a; color: #61dafb; }
.js-logo { background: #f7df1e; color: #111; }
.java-logo { background: #e76f00; }
.node-logo { background: #3c873a; }
.rpa-logo { background: #512bd4; }
.flutter-logo { background: #02569b; }
.ml-logo { background: #db2777; }
.laravel-logo { background: #ff2d20; }

.tech-note,
.portfolio-note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}




.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Forces equal 25% width each */
    gap: 10px; /* Minimal gap for compact look */
    align-items: stretch;
    width: 100%;
}
/* Responsive adjustment for tablets/smaller screens */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive adjustment for mobile */
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  /* Reset the transform for mobile if needed */
  .pricing-card.popular {
    transform: none;
  }
}


.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* Default subtle border */
    border-radius: 20px;
    padding: 15px; /* Reduced padding from 40px to 20px to save space */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    padding: 15px !important;
}

.pricing-card h2, .pricing-card .plan-name {
    font-size: 0.9rem !important; /* Slightly smaller text to prevent wrapping */
}

.plan-price {
    font-size: 1.4rem !important; /* Smaller price to keep it on one line */
}
.plan-features li {
    font-size: 0.75rem !important; /* Smaller features list */
}

.pricing-card.popular {
    border: 2px solid #2563eb; /* Thick blue border for emphasis */
    transform: scale(1.02); /* Makes it slightly larger */
    z-index: 1;
}

.popular-badge {
  padding: 8px 12px;
  margin-bottom: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #38bdf8);
}

.plan-name {
  display: block;
  color: var(--blue-dark);
  font-weight: 900;
}
.price-container {
  display: flex;
  flex-direction: column; /* Stacks strike-through and final price */
  align-items: center;    /* Centers everything horizontally */
  margin: 20px 0;
}

.plan-price {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.5rem;    /* Larger size */
  font-weight: 900;
  color: #06142f;
  line-height: 1;
  margin-top: 5px;
}

/* Style for the launch offer text */
.launch-offer {
  color: #ef4444; /* Bright red */
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 5px;
  background: #fef2f2;
  padding: 5px 10px;
  border-radius: 8px;
}

/* Ensure premium card looks distinct */
.premium-card {
  border: 2px solid #ef4444; /* Red border to match the offer */
}

.glass-offer {
  /* Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari */
  border: 1px solid rgba(255, 255, 255, 0.3);
  
  /* Styling */
  padding: 15px 20px;
  border-radius: 15px;
  margin: 15px 0;
  text-align: center;
  transition: transform 0.3s ease;
  
  /* Animation: Subtle pulse */
  animation: pulse 2s infinite;
}

.offer-text {
  font-size: 1.4rem; /* Increased size */
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.spots-badge {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b91c1c;
  margin-top: 5px;
}

.urgency-banner {
  background: linear-gradient(135deg, #06142f, #1e3a8a);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2);
  animation: gentle-glow 3s infinite alternate;
}

.banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.spot-counter {
  background: #ef4444;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

@keyframes gentle-glow {
  from { box-shadow: 0 10px 25px rgba(30, 58, 138, 0.2); }
  to { box-shadow: 0 10px 35px rgba(56, 189, 248, 0.3); }
}

/* Responsive */
@media (max-width: 600px) {
  .banner-content { flex-direction: column; gap: 8px; }
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}



.old-price {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 1.9rem;    /* Large enough to be seen */
  font-weight: 500;
}

.plan-price span {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.plan-desc {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1; /* Pushes button to bottom */
}

.plan-features .disabled {
    color: #94a3b8;
}

.plan-features .disabled svg {
  color: #cbd5e1;
}

.btn-plan {
  width: 100%;
  min-height: 50px;
  background: #06142f;
  color: white;
}

.btn-plan-popular {
  background: var(--blue);
}

/* Glassmorphism Add-on Card */
.addon-card {
  background: rgba(0, 132, 255, 0.2) !important;
  
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
}


.addon-left h3 {
    margin: 0 0 10px 0;
    color: #052369; /* Your Brand Navy */
    font-size: 1.1rem;
}

.addon-left p {
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
}

.addon-left, .addon-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}
.addon-price {
    font-size: 1.7rem !important; /* Increase this value for a larger price */
    font-weight: 800 !important;  /* Keeps it bold and prominent */
    margin-bottom: 12px !important;
    display: block !important;
}


.addon-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn {
  padding: 11px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #475569;
  font-weight: 850;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.filter-btn.active {
  color: white;
  border-color: transparent;
  background: #06142f;
}

.projects-group {
  margin-top: 34px;
  
    display: block; /* Default visible state */
    margin-bottom: 40px;
    

}

.projects-group {
    transition: all 0.3s ease; /* Smooth transition */
}

.projects-group.hidden {
    display: none !important; /* Hide the whole group completely */
}

.hidden {
    display: none !important;
}

.group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
}

.group-badge {
  padding: 7px 11px;
}

.rpa-badge,
.rpa-icon { background: #ede9fe; color: #6d28d9; }
.python-badge,
.python-icon { background: #dbeafe; color: #2563eb; }
.php-badge,
.php-icon { background: #fce7f3; color: #db2777; }



.projects-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 20px !important;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  cursor: pointer;
  transition: 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 132, 255, 0.22);
  box-shadow: 0 26px 70px rgba(0, 132, 255, 0.1);
}

.proj-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
}

.proj-body {
  flex: 1;
}

.proj-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.proj-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(9, 24, 60, 0.08);
}

.proj-price {
  color: var(--blue-dark);
  font-weight: 900;
}

.proj-btn {
  padding: 9px 12px;
  background: #f8fafc;
  color: #0f172a;
  font-size: 0.82rem;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 900;
}

.reviewer-name {
  font-weight: 900;
}

.reviewer-info {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 3px;
}

.review-card p {
  font-style: italic;
}

.review-tag {
  margin-top: 16px;
  padding: 7px 10px;
  color: #475569;
  border-color: rgba(15, 23, 42, 0.08);
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-card {
  overflow: hidden;
  transition: 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-img {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: rgba(15, 23, 42, 0.75);
  font-weight: 900;
  text-align: center;
}

.portfolio-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
}

.port-tag {
  padding: 7px 10px;
  color: var(--blue-dark);
  white-space: nowrap;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Desktop Layout (Default) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* This creates the 2 columns */
    gap: 28px;
    align-items: center;
}

/* Mobile Layout (Override) */
@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important; /* This forces 1 column on mobile */
    }
}

.contact-left {
  padding-right: 20px;
}

.contact-items {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eaf4ff;
  color: var(--blue-dark);
}

.whatsapp-icon {
  background: #dcfce7;
  color: #16a34a;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-value {
  display: block;
  margin-top: 3px;
  font-weight: 900;
}

.map-link {
  width: max-content;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: white;
  color: var(--blue-dark);
}

.quick-contact-form {
  padding: 28px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 132, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 132, 255, 0.1);
  background: white;
}

.w-full {
  width: 100%;
}



.footer {
    background-color: #05153c;
    color: #ffffff;
    padding: 60px 0; /* Added side padding for mobile safety */
    width: 100%;
}


.footer-grid {
    display: grid;
    /* This creates 4 equal columns on desktop */
   grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 20px; 
    width: 100%;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    /* Force footer columns to stack */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px;
    }
}
/* Use this for all your grid containers */
.footer-grid, .audience-grid, .projects-grid {
    display: grid;
    /* This is the magic formula for responsive grids */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    /* 1. Reset Section Background */
    .audience-section {
        background-color: #ffffff !important; 
        background-image: none !important;
        padding: 40px 16px !important; /* Adjust padding for mobile */
    }

    /* 2. Fix Container and Grid */
    .audience-section .container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .audience-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Force 1 column */
        gap: 20px !important;
        width: 100% !important;
    }

    /* 3. Remove Blue Tint and Borders from Cards */
    .audience-card {
        border: none !important;
        background-color: #ffffff !important;
        box-shadow: none !important;
        /* Optional: Add a simple gray shadow if you want to keep depth */
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
}

.footer-brand p,
.footer-col a,
.footer-bottom,
.footer-contacts a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-contacts-wrapper { margin-top: 25px; }

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* This targets the specific paragraph inside your brand section */
.footer-brand p {
    text-align: left;
    margin-top: 15px; /* Adds a little space below the logo/tagline */
    line-height: 1.6; /* Makes it easier to read */
    color: #cbd5e1;   /* Optional: makes it a soft white/gray for better contrast */
}

.footer-col h4 {
  margin-bottom: 16px;
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a:hover,
.footer-contacts a:hover {
  color: white;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 11px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #16a34a;
  color: white;
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.32);
  font-weight: 900;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 20, 47, 0.52);
  backdrop-filter: blur(16px);
  
  /* ADD THESE TWO LINES */
  width: 100vw;           /* Forces the overlay to match the screen width exactly */
  box-sizing: border-box; /* Ensures padding doesn't push the modal out of the screen */
 
    box-sizing: border-box;
    overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
  overflow-x: hidden;
  align-items: flex-start;
 
}

.modal-box {
  position: relative;
  /* Width and Height Constraints */
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  
  /* Layout and Scroll */
  overflow: auto;
  box-sizing: border-box; /* IMPORTANT: Ensures padding stays inside the width */
  
  /* Visuals */
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px; /* Unified radius */
  background: white;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.24);
  
  /* Spacing and Animation */
  padding: 22px; /* Using your mobile-friendly padding */
  animation: modalIn 0.25s ease both;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #10356f;
   
    margin-bottom: 10px;
}

@media (max-width: 768px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f172a;
}

.modal-content {
  background: #ffffff; /* White background is essential */
  width: 90%;
  max-width: 700px;    /* Limits width so lines aren't too long */
  max-height: 85vh;
  overflow-y: auto;    /* Makes it scrollable if text is long */
  padding: 40px;       /* Breathing room for your text */
  border-radius: 24px; /* Matches your pricing card style */
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Fix the close button position */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-right: 42px;
}

.modal-body {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: #334155;
}

body.modal-open {
    overflow: hidden;
    padding-right: 0px; /* You can adjust this if your layout shifts */
}

.modal-body h4 {
  color: #06142f;
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
}

.modal-body ul {
  padding-left: 20px;
  margin-top: 10px;
}

.modal-body li {
  margin-bottom: 8px;
}

.faq-section { padding: 60px 0; background: #f8fafc; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; margin-bottom: 10px; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }

.faq-question {
  width: 100%; padding: 20px; text-align: left; background: none; border: none;
  font-weight: 700; display: flex; justify-content: space-between; cursor: pointer; color: #06142f;
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; color: #64748b; }
.faq-answer.show { max-height: 200px; padding-bottom: 20px; }


.phone-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap; /* Wraps to new line on smaller screens */
    margin-bottom: 15px;
}

.social-actions { display: flex; gap: 10px; }

/* Base button style for WhatsApp */
.circle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #475569;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

/* Icon-only button style for GitHub/Instagram */
.circle-btn.icon-only {
  padding: 8px;
  width: 40px; 
  height: 40px;
  justify-content: center;
}

.circle-btn.icon-only img {
  width: 20px;
  height: 20px;
}

.circle-btn:hover {
  background: #1e293b;
  border-color: #2563eb;
}

.modal-header h2,
.thankyou-box h2 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.modal-header p,
.thankyou-box p {
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.btn-secondary {
  padding: 12px 18px;
}

.btn-loading svg {
  animation: spin 0.8s linear infinite;
}

.thankyou-box {
  width: min(480px, 100%);
  text-align: center;
}

.thankyou-animation {
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.ty-circle {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 20px 42px rgba(22, 163, 74, 0.28);
  animation: pop 0.45s ease both;
}

.ty-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
  border-radius: 18px;
  background: #f8fafc;
  padding: 12px;
  color: #334155;
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.75s ease forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }
.delay-5 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pop {
  0% { transform: scale(0.65); opacity: 0; }
  70% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 54px 30px;
    border-radius: 34px;
  }

  .hero-right {
    min-height: auto;
  }

  .audience-grid,
  .tech-grid,
  .projects-grid,
  .reviews-grid,
  .portfolio-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .contact-grid,


  .pricing-card.popular {
    transform: none;
  }

  .contact-left {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .container,
  .hero-container,
  .tech-marquee {
    width: min(100% - 22px, 1180px);
  }

 

.navbar {
    /* Change this from 1180px to 1250px or 1300px */
    width: min(1280px, calc(100% - 20px)); 
    margin: 0 auto;
}

  .logo-sub {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-container {
    min-height: auto;
    padding: 36px 18px;
    border-radius: 26px;
  }

  .hero-headline {
    font-size: clamp(2.45rem, 14vw, 3.4rem);
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .hero-price-badge,
  .hero-actions,
  .addon-card,
  .footer-bottom,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

.brand-desc {
    text-align: left;
    margin-top: 15px;
    color: #cbd5e1;
}

  .hero-actions > *,
  .btn-secondary,
  .form-actions .btn-primary {
    width: 100%;
  }

  .hero-trust,
  .audience-grid,
  .tech-grid,
  .projects-grid,
  .reviews-grid,
  .portfolio-grid,
  .why-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card-float {
    position: static;
    margin-top: 12px;
  }

  .section-header {
    margin-bottom: 26px;
  }

  section:not(.hero) {
    padding: 62px 0;
  }



  .addon-right {
    margin-top: 10px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-top: 15px !important;
}

  .project-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .review-header {
    grid-template-columns: auto 1fr;
  }

  .review-stars {
    grid-column: 1 / -1;
  }

  .whatsapp-float span {
    display: none;
  }


}

@media screen and (max-width: 768px) {
    /* 1. Force the entire page background to white */
    body {
        background-color: #ffffff !important;
        background-image: none !important;
    }

    /* 2. Force every single element in your services section to be white */
    #services, #services * {
        background-color: #ffffff !important;
        background-image: none !important;
        border: none !important;
    }
}

/* --- DEFINITIVE MOBILE PRICING OVERRIDE --- */
@media screen and (max-width: 768px) {
    /* 1. Reset all containers to white (killing the blue background) */
    #pricing, 
    #pricing .pricing-section, 
    #pricing .pricing-grid,
    #pricing .pricing-card {
        background-color: #ffffff !important;
        background-image: none !important;
        border: none !important;
    }

    /* 2. Re-apply professional card styling (The "Glass" feel without the tint) */
    #pricing .pricing-card {
        background-color: #ffffff !important;
        border: 1px solid #e2e8f0 !important; /* Subtle gray border */
        border-radius: 26px !important;       /* Consistent rounded corners */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important; /* Soft depth */
        padding: 24px !important;
        margin: 0 0 20px 0 !important;        /* Margin between stacked cards */
    }

    /* 3. Force dark text contrast for visibility */
    #pricing .pricing-card, 
    #pricing .pricing-card *, 
    #pricing .plan-name, 
    #pricing .plan-desc {
        color: #071326 !important; /* Your brand's deep ink color */
    }

    /* 4. Keep list items and icons clean */
    #pricing .plan-features li {
        background: transparent !important;
        color: #475569 !important;
    }

    /* 5. Button styling */
    #pricing .btn-plan {
        background-color: #052369 !important;
        color: #ffffff !important;
        border-radius: 999px !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    /* 1. Target the Plan Name - Make it Blue */
#pricing .plan-name {
    color: #053a6b !important; /* Your brand blue */
    font-weight: 700 !important;
}

/* 2. Target the Old Price - Make it Gray */
#pricing .old-price, 
#pricing .original-price {
    color: #64748b !important; /* Your brand muted/gray color */
    text-decoration: line-through !important;
    font-size: 1.5rem !important;
}
/* 1. Add blue border to the popular card on mobile */
#pricing .pricing-card.popular {
    border: 2px solid #0084ff !important; /* Blue border */
    box-shadow: 0 10px 20px rgba(0, 132, 255, 0.15) !important; /* Subtle blue shadow */
    position: relative;
}

/* 2. Optional: Keep the "Most Popular" badge visible */
#pricing .pricing-card.popular .badge {
    background: #0084ff !important;
    color: #ffffff !important;
}

}

@media screen and (max-width: 768px) {
    /* 1. Remove background from the Projects section and its grid */
    #projects.projects-section, 
    #projects .projects-grid,
    #projects .projects-group {
        background-color: #ffffff !important;
        background-image: none !important;
    }

    /* 2. Style the project cards to be clean white */
    #projects .project-card, 
    #projects .addon-card {
        background-color: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: none !important;
    }

    /* 3. Ensure project text is dark and visible */
    #projects .projects-section *, 
    #projects .project-card * {
        color: #071326 !important;
    }
}

@media screen and (max-width: 768px) {
    /* 1. Target the Reviews section and grid to remove the background */
    #reviews.reviews-section, 
    #reviews .reviews-grid {
        background-color: transparent !important;
        background-image: none !important;
    }
}

@media screen and (max-width: 768px) {
    /* 1. Nuke the background on the section and the container */
    .portfolio-section, 
    .portfolio-section .container, 
    .portfolio-grid {
        background-color: #ffffff !important;
        background-image: none !important;
    }

    /* 2. Style the cards to look clean on white */
    .portfolio-card {
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
        border-radius: 20px !important;
        margin-bottom: 20px !important;
    }

    /* 3. Ensure text remains dark */
    .portfolio-card, .portfolio-card * {
        color: #071326 !important;
    }
    /* 1. Target the tech stack tag specifically */
.portfolio-card .port-tag, 
.portfolio-card .port-tag span {
  
    color: #281e84 !important;            /* White text for contrast */
    padding: 4px 10px !important;         /* Add some breathing room */
     
    font-size: 0.85rem !important;        /* Keep it compact */
    font-weight: 500 !important;
}
}

@media screen and (max-width: 768px) {
    /* Target the specific section AND the container */
    #why-section, 
    .why-section, 
    .why-grid, 
    .why-card {
        background-color: #ffffff !important;
        background-image: none !important;
    }

    /* Force text to dark so it's readable on white */
    .why-card, .why-card * {
        color: #071326 !important;
    }
}

@media screen and (max-width: 768px) {
    /* 1. Remove the blue background from the Contact section */
    #contact.contact-section, 
    #contact .contact-grid {
        background-color: #ffffff !important;
        background-image: none !important;
    }

    /* 2. Force all text to black/dark for visibility */
    #contact, 
    #contact .contact-section *, 
    #contact h2, 
    #contact p, 
    #contact span {
        color: #071326 !important; /* Your brand's dark ink color */
    }

    /* 3. Style the Contact cards to be clean white */
    #contact .contact-items {
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
        border-radius: 20px !important;
        padding: 16px !important;
    }
    
}

@media screen and (max-width: 768px) {
    /* Use the ID #contact to match the specificity of the winning rule */
    #contact .section-eyebrow {
        color: #0084ff !important; 
    }
}
@media screen and (max-width: 768px) {
    /* 1. Set the grid to 3 columns for the footer */
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; /* 3 columns of equal width */
        gap: 15px !important; 
        text-align: center !important;
    }

    /* 2. Force the Brand/Logo section to span all 3 columns at the top */
    .footer-brand {
        grid-column: 1 / -1 !important; 
        margin-bottom: 20px !important;
    }
}
/* Center headings and sub-text on mobile */
@media screen and (max-width: 768px) {
    .about-heading, 
    .typing-text {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
    }
    
    /* Ensure the wrapper also aligns to center */
    .about-text-wrapper {
        text-align: center !important;
    }
}
@media screen and (max-width: 768px) {
    .about-text-wrapper {
        text-align: center !important;
        padding-top: 40px !important; /* Adjust this value as needed */
    }
}

.addons-grid {
    display: grid !important;
    /* Forces exactly 3 columns */
    grid-template-columns: repeat(3, minmax(280px, 1fr)) !important; 
    gap: 25px !important;
    /* Centers the grid items if they don't fill the row */
    justify-items: center !important; 
    margin: 0 auto !important;
    max-width: 1200px !important; /* Keeps the cards from getting too wide */
}

/* Responsive adjustment */
@media screen and (max-width: 992px) {
    .addons-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media screen and (max-width: 600px) {
    .addons-grid { grid-template-columns: 1fr !important; }
}

#couponContainer {
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    margin-top: 0;
}

#couponContainer.active {
    opacity: 1;
    visibility: visible;
    max-height: none;
    margin-top: 0;
    margin-bottom: 0;
}

/* Style the input specifically */
#coupon_code {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid var(--line) !important;
    border-radius: 12px !important;
    background: var(--soft) !important;
    font-size: 0.95rem !important;
    transition: border-color 0.3s ease !important;
}

#coupon_code:focus {
    outline: none !important;
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1) !important;
}

.sample-btn-wrapper {
  text-align: center;
  margin: 50px 0;
}

.btn-sample-delivery {
  background: rgba(0, 132, 255, 0.1); /* Soft blue tint */
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 14px 28px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-sample-delivery:hover {
  background: var(--blue);
  color: white;
}

.sample-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it stays above everything */
}

.sample-modal-box {
  background: white;
  padding: 25px;
  border-radius: 20px;
  max-width: 850px;
  width: 95%;
  position: relative;
  text-align: center;
}

.sample-img {
  width: 100%;
  border-radius: 10px;
  margin-top: 15px;
  border: 1px solid #eee;
}

.sample-modal-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

section.projects-section.no-padding {
    padding: 0 !important;
}
/* Production polish overrides */
html,
body {
  overflow-x: clip !important;
}

.navbar {
  max-width: calc(100vw - 24px);
}

.nav-inner,
.nav-links {
  min-width: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(760px, calc(100vw - 32px));
  max-height: min(72vh, 520px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
  z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:nth-last-child(-n+2) .nav-dropdown-menu {
  left: auto;
  right: 0;
}

.nav-dropdown-menu a:hover {
  background: #f8fbff;
  color: var(--ink);
}

@media (max-width: 1180px) {
  .nav-dropdown-menu {
    position: fixed;
    top: 96px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 8px);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .mobile-menu {
    max-height: calc(100vh - 108px);
    overflow-y: auto;
  }
}

@media (max-width: 700px) {
  .navbar {
    top: 10px;
    width: min(100% - 16px, 1180px);
  }

  .nav-inner {
    min-height: 64px;
    gap: 6px;
    padding: 8px 12px;
  }

  .logo-img,
  .logo-fallback {
    width: 42px;
    height: 42px;
  }

  .logo-name {
    font-size: 1.05rem;
  }

  .mobile-menu {
    padding: 10px;
  }

  .mobile-menu a {
    border-radius: 12px;
    padding: 12px 14px;
  }
}

/* Unified site typography */
:root {
  --pb-font: "Inter", ui-sans-serif, system-ui, sans-serif;
}

html,
body,
button,
input,
select,
textarea,
.logo-name,
.footer-name,
.hero-headline,
.section-header h2,
.plan-name,
.project-title,
.review-name,
.modal-title,
.price,
.stat-number,
.footer-col h4 {
  font-family: var(--pb-font) !important;
}


/* ==========================================================================
   PROJECT BUDDY - CLEANED CSS (NAVIGATION REMOVED)
   ========================================================================== */

body.seo-body {
    padding-top: 118px !important;
    background: #f8fafc !important;
}

.seo-page {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #071326;
    background: linear-gradient(180deg, #f8fbff 0%, #f8fafc 42%, #eef6ff 100%);
    min-height: 100vh;
}

.seo-page a {
    color: #2563eb;
}

/* --- NAV BAR RELATED STUFF COMMENTED OUT --- */
/*
.seo-topbar { position: fixed; top: 18px; left: 50%; z-index: 1000; width: min(1180px, calc(100% - 24px)); min-height: 72px; transform: translateX(-50%); margin: 0 auto; padding: 10px 14px 10px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid rgba(0,0,0,.09); border-radius: 20px; background: rgba(255,255,255,.72); box-shadow: inset 0 4px 4px rgba(255,255,255,.35),0 18px 50px rgba(15,23,42,.08); backdrop-filter: blur(34px); }
.seo-topbar div { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.seo-topbar a { padding: 10px 13px; border-radius: 999px; color: #475569; font-size: .86rem; font-weight: 700; text-decoration: none; transition: .2s ease; }
.seo-topbar a:hover { color: #071326; background: rgba(15,23,42,.05); }
.seo-brand { display: flex!important; align-items: center; gap: 10px; color: #071326!important; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-weight: 800; padding: 0!important; background: transparent!important; }
.seo-brand img { width: 42px; height: 42px; object-fit: contain; }
*/

.seo-hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 20px 34px;
}

.seo-hero h1 {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(2.25rem, 4.6vw, 4.7rem);
    line-height: 1.02;
    margin: 10px 0 18px;
    color: #052369;
    letter-spacing: 0;
}

.seo-hero p {
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 850px;
    color: #475569;
}

.eyebrow {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #2563eb;
}

.seo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    margin-right: 10px;
    padding: 13px 18px;
    border-radius: 14px;
    background: #0084ff;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 132, 255, .22);
}

.toc, .seo-page section, .seo-page article>section, .author-box {
    max-width: 1120px;
    margin: 18px auto;
    padding: 28px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .04);
}

.seo-page section p, .seo-page li {
    line-height: 1.75;
    color: #475569;
}

.seo-ad {
    background: #071326 !important;
    color: #e5eefc !important;
    border-color: #071326 !important;
    overflow: hidden;
    position: relative;
}

.seo-ad:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 132, 255, .22), transparent 42%);
    pointer-events: none;
}

.seo-ad > * { position: relative; }
.seo-ad h2, .seo-ad h3 { color: #fff !important; }
.seo-ad p { color: #dbeafe; }

.seo-ad-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.seo-ad-grid article { border: 1px solid rgba(255, 255, 255, .16); border-radius: 14px; padding: 18px; background: rgba(255, 255, 255, .06); }

.toc { display: flex; gap: 10px; flex-wrap: wrap; }
.toc strong { width: 100%; color: #052369; }
.toc a, .link-cloud a { padding: 9px 12px; border: 1px solid #dbeafe; border-radius: 999px; text-decoration: none; background: #f8fbff; font-weight: 700; }

.answer-grid, .resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; background: transparent; border: 0; padding: 0; box-shadow: none; }
.answer-grid article, .resource-grid article { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; padding: 20px; box-shadow: 0 14px 34px rgba(15, 23, 42, .04); }

.seo-page h2 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; color: #052369; font-size: clamp(1.45rem, 2.1vw, 2rem); letter-spacing: 0; }
.seo-page h3 { font-family: Inter, ui-sans-serif, system-ui, sans-serif; color: #071326; letter-spacing: 0; }
.seo-page li { margin: 8px 0; }
.seo-page details { border-top: 1px solid #e2e8f0; padding: 14px 0; }
.seo-page summary { font-weight: 800; cursor: pointer; color: #071326; }
.link-cloud { display: flex; gap: 10px; flex-wrap: wrap; }
.seo-table-wrap { overflow-x: auto; border: 1px solid #e2e8f0; border-radius: 14px; }
.seo-table { width: 100%; border-collapse: collapse; min-width: 680px; background: #fff; }
.seo-table th, .seo-table td { border-bottom: 1px solid #e2e8f0; padding: 12px; text-align: left; vertical-align: top; }
.seo-table th { background: #f1f5f9; color: #052369; font-weight: 800; }
.seo-table tr:last-child td { border-bottom: 0; }

@media (max-width: 1200px) {
    .nav-links {
        gap: 8px; /* Reduce space between items */
    }
    
    .nav-links a {
        font-size: 0.8rem; /* Slightly smaller text for better fit */
        padding: 8px 10px;
    }
}

/* --- MOBILE LAYOUT ONLY --- */
@media (max-width: 980px) {
  
  /* 1. Base Mobile Menu Container */
  .mobile-menu {
    padding: 20px;
    background: #ffffff;
    display: none; /* Hidden by default until JS toggles it */
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .mobile-menu.is-open {
    display: flex; /* Shown when toggled */
  }

  /* 2. Menu Links and Toggles */
  .mobile-menu > a, 
  .mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #071326;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    cursor: pointer;
  }

  .mobile-menu > a:hover, 
  .mobile-toggle:hover {
    background: #eef2ff;
    color: #2563eb;
  }

  /* 3. Submenu Accordion */
  .mobile-submenu {
    display: none;
    padding: 8px 0 8px 12px;
    background: transparent;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-nav-group.is-open .mobile-submenu {
    display: flex;
  }

  .mobile-submenu a {
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 8px;
  }

  .mobile-submenu a:hover {
    background: #f1f5f9;
    color: #052369;
  }

  /* 4. Dropdown Symbol */
  .mobile-toggle::after {
    content: '▼';
    font-size: 0.6rem;
    color: #64748b;
    transition: transform 0.3s ease;
  }

  .mobile-nav-group.is-open .mobile-toggle::after {
    transform: rotate(180deg);
  }

  /* 5. Footer Actions */
  .mobile-footer-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
  }
}

/* Container for the side-by-side layout */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal width columns */
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section (Text) */
.seo-hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  color: #0f172a;
  margin: 16px 0;
}

.seo-hero p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 24px;
}

/* Aside Card (Trust Summary) */
.about-hero-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.about-hero-card h2 {
  font-size: 1.5rem;
  margin-top: 10px;
  color: #1e293b;
}

/* Grid for the 4 Stat blocks */
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
}

.about-stat strong {
  display: block;
  font-size: 1.2rem;
  color: #2563eb; /* Theme Blue */
}

.about-stat span {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile Responsive: Stack them */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

.why-exists-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.text-block h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.mission-block {
  background: #eff6ff; /* Soft Blue background */
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #2563eb; /* Strong accent line */
}

.highlight-text {
  font-weight: 700;
  color: #1e40af;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Mobile responsiveness: Stack columns */
@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-story-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.about-story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.about-story-card h2 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about-story-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-step {
  position: relative;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.about-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-step h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  color: #1e293b;
}

.about-step p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Styling for Problems List */
.problems-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.problems-list li {
  padding: 20px;
  background: #fef2f2; /* Light red/error tint */
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Styling for Review Standard & Founder */
.review-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
}

.about-avatar {
  background: #1e293b;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

/* Trust List */
.trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.trust-list li {
  padding: 15px;
  background: #f0fdf4; /* Light green success tint */
  border: 1px solid #dcfce7;
  border-radius: 8px;
}

/* Styling for the Conversion Section (SEO Ad) */
.seo-ad {
  background: #0f172a; /* Dark background for high contrast */
  color: white;
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  margin: 60px 0;
}

.seo-ad h2 { color: white; margin-bottom: 20px; }
.seo-ad p { color: #cbd5e1; max-width: 600px; margin: 0 auto 30px; }

.seo-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin: 5px;
}

/* Styling for the Link Cloud */
.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.link-cloud a {
  padding: 10px 20px;
  background: #f1f5f9;
  border-radius: 50px;
  text-decoration: none;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}

.link-cloud a:hover {
  background: #e2e8f0;
  color: #2563eb;
}

@media (max-width: 768px) {
  .about-container, 
  .about-story-grid, 
  .about-hero-grid, 
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Styling for the content header only */
header:not(.navbar) {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 24px;
  margin: 40px auto;
  max-width: 1000px;
  border: 1px solid #e2e8f0;
}

header:not(.navbar) .eyebrow {
  color: #2563eb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 15px;
}

header:not(.navbar) h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #0f172a;
  line-height: 1.1;
  margin: 0 auto 20px;
  max-width: 800px;
}

header:not(.navbar) p {
  font-size: 1.125rem;
  color: #475569;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* TOC Container Styling */
.toc {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.toc > strong {
  display: block;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 15px;
}

/* Grouping Style */
.toc-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.toc-group span {
  font-weight: 700;
  color: #64748b;
  min-width: 140px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pill-style Links */
.toc a {
  text-decoration: none;
  color: #2563eb;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: #eff6ff;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.toc a:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  border-color: #1d4ed8;
}

/* --- Author/Reviewer Box Styling --- */
.author-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.author-box h2 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-top: 0;
  margin-bottom: 10px;
  position: relative;
}

/* Add a subtle visual line under the reviewer name */
.author-box h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #2563eb;
  margin: 10px auto 0;
}

.author-box p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 0;
}



#overview {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 900px;
}

#overview h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 20px;
}

#overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 20px;
}

#overview p:last-child {
  margin-bottom: 0;
}

/* 4 Cards in one row */
.answer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Forces exactly 4 columns */
  gap: 20px;
  margin: 40px 0;
  padding: 0 20px;
}

/* Mobile responsiveness: switch to 1 or 2 rows */
@media (max-width: 992px) {
  .answer-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */
  }
}

@media (max-width: 600px) {
  .answer-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

.answer-grid article {
  padding: 25px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* --- Modernized Problems Section --- */
#student-problems {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 60px 20px;
  border-radius: 30px;
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
  border: 1px solid #f1f5f9;
}

#student-problems h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 16px;
}

#student-problems p {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#student-problems ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  justify-content: center;
}

#student-problems li {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  text-align: left;
  /* Premium Shadow */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

#student-problems li:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
}

#student-problems li::before {
  content: "•";
  margin-right: 15px;
  color: #2563eb;
  font-size: 1.5rem;
  line-height: 1;
}

/* --- Refined FAQ Styling --- */
#faqs {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
}

#faqs h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

details {
  border: none;
  background: #ffffff;
  margin-bottom: 16px;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

summary {
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

summary::after {
  content: "▼";
  font-size: 0.8rem;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
  color: #2563eb;
}

/* FAQ Accordion Items */
details {
  border-bottom: 1px solid #f1f5f9;
  padding: 20px 0;
  transition: all 0.3s ease;
}

summary {
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none; /* Removes default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Adds a "+" sign for interactivity */
summary::after {
  content: "+";
  font-size: 1.5rem;
  color: #2563eb;
}

details[open] summary::after {
  content: "−";
}

details p {
  color: #475569;
  line-height: 1.6;
  margin-top: 10px;
  padding-right: 20px;
}

#guide-questions {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

#guide-questions h2 {
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

#guide-questions ul {
  list-style: none;
  padding: 0;
}

#guide-questions li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
  color: #475569;
}

#guide-questions li::before {
  content: "⚡"; /* Technical focus indicator */
  position: absolute;
  left: 0;
  color: #2563eb;
}

.seo-ad {
  background: #0f172a; /* Deep navy background for high contrast */
  color: #f8fafc;
  padding: 60px 20px;
  border-radius: 30px;
  text-align: center;
  margin: 40px auto;
}

.seo-ad .eyebrow {
  color: #38bdf8; /* Light blue accent */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.seo-ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.ad-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.ad-card h3 { color: #ffffff; margin-top: 0; }
.ad-card p { color: #94a3b8; font-size: 0.95rem; }

.cta-group { display: flex; justify-content: center; gap: 15px; }

.seo-cta.primary { background: #2563eb; color: #ffffff; }
.seo-cta.secondary { background: transparent; border: 1px solid #475569; color: #ffffff; }

/* Roadmap Styles */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.roadmap-grid li {
  background: #f8fafc;
  padding: 25px;
  border-radius: 16px;
  position: relative;
  list-style: none;
  border-top: 4px solid #2563eb;
}

.roadmap-grid li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-weight: 800;
  color: #cbd5e1;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Benefits Grid Styles */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.benefits-grid article {
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

/* Highlight CTA Section */
.highlight {
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  text-align: center;
}

/* Modern Layout */
.seo-page { max-width: 900px; margin: 0 auto; padding: 20px; font-family: 'Inter', sans-serif; }
.card { background: #ffffff; padding: 40px; border-radius: 24px; border: 1px solid #e2e8f0; margin-bottom: 30px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); }

/* Typography */
h1 { font-size: 2.5rem; color: #0f172a; margin: 15px 0; }
h2 { color: #1e293b; font-size: 1.8rem; margin-bottom: 20px; }
.eyebrow { color: #2563eb; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; }

/* Pricing Cards */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-card { border: 2px solid #e2e8f0; padding: 25px; border-radius: 20px; text-align: center; }
.price-tag { font-size: 2rem; font-weight: 800; color: #0f172a; margin: 15px 0; }

/* CTAs */

.seo-cta { display: inline-block; padding: 12px 24px; background: #2563eb; color: #fff; border-radius: 12px; text-decoration: none; font-weight: 600; }

/* DSE Tool Container */
.dse-tool { padding: 40px 20px; background: #f9fafb; border-radius: 16px; margin: 20px 0; }
.dse-page { max-width: 1000px; margin: 0 auto; padding: 20px; font-family: 'Inter', sans-serif; }
/* Result Cards */
.dse-result-card {
  display: flex; justify-content: space-between; align-items: center;
  background: white; padding: 20px; border-radius: 12px;
  margin-bottom: 15px; border: 1px solid #f3f4f6;
  transition: transform 0.2s;
}
.dse-result-card:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.dse-result-score { text-align: right; }
.dse-result-score strong { display: block; font-size: 18px; color: #1e40af; }
.dse-result-card.strong { border-left-color: #10b981; }
.dse-result-card.match { border-left-color: #3b82f6; }
.dse-result-card.ambitious { border-left-color: #f59e0b; }


.pdf-upsell-card {
  background: #4f46e5; /* Keep your blue/purple color */
  color: #ffffff;      /* Changed from dark grey to pure white for visibility */
  padding: 25px; 
  border-radius: 16px;
  text-align: center; 
  margin: 30px 0;
}
.pdf-upsell-card p {
  color: #000000; /* This makes it BLACK */
  background: rgba(255, 255, 255, 0.8); /* This adds a white semi-transparent background to the text so it's readable */
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
}
.pdf-upsell-card h3 {
  color: #ffffff;
  margin: 0;
}
.btn-pdf {
  display: inline-block; background: #fbbf24; color: #1e3a8a;
  padding: 12px 24px; border-radius: 8px; text-decoration: none;
  font-weight: 700; margin-top: 15px;
}
/* PDF Upsell Card */

.btn-pdf:hover { background: #eef2ff; transform: translateY(-2px); }

/* Filter Grid */
.dse-filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}
.dse-filter-grid label { font-size: 14px; font-weight: 600; color: #374151; }
.dse-filter-grid input, .dse-filter-grid select {
  margin-top: 8px; width: 100%; padding: 12px; border: 1px solid #d1d5db; border-radius: 8px;
}