/* start hero section */

  .duaas-hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
  }

  .duaas-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/29849654/pexels-photo-29849654.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.82;
    z-index: 0;
  }

  .duaas-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,21,51,0.94) 0%, rgba(10,21,51,0.82) 32%, rgba(11,30,64,0.55) 58%, rgba(11,30,64,0.30) 100%);
    z-index: 1;
  }

  .duaas-hero-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 620px 620px at 82% 48%, rgba(201,149,42,0.30) 0%, rgba(18,148,120,0.22) 32%, rgba(10,21,51,0.55) 60%, rgba(10,21,51,0.75) 100%);
    z-index: 1;
  }

  .duaas-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 30px 120px;
  }

  .duaas-hero-content {
    max-width: 520px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  .duaas-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9952A;
    background: rgba(201, 149, 42, 0.12);
    border: 1px solid rgba(201, 149, 42, 0.35);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
  }

  .duaas-icon-eyebrow {
    flex-shrink: 0;
  }

  .duaas-hero-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.18;
    color: #FAF8F2;
    margin: 0 0 22px 0;
    letter-spacing: -0.01em;
  }

  .duaas-hero-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #E5E5E5;
    margin: 0 0 36px 0;
    max-width: 540px;
  }

  .duaas-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #0B1E40;
    background: linear-gradient(135deg, #20C076 0%, #12A66C 100%);
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 24px rgba(32, 192, 118, 0.28);
  }

  .duaas-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(32, 192, 118, 0.4);
    background: linear-gradient(135deg, #24D683 0%, #14B876 100%);
  }

  .duaas-hero-btn:focus-visible {
    outline: 2px solid #FAF8F2;
    outline-offset: 3px;
  }

  .duaas-icon-btn {
    transition: transform 0.25s ease;
  }

  .duaas-hero-btn:hover .duaas-icon-btn {
    transform: translateX(4px);
  }

  /* ---------- Decorative animated praying-hands illustration ---------- */

  .duaas-hero-illustration {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.96;
    pointer-events: none;
  }

  .duaas-hero-illustration-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,149,42,0.45) 0%, rgba(32,192,118,0.28) 45%, rgba(10,21,51,0) 75%);
    filter: blur(2px);
    animation: duaasHeroGlowPulse 5s ease-in-out infinite;
  }

  .duaas-hero-hands {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(10, 21, 51, 0.45));
    animation: duaasHeroHandsFloat 5s ease-in-out infinite;
  }

  .duaas-hero-dua-particle {
    animation: duaasHeroParticleRise 3.6s ease-in-out infinite;
  }

  .duaas-hero-dua-particle-1 {
    animation-delay: 0s;
  }

  .duaas-hero-dua-particle-2 {
    animation-delay: 0.6s;
  }

  .duaas-hero-dua-particle-3 {
    animation-delay: 1.2s;
  }

  @keyframes duaasHeroHandsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes duaasHeroGlowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.07); }
  }

  @keyframes duaasHeroParticleRise {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-38px); }
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 991px) {
    .duaas-hero {
      min-height: 560px;
    }
    .duaas-hero-container {
      padding: 80px 24px 70px;
    }
    .duaas-hero-heading {
      font-size: 38px;
    }
    .duaas-hero-overlay {
      background: linear-gradient(180deg, rgba(10,21,51,0.60) 0%, rgba(10,21,51,0.92) 55%, rgba(10,21,51,0.97) 100%);
    }
    .duaas-hero-illustration {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .duaas-hero {
      min-height: 480px;
    }
    .duaas-hero-container {
      padding: 60px 20px 50px;
    }
    .duaas-hero-heading {
      font-size: 30px;
      line-height: 1.24;
    }
    .duaas-hero-body {
      font-size: 15.5px;
    }
    .duaas-hero-eyebrow {
      font-size: 11.5px;
      padding: 7px 14px;
    }
    .duaas-hero-btn {
      width: 100%;
      justify-content: center;
      padding: 15px 24px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .duaas-hero-content,
    .duaas-hero-btn,
    .duaas-icon-btn {
      transition: none !important;
    }
    .duaas-hero-content {
      opacity: 1;
      transform: none;
    }
    .duaas-hero-illustration-glow,
    .duaas-hero-hands,
    .duaas-hero-dua-particle {
      animation: none !important;
    }
  }




/* end hero section * /

/* ---------- Quote block + Hadith card (inside left column) ---------- */
  .duaas-quote-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(11, 30, 64, 0.10);
  }

  .duaas-quote-para {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.75;
    color: #3E4650;
    margin: 0 0 16px 0;
  }

  .duaas-quote-para:last-of-type {
    margin-bottom: 22px;
  }

  .duaas-quote-para:first-of-type::first-letter {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 0.7;
    color: #C9952A;
    float: left;
    padding: 3px 7px 0 0;
  }

  .duaas-hadith-card {
    position: relative;
    background: linear-gradient(160deg, #0B1E40 0%, #0A1533 100%);
    border-radius: 16px;
    padding: 50px 36px;
    box-shadow: 0 16px 36px rgba(11, 30, 64, 0.20);
    margin-top: 40px;
  }

  .duaas-hadith-corner {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 2px solid #C9952A;
    opacity: 0.55;
  }

  .duaas-hadith-corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    border-radius: 6px 0 0 0;
  }

  .duaas-hadith-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 6px 0;
  }

  .duaas-hadith-quote-icon {
    display: block;
    margin-bottom: 14px;
  }

  .duaas-hadith-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C9952A;
    margin: 0 0 12px 0;
  }

  .duaas-hadith-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 16.5px;
    line-height: 1.85;
    color: #FAF8F2;
    margin: 0 0 20px 0;
  }

  .duaas-hadith-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #20C076, #C9952A);
    border-radius: 2px;
    margin-bottom: 16px;
  }

  .duaas-hadith-source {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12.5px;
    line-height: 1.85;
    color: #B7BFD1;
    margin: 0;
  }

  /* ---------- Why Dua Matters + Featured Duas ---------- */

  .duaas-featured-section {
    width: 100%;
    background: #FFFFFF;
    padding: 70px 0;
  }

  .duaas-featured-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .duaas-featured-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
  }

  .duaas-benefits-col,
  .duaas-duas-col {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .duaas-duas-col {
    transition-delay: 0.12s;
  }

  .duaas-benefits-col.duaas-fade-up-visible,
  .duaas-duas-col.duaas-fade-up-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .duaas-featured-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0B1E40;
    margin: 0 0 20px 0;
  }

  .duaas-benefits-col {
    background: #FDFBF3;
    border: 1px solid rgba(11, 30, 64, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
  }

  .duaas-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .duaas-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .duaas-benefit-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(11, 30, 64, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .duaas-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .duaas-benefit-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #0B1E40;
  }

  .duaas-benefit-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    color: #36383c;
  }

  .duaas-duas-intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.7;
    color: #5B6472;
    margin: 0 0 26px 0;
  }

  .duaas-dua-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }

  /* -------- Prominent dua cards -------- */

  .duaas-dua-card {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 20px 26px 20px 30px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF3 100%);
    border: 1.5px solid rgba(201, 149, 42, 0.35);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(11, 30, 64, 0.10);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  }

  .duaas-dua-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #C9952A 0%, #20C076 100%);
  }

  .duaas-dua-card:hover {
    box-shadow: 0 18px 40px rgba(11, 30, 64, 0.16);
    transform: translateY(-3px);
    border-color: rgba(201, 149, 42, 0.6);
  }

  .duaas-dua-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(150deg, rgba(11, 30, 64, 0.08) 0%, rgba(201, 149, 42, 0.14) 100%);
    border: 1px solid rgba(11, 30, 64, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .duaas-dua-content {
    flex: 1;
    min-width: 0;
  }

  .duaas-dua-top-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-bottom: 12px;
  }

  .duaas-dua-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #0B1E40;
    margin: 0;
  }

  .duaas-dua-source {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    color: #0B1E40;
    background: rgba(201, 149, 42, 0.18);
    padding: 4px 11px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .duaas-dua-arabic {
    font-family: 'Amiri', serif;
    font-size: 24px;
    line-height: 2;
    color: #0B1E40;
    margin: 0 0 5px 0;
  }

  .duaas-dua-translation {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    line-height: 1.65;
    color: #3E4650;
    margin: 0;
  }

  .duaas-cta-banner {
    background: linear-gradient(135deg, rgba(32, 192, 118, 0.10) 0%, rgba(18, 148, 120, 0.10) 100%);
    border: 1px solid rgba(32, 192, 118, 0.25);
    border-radius: 16px;
    padding: 20px 30px;
  }

  .duaas-cta-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #12A66C;
    margin: 0 0 10px 0;
  }

  .duaas-cta-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    color: #3E4650;
    margin: 0 0 20px 0;
    max-width: 640px;
  }

  .duaas-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #12A66C 0%, #0E8D5B 100%);
    border: none;
    padding: 13px 24px;
    border-radius: 9px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(18, 166, 108, 0.28);
  }

  .duaas-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 166, 108, 0.38);
  }

  .duaas-cta-btn:focus-visible {
    outline: 2px solid #0B1E40;
    outline-offset: 3px;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 991px) {
    .duaas-featured-section {
      padding: 70px 0;
    }
    .duaas-featured-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .duaas-benefits-col {
      padding: 28px 24px;
    }
    .duaas-hadith-card {
      padding: 32px 28px;
    }
  }

  @media (max-width: 600px) {
    .duaas-featured-section {
      padding: 56px 0;
    }
    .duaas-featured-container {
      padding: 0 20px;
    }
    .duaas-featured-heading {
      font-size: 21px;
    }
    .duaas-quote-para {
      font-size: 14px;
    }
    .duaas-hadith-card {
      padding: 26px 22px;
      border-radius: 14px;
    }
    .duaas-hadith-text {
      font-size: 15.5px;
    }
    .duaas-dua-card {
      flex-direction: column;
      padding: 22px 20px 22px 26px;
    }
    .duaas-dua-arabic {
      font-size: 21px;
    }
    .duaas-cta-banner {
      padding: 24px 22px;
    }
    .duaas-cta-btn {
      width: 100%;
      justify-content: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .duaas-benefits-col,
    .duaas-duas-col,
    .duaas-dua-card,
    .duaas-cta-btn {
      transition: none !important;
    }
    .duaas-benefits-col,
    .duaas-duas-col {
      opacity: 1;
      transform: none;
    }
  }
  
 .duaas-appcta-section {
    width: 100%;
    background: #FFFFFF;
    padding: 0 0;
  }

  .duaas-appcta-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .duaas-appcta-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #0B1E40 0%, #0A1533 100%);
    border: 1px solid rgba(201, 149, 42, 0.18);
    border-radius: 24px;
    padding: 56px 60px;
    box-shadow: 0 24px 60px rgba(11, 30, 64, 0.28);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  .duaas-appcta-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .duaas-appcta-row1 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 48px;
    align-items: start;
  }

  /* ---------- Row 1 left: phone mockup ---------- */

  .duaas-appcta-row1-left {
    display: flex;
    justify-content: center;
  }

  .duaas-phone-mockup {
    position: relative;
    width: 260px;
    height: 500px;
    background: #05101F;
    border-radius: 34px;
    padding: 10px;
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 149, 42, 0.25);
  }

  .duaas-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 18px;
    background: #05101F;
    border-radius: 0 0 12px 12px;
    z-index: 2;
  }

  .duaas-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background-image: url('https://stage.allmasajid.com/wp-content/uploads/2026/07/main-screen.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }

  /* ---------- Row 1 right: heading + body ---------- */

  .duaas-appcta-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #FAF8F2;
    margin: 0 0 16px 0;
    line-height: 1.3;
  }

  .duaas-appcta-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.55;
    color: #C7CEDB;
    margin: 0 0 26px 0;
    max-width: 680px;
  }

  .duaas-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 680px;
  }

  .duaas-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: rgba(250, 248, 242, 0.04);
    border: 1px solid rgba(250, 248, 242, 0.10);
    border-radius: 14px;
    padding: 28px 15px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  }

  .duaas-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
    border-color: rgba(201, 149, 42, 0.4);
    background: rgba(250, 248, 242, 0.07);
  }

  .duaas-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: linear-gradient(150deg, #20C076 0%, #129478 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(18, 148, 120, 0.35);
  }

  .duaas-feature-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: #FAF8F2;
  }

