/* ============================================================
   Mishru.AI — Simple Clean Informative Style
   AI Jewellery Photography
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --blue-border: #bfdbfe;
  --gray-bg: #f8fafc;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, .07);
  --trans: .25s ease;
  --max-w: 860px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.3;
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin-bottom: 1.1rem;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

/* ---- Visually Hidden (Accessibility) ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--trans);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.site-logo i {
  color: var(--blue);
  font-size: 1.2rem;
}

.site-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: .4rem .7rem;
  border-radius: 8px;
  transition: color var(--trans), background var(--trans);
}

.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-links .btn-nav {
  color: var(--white);
  background: var(--blue);
  padding: .45rem 1.1rem;
  border-radius: 100px;
}

.nav-links .btn-nav:hover {
  background: #1d4ed8;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  padding: .3rem;
  border-radius: 6px;
  transition: background var(--trans);
}

.nav-toggle:hover {
  background: var(--gray-bg);
}

/* ============================================================
   SECTION BASE
============================================================ */
.content-section {
  padding: 72px 0;
}

.bg-white {
  background: var(--white);
}

.bg-gray {
  background: var(--gray-bg);
}

.section-head {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  padding: .25em .85em;
  border-radius: 100px;
  margin-bottom: .75rem;
}

/* ============================================================
   HERO
============================================================ */
.hero-section {
  padding: 120px 0 72px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: .5rem 0 1rem;
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform .4s ease;
}

.hero-img:hover {
  transform: scale(1.03);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary-solid {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--blue);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}

.btn-primary-solid:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .3);
  color: var(--white);
}

/* ============================================================
   PROSE (Text sections)
============================================================ */
.prose {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
}

.prose p {
  font-size: 1rem;
}

/* ============================================================
   CONTENT IMAGE (full-width under prose)
============================================================ */
.content-img-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
  transition: transform .4s ease;
}

.content-img-wrap:hover .content-img,
.two-col-img:hover .content-img {
  transform: scale(1.03);
}

/* ============================================================
   TWO COLUMN LAYOUT
============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.two-col-rev {
  direction: rtl;
}

.two-col-rev>* {
  direction: ltr;
}

.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.two-col-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: .5rem 0 1rem;
}

.two-col-text p {
  font-size: .97rem;
}

/* ============================================================
   BENEFIT LIST
============================================================ */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--trans);
}

.benefit-list li:hover {
  box-shadow: var(--shadow);
}

