
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');


/* General Styles */
:root {
--heading-color :#273036;
--background : #f3f4f5;
--primaycolor : #d7a74e;
--white : #fff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primaycolor);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
      -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
h1,h2,h3 {
    font-weight: 600 !important;
}
h4,h5,h6 {
    font-weight: 400 !important;
}

a{
    text-decoration: none;
    color: var(--primaycolor);
}
p{
    color: #6c757d;
    font-family: 'Poppins', sans-serif;
}
.bttn {
    background-color: var(--primaycolor);
    box-shadow: 5px 5px #d7a74e56;
    color: #fff;
    transition: 0.5s all ease-in-out;
}
.bttn:hover {
    background-color: var(--primaycolor);
    color: #fff;
    transform: translateY(5px);
    box-shadow: none;
}

/* ===========preloadrer========= */
/* Pre-loader styles */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--primaycolor);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========preloadrer========= */

.title {
    /* width: 30%; */
    background-color: var(--primaycolor);
    color: var(--white) !important;
    font-size: 22px;
    font-weight: bold;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 5px 10px 1px  #16161714;
    /* border-bottom: 2px solid var(--primaycolor);
    border-bottom-style: dotted; */
    text-align: center;
}
.navbar {
    width: 80%;
    margin: 10px auto;
    border-radius: 50px;
    border: 2px solid var(--primaycolor);
    background-color: #f8f9fa;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  }
  .nav-link {
    color: #000;
  }
  .nav-link:hover {
    color: #007bff;
  }
 /* Hover Effect */
 .navbar .nav-link:hover {
    color: var(--primaycolor) !important;
    transform: scale(1.2); /* Increases the size slightly on hover */
    transition: all 0.3s ease;
  }

/* Custom Tooltip Styling */
    .tooltip-inner {
        background-color: var(--primaycolor) !important;
        color: #fff;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 5px;
      }
      .tooltip-arrow::before {
        border-top-color: var(--primaycolor) !important;
      }
.hero-section {
    background-image: url('/images/bg-4.webp');
    backdrop-filter: blur(10px) !important;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom: 0.5px solid var(--primaycolor);
    /* box-shadow: 5px 10px 1px  #1616170e; */
}
.hero-section .logo {
  border-radius: 10px;
  background-color: transparent;
  width: 200px;
  /* padding: 2px; */
  margin-top: 50px;
  border: 2px solid var(--primaycolor);
  border-radius: 5%;

}
.logo img {
    width: 100%;
}
.hero-section .business-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primaycolor);
}

.hero-section .business-detail {
    font-size: 1.2rem;
    color: #6c757d;
}

.hero-section .social-links {
    margin: 25px auto;
}
.hero-section .social-links a {
    padding: 7px 14px;
    background: #fff;
    color: var(--primaycolor);
    border-radius: 10px;
    box-shadow: 2px 5px 1px #d7a74e50;
    transition: 0.3s all ease-in-out;
    border: 2px solid var(--primaycolor);
}
.social-links a:hover {
    box-shadow: none;
}
.about-section {
    background-color: #ffffff;
}
.about-section img {
    width: 100%;
    border-radius: 20px;
}

.about-section h2, .services-section h2, .gallery-section h2, .payment-section h2 , .contact h2, .contact-section h2 {
    font-size: 2rem !important;
    margin-bottom: 20px;
}
.about-section p {
    line-height: 25px;
}
.services-section {
    background-color:var(--background);
}

