
@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 : #8c8165;
/* --primaycolor : #007bff; */
--primaycolor : #545454;
--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 #54545439;
    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;
    text-transform: uppercase;
}
.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: #fff;
  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: 3px 6px;
    background: #fff;
    color: var(--primaycolor);
    border-radius: 10px;
    /* box-shadow: 2px 5px 1px #8c816551; */
    box-shadow: 2px 5px 1px #565e783c;
    transition: 0.3s all ease-in-out;
    border: 2px solid var(--primaycolor);
}
.social-links a:hover {
    box-shadow: none;
}
.social-links img {
    width: 45px;
}
.about-section {
    background-color: #ffffff;
    background-color: var(--primaycolor);
    color: white;
}
.dark-title {
    background-color: white !important; 
    color: var(--primaycolor) !important;
}

.about-section img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--primaycolor);
}


.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;
    color: white;
}
.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%;
    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);
    /* box-shadow: 2px 10px 25px #1b67f429; */

}
.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: var(--surface-color);
        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%;
      }
      #testimonials h2 {
        text-transform: uppercase;
        text-align: center !important;
      }
    
      .testimonials .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        margin-right: 15px;
      }
      
      .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 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:  #007bff; */
    /* color: white !important; */
}
#reel {
    border: 2px solid var(--primaycolor) !important;
}
.gallery-section img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
    transition: 0.5s all ease-in-out;
    border: 2px solid var(--primaycolor);
    border: 2px solid white;
    box-shadow: 5px 10px 1px #16161714;
}
.gallery-section img:hover {
    transform: translateY(-5px);
}   
.award-box {
    /* border: 2px solid var(--primaycolor); */
    border: 2px solid white;
    box-shadow: 5px 10px 1px #16161714;
    border-radius: 10px;
    padding: 0;
}
.award-box img {
    border-radius: 10px;
}


/* ============================== */
/* =================PROJECT LIST =============== */
.happy-client img{
  margin-bottom: 10px;
  border: inset  2px  solid var(--primaycolor);
  box-shadow: 5px 10px 1px #16161722;
  transition: 0.3s all ease-in-out;
}
.happy-client img:hover {
    box-shadow: none;
    cursor: pointer;
}
table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    color: #273036;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.181); */
    border-radius: 12px;
    overflow: hidden;
  
}

thead th {
    /* background-color: #e4e4e4dc; */
    background-color: #54545433;
    color: #333;
    padding: 10px;
    text-align: left;
    font-size: 14px;
}

tbody tr {
    /* border-bottom: 1px solid #ddd; */
    border: 1px solid #ddd;
}

tbody td {
    padding: 10px;
    font-size: 14px;
}


@media screen and (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
        
            
    }

    thead {
        display: none;

    }

    tbody tr {
        margin-bottom: 20px;
        background-color: white;
        border-radius: 8px;
        /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
        margin-top: 10px;
    }

    tbody td {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    tbody td:last-child {
        border-bottom: none;
    }

    tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
    }
}
/* =================PROJECT LIST =============== */
/* ============================== */
/* ============donation page================ */
.payment-detail{
   background-color: var(--white);
   color: var(--primaycolor) !important;
}
.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);
}
.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--primaycolor);
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 2px 5px 1px #6c757d1b
}
.icons i {
    font-size: 20px;
    color: var(--white);
}
.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; */
    color: #6c757d;
    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;
      }
      .social-links a {
        margin-top: 15px;
    }
    table {
        background-color: transparent !important;
    }
    #smallHeading {
        font-size: 18px !important;
    }
    #testimonials h2 {
        font-size: 25px !important;
    }
   
      .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 : 95%;
        margin : 10px auto;
        font-size: 18px !important;
    }
    .social-links a {
        margin-top: 15px;
    }
    #testimonials h2 {
        font-size: 25px !important;
      }
    #smallHeading {
        font-size: 18px !important;
    }
    
    .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;
    }

}
