:root {
     --color-text: #222222;
     --color-white: #ffffff;
     
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.3;
}
p{
    line-height: 1.3;
}
.bgimage{
    background-position: right center !important;
    background-repeat: no-repeat !important;
}
.darkbg{
    background: var(--main-bg-color);
}
.common-space {
    padding: 60px 0 60px 0;
}
.secBgoverlay{
    position: relative;
}
.secBgoverlay:after{
 content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: var(--main-bg-color);
    opacity: 0.2;
    z-index: -1;
}
.hero-banner {
    position: relative;
    overflow: hidden;
}

/* Slider */
.hero-slide {
    position: relative;
}

/* Image */
.hero-image {
    width: 100%;
    height: min(100vh, 720px);
    object-fit: cover;
    display: block;
}

/* Overlay */
.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    align-items: center;
}

/* Content */
.heroSec .hero-slide .hero-content {
    color: var(--color-white);
    text-align: center;
}

.heroSec .hero-slide .subTag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-bg-color);
    margin-bottom: 0.75rem;
    backdrop-filter: blur(12px);
    border: 1px solid var(--secondary-bg-color)80;
    background: #0000004D;
    padding: 4px 25px;
    border-radius: 15px;
    line-height: 1.3;
    font-weight: 400;

}

.heroSec .hero-slide .hero-title {
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.heroSec .hero-slide .hero-title span {
    color: var(--secondary-bg-color);
}

.heroSec .hero-slide .cta-secondary--outline {
    border-color: var(--color-white);
}

.heroSec .hero-slide .hero-description {
    line-height: 1.3;
    margin-bottom: 1.75rem;
    color: var(--color-white);
    font-weight: 300;
}
/* FAQ Accordion Styles */
.CS-faqSection #faqSection {
    background: none;
    border: none;
    margin: 0 auto;
    max-width: 780px;
}

.CS-faqSection #faqSection .card {
    background: #fff7f0;
    border: none;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.CS-faqSection #faqSection .card-header {
    background: none;
    border: none;
    padding: 0;
}

.CS-faqSection #faqSection .btn-link {
    display: flex;
    align-items: center;
    border: 1px solid var(--secondary-bg-color)33 !important;
    justify-content: space-between;
    width: 100%;
    color: var(--color-text);
    background: none;
    border: none;
    font-size: 1.15rem !important;
    font-weight: 500;
    padding: 16px 28px !important;
    border-radius: 14px 14px 0 0 !important;
    text-align: left;
    box-shadow: none;
}

.CS-faqSection #faqSection .btn-link:focus {
    outline: none;
    background: #f3e7db;
}

.CS-faqSection #faqSection .btn-link .las {
       font-size: 1rem;
    color: var(--color-text);
    font-weight: bold;
    transition: transform 0.3s;
}

.CS-faqSection #faqSection .btn-link.collapsed .las {
    transform: rotate(0deg);
}

.CS-faqSection #faqSection .btn-link:not(.collapsed) .las {
    transform: rotate(180deg);
}

.CS-faqSection #faqSection .card-body {
    background: var(--color-white);
    padding: 20px 28px 18px 28px;
    border-top: 1px solid #f3e7db;
    font-size: 1rem;
    color: var(--color-text);
}

.CS-faqSection #faqSection .plight {
    margin: 0;
    color: var(--color-text);
    font-size: 0.98rem;
    line-height: 1.7;
}
/* Blog Card Slider Styles */
.blog-slider {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
  overflow-x: hidden;
  padding: 32px 15px;
}

.blog-card {
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 0 0 24px 0;
  min-width: 340px;
  max-width: 340px;
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scroll-snap-align: start;
  transition: box-shadow 0.2s;
  margin-bottom: 12px;
}


.blog-img {
  width: 100%;

 overflow: hidden;
   
  margin-bottom: 16px;
  padding: 12px 12px 0px 12px;
}


.blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
 border-radius: 12px;
}
.blog-meta {
     display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 15px;
    color: var(--color-text);
     margin-bottom: 20px;
 
    align-items: center;
    width: 100%;
    padding: 0 15px;
}

.blog-meta i {
  color: var(--main-bg-color);
  margin-right: 4px;
  font-size: 1.1em;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 18px;
  color: var(--color-text);
}