.service-box {
    background-color: #fff;
    padding: 30px 20px ;
    border-radius: 15px;
    box-shadow: 2px 5px 50px #007bff10;
}
.service-box img {
    width: 100%;
    /* width: 100px;
    height: 100px; */
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}
.service-box ul li {
    line-height: 30px;
    margin-bottom: 10px;
}
.service-box li i {
    margin-right: 10px;
}
.services-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primaycolor);
    text-transform: uppercase;
}
.service-box h2 {
    margin: 0;
    padding: 0;
}
/* .premium-box{
    border: 2px solid var(--primaycolor);
} */
.service-box .price {
    background-color: var(--primaycolor);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.price span {
    font-size: 13px;
    font-weight: normal;
}
.service-box h4 {
    font-weight: bold;
    margin: 10px 0;
}

.services-section p {
    color: #6c757d;
}

.service-box .bttn {
    width: 200px;
    padding: 12px 10px;
    font-size: 16px;
}

/* ===============testimonial slider ================ */
   /*--------------------------------------------------------------
    # Testimonials Section
    --------------------------------------------------------------*/
  
    .testimonials .testimonial-item {
        background-color: #fff;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        box-sizing: content-box;
        padding: 30px;
        padding-bottom: 10px;
        margin: 30px 15px;
        position: relative;
        height: 100%;
        border-radius: 10px;
      }
      
      .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        margin-right: 15px;
      }
      
      .testimonials .testimonial-item h3 {
        /* color: var(--white); */
        font-size: 18px;
        font-weight: bold;
        /* margin: 5px 0 5px 0; */
      }
      
      .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin: 0;
      }
      
      .testimonials .testimonial-item .stars {
        margin: 10px 0;
      }
      
      .testimonials .testimonial-item .stars i {
        color: #ffc107;
        margin: 0 1px;
      }
      
      .testimonials .testimonial-item .quote-icon-left,
      .testimonials .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
      }
      
      .testimonials .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
      }
      
      .testimonials .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
      }
      
      .testimonials .testimonial-item p {
        font-style: italic;
        margin: 15px auto 15px auto;
      }
      
      .testimonials .swiper-wrapper {
        height: auto;
      }
      
      .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
      }
      
      .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
      }
      
      .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
      }
      
      @media (max-width: 767px) {
        .testimonials .testimonial-wrap {
          padding-left: 0;
        }
      
        .testimonials .testimonial-item {
          padding: 30px;
          margin: 15px;
        }
      
        .testimonials .testimonial-item .testimonial-img {
          position: static;
          left: auto;
        }
      }
      
/* ===============testimonial slider ================ */

.gallery-section {
    background-color: #ffffff;
}
.gallery-section img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
    transition: 0.5s all ease-in-out;
    border: 2px solid var(--primaycolor);
}
.gallery-section img:hover {
    transform: translateY(-5px);
}   
/* ============donation page================ */
.payment-section {
    /* border: 2px solid red; */
}
.payment-instruciton {
    margin-left: 10px;
}

.bank-details {
    /* margin: 25px 0; */
    background-color: #fff;
    border: 2px solid var(--primaycolor);
    border-radius: 25px;
    box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 50px 0px;
    padding: 20px !important;
}
.payment-box {
    border: 2px solid var(--primaycolor);
    border-radius: 25px; 
    margin-left: 60px;
    box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 50px 0px; 
    overflow: hidden;
}
.payment-box img {
    width: 50%;
    border-radius: 15px;
}

ul {
    padding-left: 0 !important;
}
ul li {
    list-style: none;
}
.container h2 {
    color: var(--primaycolor);
    font-weight: bold;
}
ul li h5 {
    color: var(--primaycolor);
}
.contact-section {
    background-color:var(--background);  
}
.contact-section h2 {
    font-weight: bold;
    color: var(--primaycolor);
}
.contact-detail {
   background-color: var(--white);
   padding: 20px;
   box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 50px 0px; 
   border-radius: 25px;
}
.contact-detail a {
    /* margin-left: 20px; */
    font-size: 1rem;
}
.contact-section p {
    font-size: 1rem;
    line-height: 30px;
    color: #6c757d;
}

@media only screen and (max-width:900px) {
    .payment-box {
        margin-left: 0 !important;
        margin-top: 20px;
      }
    .payment-box img {
        padding: 100px;
    }
}
@media only screen and (max-width: 770px) {
    .navbar {
        width: 100%;
        border: none;
        border-top: 2px solid var(--primaycolor);
        background-color: #fff;
        margin-bottom: 0;
        border-radius: 0;
      }
      .about-section img {
        margin: 10px auto;
      }
      .payment-box {
        width: 95%;
        margin-top: 20px;
        margin-left: 2.5% !important;
        margin-right: auto;
      }
      .payment-box img {
        padding: 50px;
    }
}

@media only screen and (max-width: 480px) {
    .title {
        width : 85%;
        margin : 10px auto;
        font-size: 18px;
    }
    /*.payment-detail{*/
    /*   width : 85%;*/
    /*}*/
    .about-section {
     padding: 0 10px;
    }
    .services-section {
     padding: 0 10px;
    }
    .hero-section {
    padding: 150px 0 !important;
}
    
    .contact-section p {
        font-size: 15px;
    }
}
@media only screen and (max-width: 400px) {
    .contact-section a {
        font-size: 15px;
    }
    .contact-section p {
        font-size: 15px;
        line-height: 20px;
    }
    .payment-box img {
        padding: 25px;
    }

}