.duaas-feature-label a {color: #FAF8F2;}



  /* ---------- Row 2: centered caption + inline store buttons ---------- */

  .duaas-appcta-row2 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 46px;
    padding-top: 32px;
    border-top: 1px solid rgba(250, 248, 242, 0.10);
  }

  .duaas-appdownload-caption {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    color: #C7CEDB;
    max-width: 780px;
    margin: 0 0 28px 0;
  }

  .duaas-store-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .duaas-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(250, 248, 242, 0.06);
    border: 1px solid rgba(250, 248, 242, 0.2);
    border-radius: 12px;
    padding: 14px 24px;
    cursor: pointer;
    color: #FFFFFF;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  }

  .duaas-store-btn:hover {
    transform: translateY(-2px);
    background: rgba(250, 248, 242, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
  }

  .duaas-store-btn:focus-visible {
    outline: 2px solid #C9952A;
    outline-offset: 2px;
  }

  .duaas-store-icon {
    flex-shrink: 0;
  }

  .duaas-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
  }

  .duaas-store-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.02em;
    color: #B7BFD1;
  }

  .duaas-store-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #FFFFFF;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 991px) {
    .duaas-appcta-section {
      padding: 60px 0;
    }
    .duaas-appcta-panel {
      padding: 40px 28px;
    }
    .duaas-appcta-row1 {
      grid-template-columns: 1fr;
      gap: 36px;
      text-align: center;
    }
    .duaas-appcta-body {
      margin: 0 auto 26px;
    }
    .duaas-feature-grid {
      margin: 0 auto;
    }
    .duaas-phone-mockup {
      width: 180px;
      height: 360px;
    }
  }

  @media (max-width: 600px) {
    .duaas-appcta-container {
      padding: 0 20px;
    }
    .duaas-appcta-panel {
      padding: 30px 20px;
      border-radius: 18px;
    }
    .duaas-appcta-heading {
      font-size: 22px;
    }
    .duaas-feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .duaas-appcta-row2 {
      margin-top: 34px;
      padding-top: 30px;
    }
    .duaas-store-buttons {
      flex-direction: column;
      width: 100%;
      max-width: 260px;
    }
    .duaas-store-btn {
      padding: 12px 20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .duaas-appcta-panel,
    .duaas-store-btn {
      transition: none !important;
    }
    .duaas-appcta-panel {
      opacity: 1;
      transform: none;
    }
  }
  
   .duaas-faq-section {
    width: 100%;
    background: #FFFFFF;
    padding: 0 0 60px;
  }

  .duaas-faq-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .duaas-faq-heading-wrap {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  .duaas-faq-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9952A;
    background: rgba(201, 149, 42, 0.10);
    border: 1px solid rgba(201, 149, 42, 0.3);
    padding: 6px 15px;
    border-radius: 999px;
    margin-bottom: 16px;
  }

  .duaas-faq-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0B1E40;
    margin: 0;
  }

  .duaas-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }

  .duaas-faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .duaas-faq-col:nth-child(2) {
    transition-delay: 0.1s;
  }

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

  .duaas-faq-item {
    background: #FDFBF3;
    border: 1px solid rgba(11, 30, 64, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .duaas-faq-item.duaas-faq-open {
    border-color: rgba(201, 149, 42, 0.4);
    box-shadow: 0 10px 26px rgba(11, 30, 64, 0.08);
  }

  .duaas-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15.5px;
    color: #0B1E40;
  }

  .duaas-faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(201, 149, 42, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .duaas-faq-open .duaas-faq-icon {
    transform: rotate(45deg);
    background: rgba(32, 192, 118, 0.18);
  }

  .duaas-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .duaas-faq-open .duaas-faq-answer {
    max-height: 240px;
  }

  .duaas-faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.7;
    color: #3E4650;
    margin: 0;
    padding: 0 20px 20px 20px;
  }

  /* ---------- Related Resources ---------- */

  .duaas-resources-wrap {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  .duaas-resources-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #0B1E40;
    margin: 0 0 28px 0;
  }

  .duaas-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .duaas-resource-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    background: #FDFBF3;
    border: 1px solid rgba(11, 30, 64, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .duaas-resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(11, 30, 64, 0.10);
    border-color: rgba(201, 149, 42, 0.45);
    background: #FFFFFF;
  }

  .duaas-resource-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(150deg, #20C076 0%, #129478 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(18, 148, 120, 0.3);
  }

  .duaas-resource-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: #0B1E40;
    text-align: left;
  }

  /* ---------- Responsive ---------- */

  @media (max-width: 991px) {
    .duaas-faq-section {
      padding: 70px 0;
    }
    .duaas-faq-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .duaas-resources-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .duaas-faq-container {
      padding: 0 20px;
    }
    .duaas-faq-heading {
      font-size: 24px;
    }
    .duaas-faq-question {
      font-size: 14.5px;
      padding: 16px 16px;
    }
    .duaas-resource-icon {
      width: 44px;
      height: 44px;
    }
    .duaas-resource-card {
      padding: 12px 14px;
      gap: 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .duaas-faq-heading-wrap,
    .duaas-faq-col,
    .duaas-resources-wrap,
    .duaas-faq-icon,
    .duaas-faq-answer,
    .duaas-resource-card {
      transition: none !important;
    }
    .duaas-faq-heading-wrap,
    .duaas-faq-col,
    .duaas-resources-wrap {
      opacity: 1;
      transform: none;
    }
  }

  /* salaat heri section */

  .salat-new-hero,
.salat-new-hero *,
.salat-new-hero *::before,
.salat-new-hero *::after {
  box-sizing: border-box;
}

.salat-new-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 90px 30px;
  background-color: #0A1533;
  isolation: isolate;
}

