@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }

/* HAMBURGER */
.hamburger {
  font-size: 28px;
  background: var(--primaycolor);
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1001;
  user-select: none;
  display: none; /* Show only in mobile */
}

.hamburger::before {
  content: "☰";
}

.hamburger.open::before {
  content: "✖";
}

/* NAVIGATION BAR (Desktop Default) */
nav {
  background: var(--primaycolor);
  padding: 7px 10px;
  color: white;
  text-transform: uppercase;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 2rem;
}

.logo img {
  height: 110px;
  width: auto;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

nav a:hover {
  color: #ffd700;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ================= MOBILE HEADER ================= */
.mobile-header {
  display: none;
}

/* MOBILE VIEW STYLES */
@media (max-width: 768px) {
  /* Sticky Mobile Header */
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--primaycolor);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 1002;
  }

  /* Mobile Logo */
  .mobile-logo img {
    height: 70px;
    width: auto;
  }

  /* Show hamburger in mobile header */
  .hamburger {
    position: static;
    margin-left: auto;
    display: block;
  }

  /* Hide desktop logo in mobile */
  .desktop-logo {
    display: none;
  }

  /* Slide-in Navigation */
  nav {
    position: fixed;
    top: 70px; /* below mobile-header */
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--primaycolor);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-left: 0;
  }

  nav.open {
    right: 0;
  }

  .nav-container {  
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
  }

  .logo {
    padding-left: 2rem;
    margin-bottom: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    align-items: flex-start;
    width: 100%;
  }
}

/* ==========================SOCIAL ICONS START================= */
.sticky-icon  {
	z-index:1;
	position:fixed;
	top:35%;
	right:0%;
	width:220px;
	display:flex;
	flex-direction:column;}  
	
.sticky-icon a  {
	transform:translate(160px,0px);
	border-radius:50px 0px 0px 50px;
	text-align:left;
	margin:2px;
	text-decoration:none;
	text-transform:uppercase;
	padding:10px;
	font-size: 16px;
	transition:all 0.8s;}

.sticky-icon a:hover  {
	color:#FFF;
	/*transform:translate(0px,0px);*/
    
}	

.sticky-icon a:hover i  {
	transform:rotate(360deg);}
  
.search_icon a:hover i  {
	transform:rotate(360deg);
}