.blog-desc {
  font-size: 1rem;
  color: var(--color-text);
  padding: 0 18px 0;
  line-height: 1.5;
  position: relative;
      text-align: left;
}
.blog-slider .cta-secondary--outline {
       border-radius: 12px !important;
 
        margin: auto;
}
.blog-readtime {
  display: block;
  text-align: right;
  font-size: 12px;
  color: var(--color-text);
  font-weight: 600;
  margin-top: 8px;
}

.blog-btn {
  padding: 10px 32px;

  border-radius: 8px;
  font-weight: 600;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
}

.blog-btn:hover {
  background: var(--main-bg-color);
  color: #fff;
  border-color: var(--main-bg-color);
}
.secBgoverlay-1 p, .secBgoverlay-1 h2 , .secBgoverlay-1 h3 , .secBgoverlay-1 h4 , .secBgoverlay-1 h1{
    color: var(--color-white);

}
.secBgoverlay-1 .subTag {

color: var(--secondary-bg-color);

}
.secBgoverlay-1:after {
    opacity: 1;
}
.testimonial-slider {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  justify-content: center;
  align-items: stretch;
  overflow-x: hidden;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 28px 24px 20px 24px;
  min-width: 340px;
  max-width: 370px;
  flex: 0 0 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}

.testimonial-stars {
  color: #ffd600;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 22px;
  line-height: 1.6;
  min-height: 90px;
  font-weight: 400;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.testimonial-name {
  font-weight: 700;
  color: var(--main-bg-color);
  font-size: 1.08rem;
}

.testimonial-city {
  color: #4B5563;
  font-size: 0.98rem;
  margin-top: 2px;
  font-weight: 400;
}
.media-review-section {
  margin: 48px 0 0 0;
}

.media-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px;
  overflow: hidden;
}

.media-logos span {
  font-size: 2rem;
  font-weight: 600;
  color: #aab0bb;
  font-family: 'Montserrat', 'Arial', sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.media-quote {
  background: #faf6f2;
  border-radius: 14px;
  padding: 32px 36px 24px 36px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  font-size: 1.18rem;
  color: #3a3a3a;
  position: relative;
 
}

.media-quote-icon {
  font-size: 2.2rem;
  font-family: serif;
  vertical-align: top;
  margin-right: 10px;
      position: absolute;
    left: 30px;
    top: 30px;

}
.media-quote-icon svg{
color: var(--main-bg-color);
}
.media-quote-text {
  display: inline-block;
  padding-left: 30px;
}

.media-quote-source {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--main-bg-color);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.media-quote-source span {
  color: var(--main-bg-color);
  font-weight: 700;
}
.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 0 24px 0;
  margin: 0 auto 32px auto;
  align-items: stretch;
}

.feature-col {
  flex: 1 1 0;
  max-width: 260px;
  text-align: center;
  margin: 0 8px;
}