.salat-new-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/13868818/pexels-photo-13868818.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1200&dpr=1');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.salat-new-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10,21,51,0.97) 0%, rgba(11,30,64,0.92) 38%, rgba(11,30,64,0.72) 62%, rgba(11,30,64,0.55) 100%);
  z-index: 1;
}

.salat-new-hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 38px, #C9952A 38px, #C9952A 39px),
    repeating-linear-gradient(-45deg, transparent, transparent 38px, #C9952A 38px, #C9952A 39px);
  pointer-events: none;
}

.salat-new-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 40px;
}

/* ---------- Text column ---------- */

.salat-new-hero-text {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.salat-new-hero-text.salat-new-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.salat-new-hero-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: #FAF8F2;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

.salat-new-hero-highlight {
  background: linear-gradient(90deg, #C9952A 0%, #E5C46B 50%, #C9952A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.salat-new-hero-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: #D7DCE8;
  margin: 0 0 26px 0;
  max-width: 480px;
}

.salat-new-hero-divider {
  display: flex;
}

.salat-new-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 15px 30px;
  background: linear-gradient(90deg, #C9952A 0%, #BD9332 100%);
  color: #0B1E40;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 28px rgba(201,149,42,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.salat-new-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201,149,42,0.5);
  background: linear-gradient(90deg, #E5C46B 0%, #C9952A 100%);
}

.salat-new-hero-btn-icon {
  transition: transform 0.25s ease;
}

.salat-new-hero-btn:hover .salat-new-hero-btn-icon {
  transform: translateX(3px);
}

/* ---------- Visual column ---------- */

.salat-new-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}

.salat-new-hero-visual.salat-new-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.salat-new-hero-visual-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  max-width: 70%;
  background: radial-gradient(circle, rgba(201,149,42,0.35) 0%, rgba(18,166,108,0.12) 55%, transparent 75%);
  filter: blur(30px);
  z-index: 0;
  border-radius: 50%;
}

.salat-new-hero-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 3.1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,149,42,0.35);
  border: 1px solid rgba(201,149,42,0.4);
}