.WhatsApp  {
	background-color:#0dd054;
	color:#FFF;
}
.call  {
	background-color:#089404;
	color:#FFF;
}
.Facebook  {
	background-color:#2C80D3;
	color:#FFF;
}	
.Instagram  {
	background-color:#FD1D1D;
	color:#FFF;}
	
.Gmail  {
	background-color:#bb001cd1;
	color:#FFF;}				
  
  
.sticky-icon a i {
	background-color:#FFF;
	height:40px;
	width:40px;
	color:#000;
	text-align:center;
	line-height:40px;
	border-radius:50%;
	margin-right:20px;
	transition:all 0.5s;}

.sticky-icon a i.fa-whatsapp  {
    background-color:#FFF;
    color:#0dd054;
}
.sticky-icon a i.fa-phone  {
    background-color:#FFF;
    transform: rotate(80deg);
    color:#089404;
}
.sticky-icon a i {
  transform:rotate(360deg);
}

.sticky-icon a i.fa-facebook-f  {
	background-color:#FFF;
	color:#2C80D3;}
	
.sticky-icon a i.fa-instagram  {
	background-color:#FFF;
	color:#FD1D1D;}

.sticky-icon a i.fa-envelope  {
    background-color:#FFF;
    color: #bb001cd1;
}
	

.fas fa-shopping-cart  {
	background-color:#FFF;}	
#myBtn {
	height:50px;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  text-align:center;
  padding:10px;
  text-align:center;
	line-height:40px;
  border: none;
  outline: none;
  background-color: #1e88e5;
  color: white;
  cursor: pointer;
  border-radius: 50%;
}
.fa-arrow-circle-up  {
	font-size:30px;}

#myBtn:hover {
  background-color: #555;
}			

/* ========BODY SECTION START ============== */



/* General Styles */
:root {
--heading-color :#273036;
--background : #f3f4f5;
--primaycolor : #ee7300;
--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 #31335a4e;
    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;
}
.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: 100px 0; */
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom: 0.5px solid var(--primaycolor);
    /* box-shadow: 5px 10px 1px  #1616170e; */
    height: 80vh;
    display: flex;
    justify-content: center;
    align-self: center;
    flex-direction: column;
}
.hero-section .logo {
  border-radius: 10px;
  background-color: #fff;
  width: 250px;
  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 h2 {
  font-size: 55px;
}
.hero-container{
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-description {
  color: #212529;
  font-weight: 550 !important;
  line-height: 30px;  

}

.hero-section .business-detail {
    font-size: 1.2rem;
    color: #6c757d;
}

.hero-section .social-links {
    margin: 25px auto;
}
.social-links img {
  width: 50px;
}
.hero-section .social-links a {
    padding: 2.5px 5px;
    background: #fff;
    color: var(--primaycolor);
    border-radius: 10px;
    box-shadow: 2px 5px 1px #31335a69;
    transition: 0.3s all ease-in-out;
    border: 2px solid var(--primaycolor);
}
.social-links a:hover {
    box-shadow: none;
}

/* =============ABOUT SECTION =================== */

.about-section {
    background-color: #ffffff;
}
.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;
}
.about-section .btn {
  width: 200px;
  padding: 10px 5px;
}
.download-btn {
    margin-left: 10px;
}
/* ============download btn ================ */
.c-btn {
	position: relative;
    width: 250px;
	overflow: hidden;
	padding: 0.85rem 2rem;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	color: var(--color-primary);
	text-decoration: none;

	border-radius: 8px;
	background-color: transparent;
	backface-visibility: hidden;
	box-shadow: inset 0 0 0 1px var(--primaycolor);

	transform: translateZ(0);

	&::after {
		content: "";
		pointer-events: none;
		position: absolute;

		top: 0;
		left: 0;
		z-index: 1;
		height: 120%;
		width: 120%;
		border-radius: 20%;
		background-color: var(--primaycolor);
		scale: 0 0;
		translate: 0 140%;
		transition: scale 0.6s cubic-bezier(0.215, 0.61, 0.355, 1),
			translate 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
}

.c-btn__label {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	z-index: 2;
	font-size: 1rem;
	letter-spacing: 0.025em;
	transition: color 0.32s ease-in-out;
}

.c-btn:hover {
	span {
		color: var(--white);
	}

	&:after {
		scale: 1.5 1.5;
		translate: 0 0;

		border-radius: 50%;
	}
}

/* ============download btn ================ */


.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;
}
.service-box p b {
  font-weight: 600;
}
.service-box p span {
  font-weight: 500;
  color: #000000d3;
}
.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 {
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url('./images/testimonial-bg-2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

    }
    .testimonials .testimonial-item {
        background-color: var(--white);
        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 .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: #ffffff;
}
.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);
}
.gallery-section img:hover {
    transform: translateY(-5px);
}   
/* ============donation page================ */

.payment-section {
   background-color:var(--background);
}

.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%;
}

ul {
    padding-left: 0 !important;
}
ul li {
    list-style: none;
}
.container h2 {
    color: var(--primaycolor);
    font-weight: bold;
}
ul li h5 {
    color: var(--primaycolor);
}

/* =============client logo ================ */
.client-logo{
  width: 100%;
  margin: 10px auto;
  
}
.client-logo img {
 width: 98%;
 padding: 10px;
 border: 2px solid var(--primaycolor);
 background: #fff;
 border-radius: 12px;
}
/* =============client logo ================ */

/* ==========contact section ============= */

.contact-section {
    background-color:var(--background);  
}
.contact-section h2 {
    font-weight: bold;
    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-form{
/* border: 2px solid red; */
border-radius: 20px;
background-color: #fff;
border: 1px solid var(--primaycolor);
/* box-shadow: 2px 5px 1px #e7487542; */
box-shadow: #16161714 1px 1px 50px 0px; 
box-shadow: rgba(1, 1, 1, 0.05) 1px 1px 50px 0px; 
padding: 40px 30px;
margin-left: 20px;

}
.contact-form label {
    width: 100%;
}
.contact-form  form {
    width: 100%;
}

.form-box {
  width: 100%;
  margin-bottom: 10px;
}
.form-box::placeholder {
    color: #6c757d !important;
}
.form-box input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}
.form-box textarea, .form-box button {
    width: 100%;
}
.form-box textarea {
    width: 100%;
    height: 100px;
    padding-left: 10px;
    padding-top: 10px;
}
.form-box textarea::placeholder {
    color: #6c757d !important; 
    opacity: 1; 
}

.form-box button {
    background-color: var(--primaycolor);
    height: 50px;
    color: #fff;
}
.form-box button:hover {
    background-color: #fff;
    color: var(--primaycolor);
    border: 2px solid var(--primaycolor);
}
/* thank you box  */
.thanks-box{
    background-color: var(--white);
        box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
        padding: 20px 5px;
        margin: 20px 0;
        border-bottom: 1.5px solid var(--primaycolor);
        text-align: center;
        overflow: hidden;
        border-radius: 10px;
}

.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;
    color: #6c757d;
    word-wrap: break-word !important;
}
.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) {
   
      .hero-section {
        height: 100vh;
      }
      #about , #services ,#testimonials, #Gallery, #contact {
          scroll-margin-top: 90px;
      }
      .about-txt {
        margin-top: 15px !important;
       }
       .payment-section.container {
            --bs-gutter-x: 0rem;
       } 
       .payment-box {
        width: 95%;
        margin-top: 20px;
        margin-left: 2.5% !important;
        margin-right: auto;
      }
      .payment-box img {
        padding: 50px;
    }
    .contact-form{
        margin-left: 0;
    }

}

@media only screen and (max-width: 500px) {
    .sticky-icon { 
            top: 65% !important;
    }
    .title {
        width : 85%;
        margin : 10px auto;
        font-size: 18px;
    }
    
    .hero-section h2 {
      font-size: 40px;
    }
    .hero-section h4 {
      line-height: 32px;
    }
    .social-links img {
      width: 40px !important;
    }
    
    .about-section {
     padding: 0 10px;
    }
    
    .c-btn {
        width: 250px;
    }
    .c-btn__label {
      font-size: 16px;
    }
    .services-section {
     padding: 0 10px;
    }
    .hero-section {
    padding: 150px 0 !important;
}
    .contact-section p {
        font-size: 14.5px;
    }
    .contact-detail a {
     /* margin-left: 20px; */
    font-size: 14.5px;
    color: #6c757d;
    }
    .contact-detail span {
        font-size: 14.5px !important;
        line-height: 20px;
    }
    
}
@media only screen and (max-width: 400px) {
    .contact-section a {
        font-size: 13px;
        word-wrap: break-word;
    }
    
    .payment-box img {
        padding: 25px;
    }

}

/* ========BODY SECTION START ============== */