
* {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  height: 100vh !important;
  color: black !important;
  background-color: rgba(253, 251, 248, 1);
}
.row {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
:root {
  --red: #e22a37 !important;
  --darkgrey: #212226 !important;
  --white: #ffffff !important;
  --grey: #f3f6f7 !important;
}

a:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
a:hover {
  color: inherit;
}
a {
  text-decoration: none !important;
}

.bg-green {
  background-color: #0a4a3c !important;
  color: #ffffffcc;
}

/* Navbar Sticky */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-link {
  color: #ffffffcc !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.menu-link.active {
  color: #e67e3f !important;
}

/* Offcanvas Stilleri */
.offcanvas {
  background: linear-gradient(180deg, #0a4a3c9c 0%, #0d5f4ead 100%) !important;
  width: 320px !important;
  backdrop-filter: blur(9px);
}

.offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body custom-offcanvas {
  padding: 2rem 1.5rem;
}

.menu-link-offcanvas {
  color: #ffffffcc !important;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 1.5rem !important;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.menu-link-offcanvas:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.menu-link-offcanvas.active {
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  color: #ffffff !important;
  border-color: transparent;
}
.form-box {
  height: 85rem;
  display: flex;
  justify-content: center;
}
/* Offcanvas Menü Animasyonları */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.offcanvas-menu-item {
  animation: fadeInLeft 0.5s ease-out forwards;
  opacity: 0;
}

.offcanvas-buttons {
  animation: fadeInLeft 0.5s ease-out forwards;
  opacity: 0;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hamburger Icon Özelleştirme */
.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(230, 126, 63, 0.25);
}

.navbar-toggler-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.btn-login {
  background-color: transparent;
  border: 2px solid #ffffff33;
  border-radius: 8px;
  color: #ffffffcc;
}
.btn-register {
  background: radial-gradient(
    circle,
    rgba(230, 126, 63, 1) 0%,
    rgb(243, 157, 107) 100%
  );
  color: white;
  border-radius: 8px;
}

/* Dropdown Menu Styles */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  content: "";
  border: none;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M4 6L8 10L12 6" stroke="white" stroke-opacity="0.6" stroke-width="1.66667"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.dropdown-menu {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  width: 200px;
  padding: 10px;
}

.dropdown-item {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item svg {
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.dropdown-item.active:not(.logout-item),
.dropdown-item:hover:not(.logout-item) {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: #ffffff !important;
}
.dropdown-item.active:not(.logout-item) svg,
.dropdown-item.active:not(.logout-item) svg path,
.dropdown-item.active:not(.logout-item) svg circle,
.dropdown-item.active:not(.logout-item) svg rect,
.dropdown-item.active:not(.logout-item) svg line,
.dropdown-item:hover:not(.logout-item) svg,
.dropdown-item:hover:not(.logout-item) svg path,
.dropdown-item:hover:not(.logout-item) svg circle,
.dropdown-item:hover:not(.logout-item) svg rect,
.dropdown-item:hover:not(.logout-item) svg line {
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.dropdown-item:active:not(.logout-item) {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: #ffffff !important;
}

.dropdown-item.logout-item:hover {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c !important;
}
.user-btn-box {
  background-color: #fcfbf8;
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  border: 2px solid #f8f6f3;
}
.dropdown-divider {
  margin: 0.5rem 0;
  border-color: #e0e0e0;
}
.bg-card-shadow {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  border-radius: 15px;
  padding: 2rem 1rem;
}
.user-name-profile {
  font-family: "Fraunces", serif;
}
.user-profile-box-number {
  font-size: 24px;
  font-family: "Fraunces", serif;
  color: #0d5f4e;
}
.user-profile-box {
  background-color: #fcfbf8;
  border-radius: 12px;
  text-align: center;
}
.user-profile-active-box {
  background: linear-gradient(135deg, #e67e3f 0%, #f39c6b 100%);
  color: white !important;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
}
.user-profile-box.orange-box {
  background: linear-gradient(135deg, #e67e3f 0%, #f39c6b 100%);
  color: white !important;
  border-radius: 12px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
}
.user-profile-box.green-box {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: #ffffff !important;
}

.user-profile-box.green-box p,
.user-profile-box.orange-box p {
  color: white !important;
  text-align: center;
  font-size: 40px;
}

.user-avatar-profile {
  border-radius: 20px;
  border: 4px solid #1a8a6f;
  background-color: #f8f6f3;
  padding: 25px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  width: 100px;
  height: 100px;
  margin-right: 0;
}
.modal-logout-box {
  background-color: white;
  border: transparent;
  border-radius: 20px;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
  padding: 4rem;
}
.profile-title {
  font-family: "Fraunces", serif;
}
.profile-subtitle {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}
.logout-title {
  color: #000;
  font-family: "Fraunces", serif;
  font-weight: 700;
  text-align: center;
}
.logout-subtitle {
  text-align: center;
  font-size: 13px;
  line-height: 23px;
}
.logout-footer {
  border-top: transparent;
  justify-content: center;
}
.btn-logout-close {
  background-color: #f8f6f3;
  border: 1px solid #f8f6f3;
  color: black;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}
.btn-logout-save {
  background: linear-gradient(135deg, #e67e3f 0%, #f39c6b 100%);
  color: white;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}
.logout-header {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.modal-backdrop {
  z-index: 1;
}

/* Prayer Cards */
.prayers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prayer-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.prayer-card:hover {
  border-color: #1a8a6f;
  box-shadow: 0 4px 12px rgba(26, 138, 111, 0.15);
}

.prayer-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.prayer-category {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: white;
  padding: 8px 21px;
  gap: 1rem;
  display: flex;
  align-items: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.prayer-card-calendar-text {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.prayer-category-orange {
  background: linear-gradient(135deg, #e67e3f 0%, #f39c6b 100%);
  color: white;
  padding: 6px 15px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  width: fit-content;
}

.prayer-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.prayer-status-badge {
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 0.5rem;
  gap: 0.25rem;
  display: flex;
  align-items: center;
}

.prayer-status-badge-completed {
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-right: 0.5rem;
  gap: 0.25rem;
  display: flex;
  align-items: center;
}

.prayer-action-btn {
  background: transparent;
  border: 2px solid #e67e3f;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.prayer-action-btn.edit-btn {
  color: #000000;
  border-color: #f8f6f3;
}

.prayer-action-btn.edit-btn:hover {
  background-color: #e6f7f3;
  border-color: #0d5f4e;
}

.prayer-action-btn.delete-btn {
  color: #e74c3c;
}

.prayer-action-btn.delete-btn:hover {
  background-color: #e67f3f31;
  border-color: #e67e3f;
}

.prayer-card-body {
  margin-bottom: 1rem;
}

.prayer-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.prayer-count-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.prayer-count {
  font-size: 44px;
  font-weight: 700;
  color: #0d5f4e;
  margin: 0;
  line-height: 1;
  font-family: "Fraunces", serif;
}

.prayer-count-label {
  font-size: 13px;
  color: #666;
  margin: 4px 0 0 0;
  font-weight: 500;
}

.prayer-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, #e0e0e0 0%, #f5f5f5 100%);
  border-radius: 2px;
}

.prayer-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.prayer-detail-item {
  font-size: 15px;
  color: #7a7a7a;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.prayer-detail-item-calendar {
  font-size: 17px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
}
.prayer-detail-item-calendar-text {
  font-size: 14px;
  color: #7a7a7a;
  margin: 0;
  line-height: 1.4;
  font-weight: 300;
}

.prayer-note {
  background-color: #fdfbf8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.filter-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
/* Performance Optimizations for Owl Carousel */
.owl-carousel .owl-stage,
.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    will-change: transform; 
}
@media (max-width: 768px) {
  .about-us-subtitle {
    font-size: 1.5rem !important;
  }
  .prayer-card {
    padding: 1rem;
  }

  .prayer-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .prayer-divider {
    width: 100%;
    height: 2px;
  }

  .prayer-count-section {
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
  }

  .prayer-count {
    font-size: 28px;
  }
  .profile-title {
    font-size: 20px !important;
  }

  .user-btn-box {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }
}
@media (max-width: 576px) {
  .user-btn-box {
    width: 100%;
    text-align: center;
  }
}

/* User Profile Avatar */
.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background-color: #e67e3f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-right: 8px;
}
.btn-user-name {
  background-color: #ffffff14;
  border: transparent;
  border-radius: 12px;
  color: white !important;
}
.about-us-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.about-us-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 2rem;
  font-weight: 100;
  font-style: italic;
}
.about-us-title {
  font-weight: bold;
  font-size: 3.5rem;
  font-family: "Fraunces", serif;
}
.about-us-subtitle {
  font-weight: bold;
  font-size: 3rem;
  font-family: "Fraunces", serif;
  color: black;
}
.btn-about-us {
  background-color: #e67e3f;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-us-number {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 12px;
  border-radius: 14px;
  text-align: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  font-family: "Fraunces", serif;
  align-items: center;
  justify-content: center;
}
.about-us-herotitle {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 1rem;
  font-family: "Fraunces", serif;
}
.about-us-herotext {
  color: #4a4a4a;
  font-size: 15px;
  font-weight: 300;
}
.about-us-heroimg {
  width: 100%;
  border-radius: 24px;
}
.about-us-box {
  background-color: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-us-box-title {
  font-weight: bold;
  font-size: 2rem;
  font-family: "Fraunces", serif;
  color: #333;
}
.about-us-box-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}
.section-tab-1 {
  background: url(../../assets/images/home-bg-img.webp) no-repeat center center/cover;
  background-repeat: no-repeat;
  background-position: top;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
}
.section-tab-3 {
  background: url(../../assets/images/home-tab-3.webp) no-repeat center center/cover;
  background-repeat: no-repeat;
  background-position: top;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
  position: relative;
}
.section-send-prayers {
  background: url(../../assets/images/section-banner-1.webp) no-repeat center
    center/cover;
  background-repeat: no-repeat;
  background-position: top;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 6rem 0;
  position: relative;
  color: white;
}

.info-text-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ffffff33;
  color: #ffffff;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.12);
  padding: 10px 25px;
  border-radius: 25px;
}
.info-text-box-opacity-1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff26;
  box-shadow: 1px 4px 11px 1px rgba(230, 126, 63, 0.25);
  color: #ffffff;
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 25px;
  width: auto;
  margin-bottom: 2rem;
}
.info-text-box-opacity-2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #ffffff26;
  color: #ffffff;
  border: 1px solid #ffffff33;
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 25px;
  width: auto;
  margin-bottom: 2rem;
}
.info-text-box-orange {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  border: 1px solid #ffffff33;
  color: #ffffff;
  backdrop-filter: blur(10px);
  padding: 10px 25px;
  border-radius: 25px;
  width: auto;
  margin-bottom: 2rem;
}
.home-banner-title {
  font-family: "Fraunces", serif;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.52) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 70px;
  font-weight: 800;
  width: 60%;
  text-align: center;
}
.home-banner-title-2 {
  font-family: "Fraunces", serif;
  color: black;
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.home-banner-text-2 {
  color: #555555;
  font-size: 20px;
  width: 55%;
  text-align: center;
}
.home-banner-text {
  color: white;
  font-size: 20px;
  width: 55%;
  text-align: center;
}

.user-analiz-box {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.user-analiz-box-header {
  width: 100%;
  padding: 1.5rem;
  background-color: #ffffff30;
  border: 1px solid #ffffff40;
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-align: center;
  backdrop-filter: blur(10px);
  border-radius: 15px 15px 0px 0px;
}
.user-analiz-box-body {
  background-color: rgba(255, 255, 255, 0.084);
  border: 1px solid #ffffff40;
  backdrop-filter: blur(10px);
  border-radius: 0 0 16px 16px;
  border-top: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
  gap: 1rem;
}
.user-analiz-item {
  flex: 1;
  padding: 1rem;
  border: 1px solid #ffffff1f;
  color: white !important;
  font-size: 18px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
}

.user-analiz-item h2 {
  font-family: "Fraunces", serif;
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

.user-analiz-button {
  flex: 1;
  padding: 1rem;
  border: 1px solid #ffffff40;
  color: #0d5f4e !important;
  font-size: 13px;
  height: 95px;
  font-weight: 700;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(255, 255, 255);
  justify-content: center;
  gap: 1rem;
}

.banner-box-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ffffff1a;
  align-items: center;
  width: 100%;
  padding: 3rem 0px;
}

.banner-box-number {
  font-family: "Fraunces", serif;
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0px;
}

.banner-box-title {
  font-family: "Fraunces", serif;
  text-transform: uppercase;
}

.dua-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 4rem;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.dua-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
}

.dua-card-title {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.dua-card-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dua-card-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgb(34 102 83) 0%, rgb(45 129 104) 100%);
  border-radius: 10px;
  padding: 1rem;
  font-size: 30px;
}

.dua-card-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dua-card-btn-1 {
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.dua-card-btn-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 63, 0.3);
  color: #ffffff;
}
.dua-card-btn-2:hover,
.dua-card-btn-2 {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
}
.send-prayers-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 4rem;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  height: 500px;
}
.ask-prayers-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  height: 100%;
}

.send-prayers-analiz-card {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(253, 251, 248, 1);
  border-radius: 15px;
  color: rgba(13, 95, 78, 1);
  padding: 2rem;
  width: 100%;
}

.send-prayers-analiz-card .login-stat-item {
  flex: 1;
  text-align: center;
}
.contact-form-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.contact-box {
  display: flex;
  flex-direction: column;
  height: auto;
}
.position-box-dizayn {
  position: absolute;
  top: -49px;
  width: 100%;
}
.contact-icon {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  padding: 12px;
  border-radius: 8px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-text-box {
  display: flex;
  align-items: start;
  gap: 2rem;
  background-color: #fdfbf8;
  padding: 35px;
  border-radius: 16px;
}
.contact-text-detail {
  color: #000;
  font-weight: 200;
}
.contact-title-detail {
  color: #000;
  font-weight: 700;
  font-size: 19px;
  font-family: "Fraunces", serif;
}
.contact-text-detail.link-detail {
  color: #0d5f4e;
  font-weight: 500;
}

/* FAQ Styles */
.btn-faq-button {
  background-color: white;
  color: #0d5f4e;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08) !important;
}
.faq-filter.active {
  color: #ffffff;
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%) !important;
  padding: 10px 22px;
  border: 2px solid #f8f6f3;
  border-radius: 16px;
  margin-top: 3rem;
  font-weight: 500;
}
.faq-filter {
  color: #4a4a4a;
  background-color: white !important;
  padding: 10px 22px;
  border: 2px solid #f8f6f3;
  border-radius: 16px;
  margin-top: 3rem;
  font-weight: 500;
}
.faq-search {
  background-color: white !important;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px;
  padding: 13px 10px;
}
.faq-search-icon {
  background-color: transparent !important;
  border: none !important;
}

.faq-search-input {
  background-color: transparent !important;
  border: none !important;
}

.faq-icon-box {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-faq-green {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  border-radius: 15px !important;
}

.faq-title {
  font-weight: bold;
  font-size: 2rem;
  margin: 0;
  font-family: "Fraunces", serif;
}
.faq-filter-box {
  overflow-x: scroll;
  white-space: nowrap;
  gap: 0.5rem;
  display: flex;
}

/* Desktop'ta scrollbar'ı gizle */
@media (min-width: 1200px) {
  .faq-filter-box {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .faq-filter-box::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
}
.faq-accordion-item {
  border: none;
  background-color: white;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-accordion-button {
  background-color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
}
.faq-accordion-button:focus,
.faq-accordion-button:not(.collapsed) {
  background-color: white;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 17px;
  box-shadow: none !important;
}
.faq-accordion-button:not(.collapsed)::after {
  background-size: 16px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' stroke='%23000000' stroke-width='1.6' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion-button::after {
  background-color: #fdfbf8;
  background-position: center;
  padding: 13px;
  border-radius: 10px;
  background-size: 16px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' stroke='%23000000' stroke-width='1.6' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion-body {
  padding: 1.5rem;
  background-color: white;
  color: #666;
  line-height: 1.8;
}

/* Send Prayers Form */
.send-prayers-form-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: -60px;
  max-width: 70rem;
  width: 100%;
  margin: 0 auto;
}

.send-prayers-form-title {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.send-prayers-input {
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  background-color: #fdfbf8;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.send-prayers-input:focus {
  border-color: #0d5f4e;
  box-shadow: 0 0 0 0.2rem rgba(13, 95, 78, 0.1);
  background-color: #ffffff;
}

.send-prayers-input::placeholder {
  color: #999;
}

/* Prayer Counter */
.prayer-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
}

.prayer-counter-btn {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  border: 2px solid rgba(13, 95, 78, 1);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prayer-counter-btn:hover {
  border-color: #0d5f4e;
  background-color: #0d5f4e;
  color: #ffffff;
}

.prayer-counter-btn:hover svg {
  stroke: #ffffff;
}

.prayer-counter-btn.minus:hover {
  border-color: #e67e3f;
  background-color: #e67e3f;
}

.prayer-counter-input {
  flex: 1;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  background-color: #ffffff !important;
  opacity: 1;
  border-radius: 10px;
  padding: 0.875rem;
  height: 100%;
}

.privacy-alert {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    90deg,
    rgba(255, 248, 240, 1) 0%,
    rgba(254, 245, 235, 1) 100%
  );
  border-radius: 12px;
  flex-direction: column;
}
.privacy-alert-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(26, 26, 26, 1);
  margin-bottom: 0.5rem;
}

.privacy-alert svg {
  min-width: 20px;
  color: #0d5f4e;
}

.privacy-alert p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.form-label-custom {
  font-weight: 800;
  color: #333333;
  margin-bottom: 0.5rem;
  font-size: 13px;
}

.send-prayers-form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.send-prayers-btn-primary {
  flex: 1;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.send-prayers-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 95, 78, 0.3);
  color: #ffffff;
}

.send-prayers-btn-secondary {
  flex: 1;
  padding: 1rem 2rem;
  background-color: #ffffff;
  color: #666;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.send-prayers-btn-secondary:hover {
  border-color: #0d5f4e;
  color: #0d5f4e;
  background-color: rgba(13, 95, 78, 0.05);
}

.section-tab-2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 6rem 0;
}