.salat-new-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 -230px;
  display: block;
}

.salat-new-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,30,64,0) 55%, rgba(10,21,51,0.55) 100%);
  pointer-events: none;
}

.salat-new-hero-frame-ornament {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 2px solid #C9952A;
  z-index: 2;
  pointer-events: none;
}

.salat-new-hero-frame-ornament-tl {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 10px;
}

.salat-new-hero-frame-ornament-br {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 10px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .salat-new-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .salat-new-hero-text {
    text-align: center;
  }
  .salat-new-hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .salat-new-hero-divider {
    justify-content: center;
  }
  .salat-new-hero-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .salat-new-hero-visual {
    order: -1;
  }
  .salat-new-hero-frame {
    max-width: 460px;
  }
}

@media (max-width: 600px) {
  .salat-new-hero {
    padding: 60px 20px;
  }
  .salat-new-hero-heading {
    font-size: 34px;
  }
  .salat-new-hero-desc {
    font-size: 15.5px;
  }
  .salat-new-hero-frame {
    max-width: 100%;
    aspect-ratio: 4 / 3.4;
  }
}

/* end salaat hero */

/* Start section 2 */

.salat-new-prayers,
.salat-new-prayers *,
.salat-new-prayers *::before,
.salat-new-prayers *::after {
  box-sizing: border-box;
}

