.elementor-1458 .elementor-element.elementor-element-98249c6{--display:flex;}body.elementor-page-1458:not(.elementor-motion-effects-element-type-background), body.elementor-page-1458 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-53bcc6f *//* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(145deg, #f3f4f5, #e9ebec);
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 950px;
  background: #fcfcfc;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid #e4e4e4;
  animation: fadeIn 1.2s ease-in-out;
}

/* HEADER */
header {
  position: relative;
  margin-bottom: 50px;
}

.heading-line {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #00b67a, #6dd5a8);
  margin: 0 auto 20px auto;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 182, 122, 0.3);
}

header h1 {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3b3b3b;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
}

.subtitle {
  color: #6a6a6a;
  font-size: 17px;
  letter-spacing: 0.5px;
}

/* AZKAR SECTION */
.azkar-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
}

/* AZKAR CARD */
.azkar-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  width: 100%;
  max-width: 340px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.azkar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00b67a, #6dd5a8);
  transition: 0.5s;
}

.azkar-card:hover::before {
  left: 0;
}

.azkar-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #b3e5c1;
  box-shadow: 0 15px 45px rgba(0, 185, 131, 0.15);
}

.azkar-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.azkar-card p {
  color: #666;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #e7efeb;
  color: #1e3c31;
  padding: 13px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.btn:hover {
  background: #00b67a;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 182, 122, 0.4);
  transform: scale(1.05);
}

/* FOOTER */
footer {
  margin-top: 50px;
  color: #888;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header h1 {
    font-size: 36px;
  }

  .azkar-section {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 30px 20px;
  }

  .heading-line {
    width: 60px;
  }
}/* End custom CSS */