.benefit-list i {
  color: var(--blue);
  font-size: 1.1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.benefit-list strong {
  display: block;
  font-size: .93rem;
  color: var(--text);
  margin-bottom: .15rem;
}

.benefit-list span {
  font-size: .87rem;
  color: var(--text-muted);
}

/* ============================================================
   TYPES GRID
============================================================ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.type-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.1rem 1.2rem;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans), box-shadow var(--trans);
}

.type-item:hover {
  border-color: var(--blue-border);
  box-shadow: var(--shadow);
}

.type-item i {
  color: var(--blue);
  font-size: 1.2rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.type-item strong {
  display: block;
  font-size: .93rem;
  color: var(--text);
  margin-bottom: .2rem;
}

.type-item span {
  font-size: .83rem;
  color: var(--text-muted);
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow var(--trans), transform var(--trans);
}

.gallery-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: transform .4s ease;
}

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

.gallery-caption {
  padding: .7rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--white);
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item:hover {
  border-color: var(--blue-border);
}

.faq-item.open {
  border-color: var(--blue-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background var(--trans);
}

.faq-question:hover {
  background: var(--blue-light);
}

.faq-item.open .faq-question {
  background: var(--blue-light);
  color: var(--blue);
}

.faq-icon {
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--trans), color var(--trans);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-answer {
  background: var(--gray-bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.25rem;
}

.faq-answer:not([hidden]) {
  max-height: 300px;
  padding: 1rem 1.25rem;
}

.faq-answer p {
  font-size: .93rem;
  margin: 0;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: 72px 0;
  background: var(--blue);
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.cta-box .eyebrow {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .25);
}

.cta-box h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #fff;
  margin: .5rem 0 .75rem;
}

.cta-box p {
  color: rgba(255, 255, 255, .85);
  font-size: .97rem;
  margin-bottom: 1.75rem;
}

.cta-form {
  display: flex;
  gap: .75rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}

.cta-input {
  flex: 1;
  min-width: 200px;
  padding: .75rem 1.1rem;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 100px;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--trans);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, .65);
}

.cta-input:focus {
  border-color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .2);
}

.cta-box .btn-primary-solid {
  background: #fff;
  color: var(--blue);
  font-size: .93rem;
  white-space: nowrap;
}

.cta-box .btn-primary-solid:hover {
  background: #f0f9ff;
  color: var(--blue);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.cta-note {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #2563eb;
  color: #94a3b8;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  color: #f1f5f9;
}

.footer-logo i,
.footer-logo span {
  color: #ffffff;
}

.footer-brand-col p {
  font-size: .87rem;
  color: #ffffff;
  margin-top: .75rem;
}

.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: #1e293b;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: .95rem;
  transition: background var(--trans), color var(--trans);
}

.footer-social a:hover {
  background: var(--blue);
  color: #fff;
}

.footer-links-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-links-col ul a {
  font-size: .87rem;
  color: #ffffff;
  transition: color var(--trans), padding-left var(--trans);
}

.footer-links-col ul a:hover {
  color: #60a5fa;
  padding-left: 3px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .87rem;
  color: #FFFFFF;
  margin-bottom: .5rem;
}

.footer-contact i {
  color: #ffffff;
  font-size: .9rem;
  width: 14px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  color: #64748b;
  transition: color var(--trans);
}

.footer-legal a:hover {
  color: #60a5fa;
}

/* ============================================================
   BACK TO TOP
============================================================ */
#backToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--trans), visibility var(--trans), transform var(--trans);
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* ============================================================
   FADE-UP ANIMATION
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-up.delay-1 {
  transition-delay: .12s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col-rev {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-section {
    padding: 96px 0 56px;
  }

  .content-section {
    padding: 52px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: .75rem 1rem 1rem;
    gap: .25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: .6rem .8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-input {
    border-radius: 10px;
  }

  .btn-primary-solid {
    border-radius: 10px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }
}


/* benifits Section changes */
/* Section & General Layout */
.bg-gray {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* Header Styling */
.section-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.eyebrow {
  display: inline-block;
  /* Isse background sirf text jitna hi bada hoga */
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;

  /* Background aur Padding Color Settings */
  color: #2563eb;
  /* Text ka Gold color */
  background-color: #eff6ff;
  /* Halka premium gold tint background (Aap ise change kar sakte hain) */
  padding: 6px 14px;
  /* Upar-niche 6px aur dono side me 14px extra space */
  border-radius: 50px;
  /* Oval/Capsule modern look ke liye (Agar square chahiye to 4px kar dein) */
}

.section-header h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-header .section-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Modern 3-Column Grid System */
.benefits-grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Benefit Card Style */
.benefit-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

/* Card Hover Effect */
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(181, 137, 61, 0.1);
  border-color: #2563eb;
}

/* Header Row: Icon Left, Title Right */
.card-header-row {
  display: flex;
  align-items: center;
  /* Vertically icon aur text ko center karne ke liye */
  gap: 15px;
  /* Icon aur text ke beech ka space */
  margin-bottom: 18px;
  /* Title aur neeche wale content ke beech ka gap */
}

/* Unique Icon Styling */
.unique-icon {
  color: #2563eb;
  /* Elegant Gold */
  font-size: 26px;
  /* Icon Size */
  flex-shrink: 0;
  /* Icon squeezed na ho */
}

/* Card Title Styling */
.card-header-row h3 {
  font-size: 19px;
  color: #222;
  font-weight: 600;
  margin: 0;
  /* Default margin reset */
}

/* Bottom Content Only Styling */
.card-body-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
  .benefits-grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .benefits-grid-box {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 28px;
  }

}

/* Footer style */
/* Footer Base Styling */
.l3-footer {
  background-color: #F9F9F9;
  color: #000000;
  padding: 30px 0;
  font-family: 'Inter', sans-serif;
}

.l3-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.l3-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 25px;
}

/* Brand Section styling */
.l3-logo {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.l3-logo i {
  color: #3b82f6;
  /* Accent blue for gem logo icon */
}

.l3-logo span {
  color: #3b82f6;
  /* Blue for .AI part */
}

.l3-footer-tagline {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  /* Dark gray */
  max-width: 380px;
}

/* Social Media Squares */
.l3-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.l3-footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.03);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.l3-footer-social a:hover {
  background-color: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

/* Columns & Headers */
.l3-footer-heading {
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

/* Quick Links layout */
.l3-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.l3-footer-nav a {
  color: #333333;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.l3-footer-nav a:hover {
  color: #2563eb;
}

/* Contact List styling */
.l3-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l3-footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #333333;
}

.l3-footer-contact-list li i {
  color: #3b82f6;
  /* Electric blue icon colors from design */
  font-size: 16px;
}

/* Floating Back To Top Button */
#l3-backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.2s ease;
}

#l3-backToTop:hover {
  background-color: #1d4ed8;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .l3-footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
#layout-hero a,
#layout-introduction a,
#layout-why-use a,
#layout-benefits a,
#layout-cta a {
  color: #002bff !important;
  text-decoration: none !important;
}

#layout-hero a:hover,
#layout-introduction a:hover,
#layout-why-use a:hover,
#layout-benefits a:hover,
#layout-cta a:hover {
  color: #001ecb !important;
  text-decoration: none !important;
}