.salat-new-prayers {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 80px 30px;
  background-color: #FDFBF3;
}

.salat-new-prayers-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 38px, #0B1E40 38px, #0B1E40 39px),
    repeating-linear-gradient(-45deg, transparent, transparent 38px, #0B1E40 38px, #0B1E40 39px);
  pointer-events: none;
}

.salat-new-prayers-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: start;
}

/* ---------- Left column ---------- */

.salat-new-prayers-left {
  position: sticky;
  top: 100px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.salat-new-prayers-left.salat-new-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.salat-new-prayers-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.2;
  color: #0B1E40;
  margin: 0 0 22px 0;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #C9952A;
}

.salat-new-prayers-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.75;
  color: #4A5266;
  margin: 0 0 18px 0;
}

.salat-new-prayers-text:last-child {
  margin-bottom: 0;
}

/* ---------- Right column ---------- */

.salat-new-prayers-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.12s, transform 0.8s ease 0.12s;
}

.salat-new-prayers-right.salat-new-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.salat-new-prayers-list-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0B1E40;
  margin: 0 0 20px 0;
}

.salat-new-prayers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.salat-new-prayers-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid #ECE6D6;
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.salat-new-prayers-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11,30,64,0.09);
  border-color: #C9952A;
}

.salat-new-prayers-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #20C076 0%, #12A66C 100%);
  box-shadow: 0 6px 16px rgba(18,166,108,0.3);
}