.feature-icon {
  width: 84px;
  height: 84px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
   color: var(--main-bg-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.feature-icon svg {
  fill: var(--main-bg-color);
}
.feature-title {
  font-weight: 700;
    color: var(--main-bg-color);
  font-size: 1.18rem;
  margin-bottom: 10px;
  margin-top: 2px;
}

.feature-desc {
  color: #333;
  font-size: 1.01rem;
  line-height: 1.5;
}
.location-box {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px 24px 18px 24px;
  max-width: 900px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.location-box-title {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 18px;
}

.location-box-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}





.location-or {
  font-size: 1.08rem;
  color: #222;
  margin: 0 8px;
}

.location-link-manual {
  color: #222;
  font-size: 20px;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.location-link-manual i {
  font-size: 1.2em;
}
.location-box-login-title{
    gap: 10px;
}
.location-link-manual:hover {
  color: var(--main-bg-color);
}

.location-box-login {
  margin-top: 10px;
  color: #222;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.location-box-login i {
  font-size: 1.2em;
  color: #888;
}

.location-btn-login {
  background: #f3f3f3;
  color: #222;
  border: none;
  border-radius: 12px!important;
  padding: 6px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.location-btn-login:hover {
  background: #e0e0e0;
}
@media (max-width: 991px) {
  .feature-row {
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px 0;
  }
  .feature-col {
    max-width: 100%;
    flex: 1 1 45%;
    margin-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .feature-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-col {
    max-width: 90vw;
    margin-bottom: 18px;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .testimonial-slider {
    gap: 18px;
    padding: 18px 0;
  }
  .testimonial-card {
    min-width: 90vw;
    max-width: 90vw;
  }

  .blog-slider {
    gap: 18px;
    padding: 18px 0;
  }
  .blog-card, .blog-card.active {
    min-width: 90vw;
    max-width: 90vw;
  }
}
/* Buttons */
.heroSec .hero-slide .hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hightlighted {
    color: #f2c94c;
    font-style: italic;
    font-weight: 400 !important;
}



@media (max-width: 991.98px) {
    .category-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media (max-width: 575.98px) {
    .category-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-item>div {
        padding: 16px;
    }
    .location-link-manual{
        font-size: 16px;
    }
    .cta-primary{
        font-size: 13px;
            padding: 10px 15px !important;
    }
    .location-box {
    border-radius: 12px;
    padding: 22px 10px 22px 10px;
   
}
.location-box-login {
  
    flex-direction: column;
}
.location-box-actions {
  
    gap: 10px;
 
}
}

.subTag {
    color: var(--main-bg-color);
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1.2px;
    vertical-align: middle;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* =====================================================
4. BUTTONS (GLOBAL)
===================================================== */
.cta-primary {
    background-color: var(--main-bg-color);
    color: var(--color-white);
    opacity: 1;
    padding: 15px 24px;
    font-weight: 600;
    border-radius: 12px!important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.3;
    display: inline-block;
        font-size: 16px;
}

.cta-primary:hover {
    background-color: var(--main-bg-color);
    opacity: 0.8;
    color: var(--color-white);
}

.cta-secondary--outline {
        font-size: 16px;
    border: 1px solid var(--main-bg-color);
    color: var(--main-bg-color);
    background-color: var(--color-white);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px!important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.3;
    
    width: auto;
}
.cta-primary--icon, .cta-secondary--outline--icon {
 display: flex;
    align-items: center;
    justify-content: center;
}
.cta-secondary--outline:hover {
    background-color: var(--color-white);
      color: var(--main-bg-color);
    border-color: var(--main-bg-color);
    opacity: 0.7;
}

@media (min-width: 768px) {
    .heroSec h1 {
        font-size: 68px;
    }

    .heroSec p {
        font-size: 20px;
    }

    h2 {
        font-size: 36px;
         font-weight: 600;
    }

    h3, h4 {
        font-size: 20px;
        font-weight: 600;
    }

    p {
        font-size: 16px;
    }

    .secCommon p {
        font-size: 16px;
    }
}

@media screen and (min-width: 991px) {
    .noCss {
        border: 0;
        color: var(--color-text);
        padding: 0;
        background: none;

    }
}

@media (min-width: 1024px) {}



@media screen and (min-width: 1440px) {

    .heroSec h1 {
        font-size: 96px;
    }

    .heroSec p {
        font-size: 20px;
    }

    h2 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    p {
        font-size: 18px;
        margin-bottom: 0;
    }

    .secCommon p {
        font-size: 18px;
        margin-bottom: 0;
    }

    h1 {
        font-size: 96px;
    }
}

@media screen and (min-width: 1199px) {
    .container {
        width: 100%;
        max-width: 1200px;
    }

    .category-main li>div {
        background-color: #fff;
        display: inline-block;
        padding: 12px 12px;
        border-radius: 15px !important;
        height: 100%;
        max-width: 240px;
        width: 100%;
        box-shadow: 0px 0px 5px rgb(0 0 0 / 15%) !important;
    }
}


@media screen and (min-width: 992px) {
    header .halal-icon {
        height: 42px;
        margin-right: 10px;
    }

    header .whatsapp-icon {
        height: 42px;
    }
}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {
    .secRecognition .row-gap-3{
row-gap: 25px;
}    

    h2,h3,h4{
         font-weight: 600;
    }
    .hero-overlay {
        align-items: center;
        padding-bottom: 2.5rem;
    }

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

    .hero-actions {
        justify-content: center;
    }
}

@media screen and (max-width: 375px) {

    header .halal-icon {
        height: 26px;
    }

    header .whatsapp-icon {
        height: 26px;
    }
}