.tab-3-symbol-1 {
  position: absolute;
  top: 30%;
  left: 15%;
}
.tab-3-symbol-2 {
  position: absolute;
  top: 60%;
  right: 15%;
}
.quote-text {
  width: 60%;
  text-align: center;
  color: white;
}

.section-tab-4 {
  padding: 6rem 10rem;
  background-color: #f8f9fa;
}

.home-banner-title-3 {
  font-family: "Fraunces", serif;
  color: #0a4a3c;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.section-tab-4 p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-tab-4 .col-6:first-child {
  padding-right: 3rem;
}

.section-tab-4 img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.section-tab-4 img:hover {
  transform: translateY(-5px);
}

.footer {
  background: url(../../assets/images/footer-bg.webp) no-repeat center bottom / cover;
  background-position: top;
  width: 100%;
  padding: 16rem 0rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.footer-word-box {
  background-color: #ffffff14;
  border-left: 3px solid #e67e3f;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  color: white;
  padding: 2rem;
}

.footer-title {
  font-family: "Fraunces", serif;
  color: #e67e3f;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: #ffffffcc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex; 
  align-items: center; 
  gap: 0.5rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 0.75rem;
  /* Remove color from li since a tag handles it now, generally safer */
  list-style: none; /* Just in case */
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.footer-bottom {
  color: #ffffffcc;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom-left p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom-center {
  display: flex;
  justify-content: center;
  flex: 1;
}
.contact-social-bottom-center {
  display: flex;
  justify-content: start;
  flex: 1;
}

.contact-social-bottom {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.contact-social-bottom a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #f8f6f3;
  border-radius: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social-bottom {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social-bottom a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff14;
  border-radius: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social-bottom a:hover {
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(230, 126, 63, 0.3);
}
.word-box-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e67e3f;
  border-radius: 10px;
  color: #ffffff;
  transition: all 0.3s ease;
  padding: 8px;
}

.footer-bottom-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-bottom-right a {
  color: #ffffffcc;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-right a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f39c6b 0%, #e67e3f 100%);
  transition: width 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #e67e3f;
}

.footer-bottom-right a:hover::after {
  width: 100%;
}
.home-banner-title-3 {
  font-family: "Fraunces", serif;
  color: black;
  font-size: 50px;
  font-weight: 800;
  text-align: start;
  margin-bottom: 20px;
}
.section-tab-5 {
  background: url(../../assets/images/secion-tab-5-bg-img.webp) no-repeat center
    bottom / cover;
  background-position: top;
  width: 100%;
  padding: 10rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.banner-title-5 {
  font-family: "Fraunces", serif;
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.section-tab-5-text {
  font-size: 18px;
  color: white;
  font-weight: 100;
  max-width: 800px;
  text-align: center;
  margin-bottom: 3rem;
}

.section-tab-5-boxes {
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  max-width: 1500px;
  padding: 0 2rem;
}

.tab-5-box {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.tab-5-box:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.tab-5-emoji {
  font-size: 64px;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.btn-save-profile {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  color: white;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.tab-5-box-title {
  font-family: "Fraunces", serif;
  color: #ffffff;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tab-5-box-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-family: "Fraunces", serif;
}

.tab-5-box-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.section-tab-6 {
  width: 100%;
  padding: 10rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.section-tab-7 {
  background-color: rgba(253, 251, 248, 1);
}
.send-prayers-banner-title {
  font-family: "Fraunces", serif;
  color: rgb(255, 255, 255);
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}
.send-prayers-banner-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 300;
  width: 40%;
  text-align: center;
}
.owl-card-list-box {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.owl-card-list-box .item {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.live-stream-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  background-color: #000;
}

.live-stream-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.reminder-banner {
  width: 100%;
  background: radial-gradient(circle, #e8f5f1 0%, #d4ebe4 100%);
  border-radius: 32px;
  padding: 3rem;
}

.reminder-banner img {
  height: 400px;
  object-fit: contain;
}

.custom-offcanvas {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact-form-card {
    padding: 3rem 30px !important;
  }
  .btn-save-profile {
    width: 100%;
  }
  .send-prayers-banner-text {
    width: 90%;
  }
  .send-prayers-analiz-card {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .send-prayers-card {
    padding: 1.5rem 1rem;
    height: 400px;
  }
  .send-prayers-card .d-flex {
    flex-direction: row;
    gap: 0.5rem !important;
  }
  .ask-prayers-card {
    padding: 1.5rem 1rem;
    height: 400px;
  }
  .ask-prayers-card .d-flex {
    flex-direction: row;
    gap: 0.5rem !important;
  }
  .send-prayers-analiz-card {
    padding: 1.5rem !important;
  }
  .send-prayers-stat-number {
    font-size: 28px !important;
  }
  .send-prayers-stat-text {
    font-size: 12px !important;
  }
  .send-prayers-form-card {
    padding: 2rem 1.5rem;
  }
  .send-prayers-form-buttons {
    flex-direction: column;
  }
  .prayer-counter {
    max-width: 100%;
  }
  .reminder-banner {
    padding: 2rem;
  }

  .reminder-banner .row {
    flex-direction: column-reverse;
  }

  .reminder-banner .col-md-6 {
    text-align: center;
  }

  .reminder-banner h1 {
    font-size: 32px;
    margin-bottom: 1rem;
    text-align: center;
  }

  .reminder-banner p {
    font-size: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .reminder-banner img {
    height: auto !important;
    max-height: 300px;
    object-fit: contain;
    margin-bottom: 2rem;
  }

  .reminder-banner .btn {
    margin: 0 auto;
  }
  .footer-bottom-right {
    gap: 1rem;
  }
  .gap-xs-2 {
    gap: 3rem;
  }
  .px-xs-2 {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

@media screen and (max-width: 575px) {
  .reminder-banner {
    padding: 1.5rem 1rem;
  }

  .reminder-banner h1 {
    font-size: 24px;
  }

  .reminder-banner p {
    font-size: 14px;
  }

  .reminder-banner img {
    max-height: 200px;
    margin-bottom: 1.5rem;
  }
}
.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 10rem !important;
}

/* ------------- m e d i a   s c r e e n ------------- */

/* Navbar Responsive */
@media screen and (max-width: 991px) {
  .navbar-custom {
    border: none;
    padding: 0px;
  }
  .navbar .container-fluid {
    padding: 0.75rem 1rem;
  }

  .navbar-brand img {
    height: 35px;
  }

  .offcanvas {
    width: 85vw !important;
    max-width: 350px !important;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container-fluid {
    padding: 0.75rem 1rem;
  }

  .navbar-brand img {
    height: 30px;
  }

  .offcanvas {
    width: 90vw !important;
    max-width: 100% !important;
  }

  .menu-link-offcanvas {
    font-size: 1rem;
    padding: 0.875rem 1.25rem !important;
  }

  .offcanvas-body custom-offcanvas {
    padding: 1.5rem 1rem;
  }
}

@media screen and (max-width: 575px) {
  .home-banner-title {
    font-size: 36px;
    width: 90%;
  }
  .home-banner-text {
    font-size: 16px;
    width: 90%;
  }
  .user-analiz-box {
    width: 90%;
  }
  .user-analiz-box-body {
    padding: 1rem;
  }
  .mobile-tab-button-col {
    flex-direction: column;
  }
  .user-analiz-item {
    width: 100%;
  }
  .user-analiz-button {
    height: 80px;
    width: 0px;
  }
  .user-analiz-button p {
    font-size: 10px;
  }
  .dua-card {
    padding: 1.5rem;
  }
  .dua-card-title {
    font-size: 1.5rem;
  }
  .home-banner-title-2 {
    font-size: 32px;
  }
  .home-banner-text-2 {
    font-size: 16px;
    width: 90%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .section-tab-4 {
    padding: 3rem 1.5rem;
  }
  .section-tab-4 .row {
    flex-direction: column;
  }
  .section-tab-4 .col-6 {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 1rem;
  }
  .home-banner-title-3 {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
  .section-tab-4 p {
    font-size: 16px;
  }
  .section-tab-5-boxes {
    flex-direction: column;
    padding: 0 1rem;
  }
  .tab-5-box {
    max-width: 100%;
    padding: 2rem 1.5rem;
  }
  .tab-5-emoji {
    font-size: 48px;
  }
  .tab-5-box-title {
    font-size: 24px;
  }
  .tab-5-box-subtitle {
    font-size: 16px;
  }
  .tab-5-box-text {
    font-size: 14px;
  }
  .banner-title-5 {
    font-size: 32px;
  }
  .section-tab-5-text {
    font-size: 16px;
  }
  .live-stream-container {
    flex-direction: column;
    padding: 0 1rem;
  }

  .section-tab-6 {
    padding: 5rem 0rem;
  }
  .owl-card-list-box {
    flex-direction: column;
    align-items: center;
  }
  .owl-card-list-box .item {
    max-width: 100%;
  }
}
@media screen and (min-width: 767px) {
  .item-last .banner-box-card {
    border-right: none;
  }
}
@media screen and (min-width: 767px) and (max-width: 1026px) {
  .form-box {
    height: 135rem;
  }
  .footer {
    padding: 6rem 0px 0px;
  }
  .about-us-heroimg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }
  .dua-card-title {
    font-size: 27px;
  }
  .send-prayers-form-card {
    max-width: 45rem;
  }
  .send-prayers-banner-text {
    width: 80%;
  }
  .social-login-buttons {
    flex-direction: column;
  }
  .footer-bottom-left p,
  .footer-bottom-right a {
    font-size: 0.7rem;
  }
  .reminder-banner img {
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
  }
  .footer-bottom {
    flex-wrap: nowrap;
  }
  .send-prayers-card {
    padding: 1.5rem 1rem;
    height: 400px;
  }
  .send-prayers-card .d-flex {
    flex-direction: row;
    gap: 0.5rem !important;
  }
  .ask-prayers-card {
    padding: 1.5rem 1rem;
    height: 400px;
  }
  .ask-prayers-card .d-flex {
    flex-direction: row;
    gap: 0.5rem !important;
  }
  .send-prayers-analiz-card {
    padding: 1.5rem !important;
  }
  .send-prayers-stat-number {
    font-size: 32px !important;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .home-banner-title {
    font-size: 48px;
    width: 85%;
  }
  .home-banner-text {
    font-size: 18px;
    width: 85%;
  }
  .user-analiz-box {
    width: 80%;
  }
  .user-analiz-box-body {
    padding: 1.75rem;
  }
  .dua-card {
    padding: 2rem;
  }
  .home-banner-title-2 {
    font-size: 38px;
  }
  .home-banner-text-2 {
    font-size: 18px;
    width: 80%;
  }
  .section-tab-4 {
    padding: 4rem 2rem;
  }
  .section-tab-4 .row {
    flex-direction: column;
  }
  .section-tab-4 .col-6 {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 2rem;
  }
  .home-banner-title-3 {
    font-size: 36px;
  }
  .section-tab-5-boxes {
    flex-direction: column;
    padding: 0 1.5rem;
  }
  .tab-5-box {
    max-width: 100%;
  }
  .banner-title-5 {
    font-size: 38px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .owl-card-list-box {
    flex-direction: column;
    align-items: center;
  }
  .owl-card-list-box .item {
    max-width: 100%;
  }
  .section-tab-6 {
    padding: 6rem 0rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .home-banner-title {
    font-size: 54px;
    width: 75%;
  }
  .home-banner-text {
    font-size: 18px;
    width: 75%;
  }
  .user-analiz-box {
    width: 70%;
  }
  .dua-card {
    padding: 2.5rem;
  }
  .home-banner-title-2 {
    font-size: 42px;
  }
  .home-banner-text-2 {
    font-size: 18px;
    width: 70%;
  }
  .section-tab-4 {
    padding: 5rem 3rem;
  }
  .home-banner-title-3 {
    font-size: 25px;
  }

  .section-tab-4 .col-6:first-child {
    padding-right: 2rem;
  }
  .section-tab-4 .col-6:last-child {
    padding-left: 1.5rem;
  }
  .banner-title-5 {
    font-size: 42px;
  }
  .section-tab-5-boxes {
    gap: 1.5rem;
  }
  .tab-5-box {
    padding: 2.5rem 2rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .home-banner-title {
    font-size: 60px;
    width: 70%;
  }
  .user-analiz-box {
    width: 60%;
  }
  .dua-card {
    padding: 3rem;
  }
  .home-banner-title-2 {
    font-size: 46px;
  }
  .home-banner-text-2 {
    width: 65%;
  }
  .home-banner-title-3 {
    font-size: 44px;
  }
  .banner-title-5 {
    font-size: 46px;
  }
}

@media screen and (max-width: 650px) {
  .quote-text {
    width: 90%;
    font-size: 1.5rem;
  }

  .tab-3-symbol-1,
  .tab-3-symbol-2 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .about-us-box {
    margin: 0px 10px;
    padding: 2rem 1rem;
  }
  .section-tab-5 {
    padding: 8rem 2rem;
    text-align: center;
  }
  .section-tab-6 .home-banner-title-3,
  .section-tab-6 p {
    padding: 0 2rem;
    text-align: center;
  }
  .banner-box-card {
    border: 1px solid #ffffff1a;
    border-radius: 14px;
    margin: 20px 0;
  }

  .user-analiz-button {
    gap: 5px;
    text-align: center;
    white-space: nowrap;
  }
  .mobile-tab-button {
    flex-direction: row;
  }
  .mobile-none {
    display: none !important;
  }
  .px-xs-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .mt-xs-1 {
    margin-top: 2rem !important;
  }
}

@media screen and (max-width: 1026px) {
  .mt-xsm-4 {
    margin-top: 1rem;
  }
  .filter-btn {
    flex-direction: column;
  }
  .filter-btn div {
    flex-direction: column;
    gap: 6px !important;
    width: 100%;
  }
  .d-xsm-none {
    display: none;
  }
  .user-avatar {
    margin-right: 0px;
  }
  .px-mdx-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .d-xsm-0 {
    display: none;
  }
  .mb-xsm-4 {
    margin-bottom: 1.5rem !important;
  }
}

/* ============= LOGIN PAGE STYLES ============= */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-container .row {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.register-form .row {
  background: transparent;
  border-radius: unset;
  box-shadow: none;
}
.login-left {
  background: linear-gradient(135deg, #0a4a3c 0%, #0d5f4e 100%);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.login-left-content {
  max-width: 100%;
  color: white;
  text-align: center;
}
.register-left-content {
  max-width: 100%;
  color: white;
  text-align: start;
}

.login-logo {
  height: 60px;
  margin-bottom: 3rem;
}

.login-left-title {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.login-left-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.756);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 3rem;
}

.login-stats {
  display: flex;
  margin-top: 4rem;
}

.login-stat-item {
  flex: 1;
  text-align: center;
}

.login-stat-number {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.send-prayers-stat-number {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.send-prayers-stat-text {
  font-size: 14px;
  color: rgba(122, 122, 122, 1);
  margin: 0;
  font-weight: 500;
}

.login-stat-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.register-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.register-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.register-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #ffffff;
}

.register-feature-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.login-left-top-text {
  padding: 0 4rem;
}

.login-right {
  background: white;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.login-form-wrapper {
  max-width: 450px;
  width: 100%;
}
.login-register-link {
  color: #0d5f4e;
  font-weight: 500;
}

.login-form-title {
  font-family: "Fraunces", serif;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.login-form-subtitle {
  color: #666666bd;
  font-size: 12px;
  margin-bottom: 2.5rem;
}

.login-form .form-label {
  color: #7a7a7a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon-left {
  position: absolute;
  left: 1rem;
  color: #999;
  pointer-events: none;
  z-index: 1;
}

.input-icon-right {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-icon-right:hover {
  color: #0d5f4e;
}

.email-icon {
  pointer-events: none;
  cursor: default;
}

.email-icon:hover {
  color: #999;
}

.password-toggle {
  z-index: 10;
}

.login-input {
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  background-color: #fdfbf8;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.login-input-with-icon-left {
  padding-left: 3rem;
}

.login-input-with-icon-right {
  padding-right: 3rem;
}

.login-input:focus {
  border-color: #0d5f4e;
  box-shadow: 0 0 0 0.2rem rgba(13, 95, 78, 0.1);
}

.login-input.is-valid {
  border-color: #28a745;
}

.login-input.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.login-input.is-invalid {
  border-color: #dc3545;
}

.login-input.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.login-input.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-check-input:checked {
  background-color: #0d5f4e;
  border-color: #0d5f4e;
}

.login-forgot-link {
  color: #0d5f4e;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.login-forgot-link:hover {
  color: #0a4a3c;
  text-decoration: underline;
}

.login-submit-btn {
  background: linear-gradient(90deg, #0d5f4e 0%, #1a8a6f 100%);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 95, 78, 0.3);
  color: white;
}

.login-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #e0e0e0;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-divider span {
  background: white;
  padding: 0 1rem;
  color: #999;
  font-size: 14px;
}

.social-login-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  flex: 1;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.google-btn {
  background: white;
  border: 2px solid #e0e0e0;
  color: #333;
}

.google-btn:hover {
  border-color: #4285f4;
  background: #f8f9fa;
  transform: translateY(-2px);
  color: #333;
}

.facebook-btn {
  background: white;
  border: 2px solid #e0e0e0;
  color: #333;
}

.facebook-btn:hover {
  border-color: #1877f2;
  background: #f8f9fa;
  transform: translateY(-2px);
  color: #333;
}

.login-signup-text {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 0;
}

.login-signup-link {
  color: #0d5f4e;
  font-weight: 600;
  text-decoration: none;
}

.login-signup-link:hover {
  color: #0a4a3c;
  text-decoration: underline;
}
.input-forced {
  color: #e67e3f;
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .login-left,
  .login-right {
    padding: 3rem 2rem;
  }

  .login-left-title {
    font-size: 36px;
  }

  .login-left-text {
    font-size: 14px;
  }

  .login-stat-number {
    font-size: 28px;
  }

  .login-form-title {
    font-size: 30px;
  }

  .login-left-top-text {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 767px) {
  .prayer-card-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  .send-prayers-form-card {
    max-width: 23rem;
  }
  .form-box {
    height: 150rem;
  }
  .login-container {
    padding: 1rem;
  }

  .login-container .row {
    border-radius: 16px;
  }

  .login-left,
  .login-right {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .login-left {
    padding: 2rem 1.5rem;
  }

  .login-left-title,
  .login-left-text,
  .login-stats,
  .register-features,
  .login-left-top-text p,
  .login-left-top-text h1,
  .register-left-top-text p,
  .register-left-top-text h1 {
    display: none;
  }

  .login-logo {
    margin-bottom: 0;
  }

  .login-form-title {
    font-size: 28px;
  }

  .social-login-buttons {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .login-container {
    padding: 0.5rem;
  }

  .login-container .row {
    border-radius: 12px;
  }

  .login-left,
  .login-right {
    padding: 2rem 1rem;
  }

  .login-left {
    padding: 1.5rem 1rem;
  }

  .login-logo {
    height: 40px;
    margin-bottom: 0;
  }

  .login-form-title {
    font-size: 24px;
  }

  .login-form-subtitle {
    font-size: 14px;
    margin-bottom: 2rem;
  }
}

.minus-plus-number-btn {
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 25px;
  text-align: center;
  color: black;
}

.form-box-input {
  background-color: #fdfbf8;
  border-radius: 15px;
  padding: 30px;
}