.salat-new-prayers-item-body {
  flex: 1;
  min-width: 0;
}

.salat-new-prayers-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0B1E40;
  margin: 0 0 6px 0;
  line-height: 1;
}

.salat-new-prayers-item-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: #5C6479;
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .salat-new-prayers-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .salat-new-prayers-left {
    position: static;
  }
}

@media (max-width: 600px) {
  .salat-new-prayers {
    padding: 55px 20px;
  }
  .salat-new-prayers-heading {
    font-size: 29px;
  }
  .salat-new-prayers-item {
    padding: 16px;
    gap: 12px;
  }
  .salat-new-prayers-icon {
    width: 40px;
    height: 40px;
  }
}

/* End section 2 */


/* Start section 3 */

.salat-new-refs,
.salat-new-refs *,
.salat-new-refs *::before,
.salat-new-refs *::after {
  box-sizing: border-box;
}

.salat-new-refs {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 85px 30px;
  background-color: #0B1E40;
}

.salat-new-refs-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, #C9952A 40px, #C9952A 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, #C9952A 40px, #C9952A 41px);
  pointer-events: none;
}

.salat-new-refs-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Row 1: Heading ---------- */

.salat-new-refs-heading-row {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 55px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.salat-new-refs-eyebrow-icon {
  margin-bottom: 14px;
}

.salat-new-refs-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.25;
  color: #FAF8F2;
  margin: 0 0 18px 0;
}

