body {
    background-color: #f9ede1;
}
h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #560238; 
    background: #F9EDE1;
    padding: 10px 20px;
    border-left: 6px solid #560238;
    border-radius: 6px;
    font-weight: bold;
    font-family:Georgia, 'Times New Roman', Times, serif;
    box-shadow: 0 4px 8px rgba(86, 2, 56, 0.15);
}








.cutom-section {
    background: linear-gradient(135deg, #F9EDE1 0%, #F4D9E7 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #560238;
}
.cutom-section h2 {
    color: #560238;
    background-color: rgba(249, 237, 225, 0.9);
    padding: 10px 20px;
    border-left: 6px solid #b87394;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 3px 6px rgba(86, 2, 56, 0.08);
}
.cutom-section h3 {
    color: #7a2f57;
    background-color: rgba(249, 237, 225, 0.6);
    padding: 8px 16px;
    border-left: 4px solid #b87394;
    border-radius: 4px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}



.styled-section {
    margin-top: 60px;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #FFF8F2 0%, #FDECEA 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.styled-section::before,
.styled-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 228, 215, 0.4);
    z-index: 0;
    animation: rotateCircle 30s linear infinite;
}
.styled-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}
.styled-section::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -80px;
    animation-duration: 40s;
}
.styled-section h2 {
    position: relative;
    color: #8B4C5B;
    font-size: 2rem;
    text-align: center;
    background: linear-gradient(to right, #FFEDE3, #F9D9D0);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 6px 18px rgba(139, 76, 91, 0.12);
}
.styled-section h3 {
    position: static;
    color: #A15D6B;
    background-color: rgba(255, 237, 227, 0.85);
    padding: 10px 18px;
    border-left: 5px solid #EBAFA0;
    border-radius: 6px;
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    z-index: 1;
}
@keyframes rotateCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}







.section-wallets {
    background: linear-gradient(135deg, rgba(77, 76, 75, 0.178), rgba(49, 48, 48, 0.438)), url('/img/muslim-fashion-bg.jpg');
    background-position: center;
    background-size: cover;
    color: #8B4C5B;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-top: 40px;
    border: 1px solid rgba(235, 175, 160, 0.4);
}
.section-wallets h2 {
    color: #A15D6B;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-wallets h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #EBAFA0;
    bottom: -8px;
    left: 0;
}
.section-wallets p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 30px;
}
.section-wallets h3 {
    background-color: #FDECEA;
    color: #8B4C5B;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
    text-transform: capitalize;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(139, 76, 91, 0.15);
    transition: all 0.3s ease;
}
.section-wallets h3:hover {
    background-color: #FFEDE3;
    color: #A15D6B;
    transform: scale(1.05);
}
.section-wallets ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}
.section-wallets ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ffffff;
}
.section-wallets ul li::before {
    content: "✔";
    font-size: 1.5rem;
    color: #EBAFA0;
    margin-right: 10px;
    transition: color 0.3s ease;
}
.section-wallets ul li:hover::before {
    color: #8B4C5B;
}
@media (max-width: 768px) {
    .section-wallets {
        padding: 40px 20px;
    }
    .section-wallets h2 {
        font-size: 2rem;
    }
    .section-wallets h3 {
        font-size: 1.4rem;
    }
    .section-wallets ul li {
        font-size: 1rem;
    }
}






.custom-section-two {
    margin-top: 60px;
    background: linear-gradient(135deg, #FAD4C0 0%, #FFE6DC 50%, #FFF4EF 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.custom-section-two::before,
.custom-section-two::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(240, 170, 150, 0.25);
    z-index: 0;
}
.custom-section-two::before {
    width: 200px;
    height: 200px;
    top: -70px;
    left: -70px;
}
.custom-section-two::after {
    width: 160px;
    height: 160px;
    bottom: -50px;
    right: -50px;
}
.custom-section-two h2 {
    position: static;
    color: #8C4352;
    background: linear-gradient(to right, #FFD6C8, #F9B9A9);
    padding: 14px 28px;
    border-radius: 10px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    z-index: 1;
    box-shadow: 0 6px 14px rgba(140, 67, 82, 0.15);
}
.custom-section-two h2::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 4px;
    background: #D48A7A;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}


.custom-section-two h3 {
    color: #A1515F;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(to right, #FFE2D9, #FBCFC1);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(161, 81, 95, 0.1);
}

.custom-section-two h4 {
    color: #B56673;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(to right, #FFF0EC, #FFDCD3);
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(181, 102, 115, 0.08);
}






.hijab-steps {
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}
.step {
  padding-left: 50px; 
  margin-bottom: 25px;
  background: rgba(255, 240, 245, 0.8); 
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: inline-block;
  background: #f8d3d9; 
  color: #d67fa1; 
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  margin-right: 10px;
  vertical-align: middle;
}
.step-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: #b35c7b; 
  display: inline; 
}
.step-desc {
  font-size: 15px;
  line-height: 1.5;
  color: #6b5656;
}





.styled-list {
  list-style: none; 
  padding-left: 0;
  margin: 0;
}

.styled-list li {
  position: unset;
  padding-left: 20px; 
  margin-bottom: 15px;
  background: #fff0f5; 
  border-radius: 10px;
  padding: 10px 15px 10px 20px;
  color: #5a4d4d; 
  font-size: 16px;
  line-height: 1.5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.styled-list li::before {
  content: "🧕"; 
  margin-right: 9px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}



b, strong {
    font-weight: 700;
}


.sidebar .widget {
    background: linear-gradient(135deg, #F9EDE1 0%, #F4D9E7 100%);
    border-radius: 3px;
    padding: 15px;
    border: none;
    box-shadow: none;
}




.section-two {
  padding: 60px 0;
  background: linear-gradient(135deg, #F9EDE1 0%, #F4D9E7 100%);
}

.section-two h2 {
  text-align: center;
  color: #928086;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
}

.section-two .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: fadeInUp 1s ease;
}

.section-two .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.section-two .card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}

.section-two .card:hover img {
  transform: scale(1.05);
}

.section-two .card-body {
  padding: 20px;
  background: #fff;
}

.section-two .card-title a {
  color: #805f7e;
  text-decoration: none;
  font-weight: bold;
}
.section-two .read-more {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #F9EDE1 0%, #F4D9E7 100%);
  color: #8C50FF;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-two .read-more::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-20deg);
}

.section-two .read-more:hover::before {
  animation: shimmer 1.2s ease forwards;
}

.section-two .read-more:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

@keyframes shimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}


@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  h1{
    font-size: 28px!important;
  }
  h2{
    font-size: 26px!important;
  }
  h3{
    font-size: 24px!important;
  }
} 


.navbar-menubar .main-navigation .menu > li > a, .page_item a {
    padding: 15px 0px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: #000;
}



.footer-area {
    background: #5c333c;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