.salat-new-refs-heading-divider {
  display: flex;
}

/* ---------- Row 2: Two Columns ---------- */

.salat-new-refs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.salat-new-refs-card {
  position: relative;
  background: linear-gradient(160deg, rgba(250,248,242,0.05) 0%, rgba(250,248,242,0.02) 100%);
  border: 1px solid rgba(201,149,42,0.28);
  border-radius: 16px;
  padding: 40px 36px 34px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.salat-new-refs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,149,42,0.55);
  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

/* Islamic-frame corner ornaments */
.salat-new-refs-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.salat-new-refs-corner-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid #C9952A;
  border-left: 2px solid #C9952A;
  border-top-left-radius: 8px;
}

.salat-new-refs-corner-tr {
  top: 12px;
  right: 12px;
  border-top: 2px solid #C9952A;
  border-right: 2px solid #C9952A;
  border-top-right-radius: 8px;
}

.salat-new-refs-corner-bl {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid #C9952A;
  border-left: 2px solid #C9952A;
  border-bottom-left-radius: 8px;
}

.salat-new-refs-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid #C9952A;
  border-right: 2px solid #C9952A;
  border-bottom-right-radius: 8px;
}

.salat-new-refs-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.salat-new-refs-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.salat-new-refs-card-quran .salat-new-refs-card-icon {
  background: linear-gradient(135deg, #20C076 0%, #12A66C 100%);
  box-shadow: 0 6px 16px rgba(18,166,108,0.35);
}

.salat-new-refs-card-hadith .salat-new-refs-card-icon {
  background: linear-gradient(135deg, #C9952A 0%, #BD9332 100%);
  box-shadow: 0 6px 16px rgba(201,149,42,0.35);
}

.salat-new-refs-card-label-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FAF8F2;
  letter-spacing: 0.2px;
}

.salat-new-refs-quote-mark {
  margin-bottom: 6px;
}

.salat-new-refs-quote {
  margin: 0 0 20px 0;
}

.salat-new-refs-quote-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: #FAF8F2;
  margin: 0 0 14px 0;
}

.salat-new-refs-quote-source {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  color: #C9952A;
}

.salat-new-refs-explainer {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.75;
  color: #B9C0D2;
  margin: auto 0 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(250,248,242,0.12);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .salat-new-refs-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .salat-new-refs {
    padding: 60px 20px;
  }
  .salat-new-refs-heading {
    font-size: 28px;
  }
  .salat-new-refs-card {
    padding: 32px 24px 28px 24px;
  }
  .salat-new-refs-quote-text {
    font-size: 17px;
  }
}

/* End section 3 */

/* Start section 4 */

.salat-new-benefits,
.salat-new-benefits *,
.salat-new-benefits *::before,
.salat-new-benefits *::after {
  box-sizing: border-box;
}

.salat-new-benefits {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 85px 30px;
  background-color: #FAF8F2;
}

.salat-new-benefits-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, #0B1E40 40px, #0B1E40 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, #0B1E40 40px, #0B1E40 41px);
  pointer-events: none;
}

.salat-new-benefits-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- Row 1: Intro ---------- */

.salat-new-benefits-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.salat-new-benefits-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #0B1E40;
  margin: 0 0 16px 0;
}

.salat-new-benefits-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #4A5266;
  margin: 0;
}

/* ---------- Row 2: 5 Column Grid ---------- */

.salat-new-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.salat-new-benefits-item {
  background: #FFFFFF;
  border: 1px solid #ECE6D6;
  border-radius: 16px;
  padding: 30px 20px 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.salat-new-benefits-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(11,30,64,0.1);
  border-color: #C9952A;
}

.salat-new-benefits-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #20C076 0%, #12A66C 100%);
  box-shadow: 0 8px 20px rgba(18,166,108,0.3);
}

.salat-new-benefits-item:nth-child(odd) .salat-new-benefits-icon {
  background: linear-gradient(135deg, #20C076 0%, #12A66C 100%);
  box-shadow: 0 8px 20px rgba(18,166,108,0.3);
}

.salat-new-benefits-item:nth-child(even) .salat-new-benefits-icon {
  background: linear-gradient(135deg, #C9952A 0%, #BD9332 100%);
  box-shadow: 0 8px 20px rgba(201,149,42,0.3);
}

.salat-new-benefits-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  color: #0B1E40;
  margin: 0 0 10px 0;
}

.salat-new-benefits-item-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.65;
  color: #5C6479;
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 1150px) {
  .salat-new-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .salat-new-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .salat-new-benefits {
    padding: 55px 20px;
  }
  .salat-new-benefits-heading {
    font-size: 27px;
  }
  .salat-new-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* End section 4 */

/* Start section 5 */

.salat-new-resources,
.salat-new-resources *,
.salat-new-resources *::before,
.salat-new-resources *::after {
  box-sizing: border-box;
}

.salat-new-resources {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 85px 30px;
  background-color: #FFFFFF;
}

.salat-new-resources-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 60px;
  align-items: start;
}

/* ---------- Left Column ---------- */

.salat-new-resources-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: #0B1E40;
  margin: 0 0 22px 0;
}

.salat-new-resources-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FDFBF3;
  border-left: 3px solid #C9952A;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0 0 24px 0;
}

.salat-new-resources-note-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.salat-new-resources-note-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.7;
  color: #5C6479;
  margin: 0;
}

.salat-new-resources-body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.75;
  color: #4A5266;
  margin: 0 0 28px 0;
}

.salat-new-resources-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.salat-new-resources-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FDFBF3;
  border: 1px solid #ECE6D6;
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.salat-new-resources-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(11,30,64,0.08);
  border-color: #C9952A;
}

.salat-new-resources-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #20C076 0%, #12A66C 100%);
  box-shadow: 0 6px 16px rgba(18,166,108,0.3);
}

.salat-new-resources-item-body {
  flex: 1;
  min-width: 0;
}

.salat-new-resources-item-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0B1E40;
  margin: 0 0 5px 0;
  line-height: 1;
}

.salat-new-resources-item-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5C6479;
  margin: 0;
}

/* ---------- Right Column: FAQ ---------- */

.salat-new-faq-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: #0B1E40;
  margin: 0 0 22px 0;
}

.salat-new-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.salat-new-faq-item {
  background: #FDFBF3;
  border: 1px solid #ECE6D6;
  border-radius: 12px;
  padding: 4px 20px;
  transition: border-color 0.25s ease;
}

.salat-new-faq-item[open] {
  border-color: #C9952A;
}

.salat-new-faq-question {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: #0B1E40;
}

.salat-new-faq-question::-webkit-details-marker {
  display: none;
}

.salat-new-faq-question::marker {
  content: "";
}

.salat-new-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F1ECDD;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.salat-new-faq-item[open] .salat-new-faq-icon {
  transform: rotate(180deg);
  background: #C9952A;
}

.salat-new-faq-item[open] .salat-new-faq-icon svg path {
  stroke: #FFFFFF;
}

.salat-new-faq-answer {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: #5C6479;
  margin: 0 0 20px 0;
  padding-top: 2px;
  border-top: 1px solid #ECE6D6;
  padding-top: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .salat-new-resources-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 600px) {
  .salat-new-resources {
    padding: 55px 20px;
  }
  .salat-new-resources-heading,
  .salat-new-faq-heading {
    font-size: 25px;
  }
  .salat-new-resources-item {
    padding: 14px;
    gap: 12px;
  }
  .salat-new-faq-question {
    font-size: 14.5px;
  }
}

/* End section 5 */