body, h1, h2, p, ul, li {
  margin: 0;
  padding: 0;
}
html {
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #343a40;
  margin: 0;
  padding: 0;
  min-height: 100vh;
} 
/* Header Styles */
header {
  text-align: center;
  padding: 20px;
  background-image: linear-gradient(90deg, #410637, #FC427B, #410637);
  color: #fff;
}



/* Navbar Styles */
.navbar {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #fc427a16;
  padding: 10px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 900;
}

.navbar-logo i,
.navbar-logo img {
  height: 80px;
  margin-left: 10px;
  margin-right: 10px;
  filter: drop-shadow(0px 0px 3px #fff);
  animation: logo-img 2s ease-in-out infinite;
}

/* Banner Section Styling */
#banner {
  max-width: 1200px; /* Adjust width as needed */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px; /* Optional: adds rounded corners */
}

.carousel-item img {
  width: 100%;
  height: 400px; /* Adjust height as needed */
  object-fit: cover; /* Ensures the image covers the area without stretching */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5); /* Dark background for better visibility */
  border-radius: 50%;
  padding: 10px;
}

.carousel-indicators button {
  background-color: #fff; /* White indicators */
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.8;
}

.carousel-indicators .active {
  background-color: #ffc107; /* Highlight active indicator */
}

.projects {
    margin-top: 100px; /* Adjust this value to push the cards down */
    position: relative;
    z-index: 100; /* Ensures the cards appear properly below the banner */
}



@keyframes logo-img {
  0%, 100% {
    filter: drop-shadow(0px 0px 3px #fff);
  }
  50% {
    filter: drop-shadow(0px 0px 3px #ffffffa9);
  }
}

.navbar-logo span {
  font-size: 25px;
  color: white;
}


.navbar-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* margin-top: 10px; */
  padding-left: 20px ;
}

.navbar-pages a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  position: relative;
  font-weight: 900;
  font-size: 1.4rem;
  /* padding-left: 15px; */
}

.navbar-pages a::before {
  content: '';
  position: absolute;
  background-color: #cccccc;
  transform: scaleX(0);
  transform-origin: 50% 50%;
  height: 5px;
  width: 100%;
  transition: transform 0.3s ease;
  margin-top: 0;
  top: -10px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.navbar-pages a:hover::before {
  transform: scaleX(1);
}

.navbar-pages a.active {
  color: #000;
}
/* Nav Enroll Button and Icon Styles */
.navbar-profile button {
  position: relative;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-right: 20px;
  background: linear-gradient(to right, #008080b3, #008080);
  background-size: 200% 100%;
  background-position: right bottom;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px 30px;
  border-radius: 7px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.5s, color 0.5s;
}

.navbar-profile button:hover {
  transform: translate(0, -5px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
  background-position: left bottom; /* Adjust background position on hover */
  z-index: 1;
}


/* Nav Enroll Button End */

/* Navbar Toggle Styles */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 20px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.change .middle {
  margin-left: 6px;
  padding-right: 10px;
}

.change .top,
.change .bottom {
  width: 18px;
  transform: rotate(0) translate(0);
}

.change .top {
  transform: rotate(-45deg) translate(-3px, 2px);
}

.change .bottom {
  transform: rotate(45deg) translate(-3px, -2px);
}

@media only screen and (min-width: 1200px) {
  .bar {
    display: none;
  }
}

/* Main Content Styles */
main {
  text-align: center;
  margin: 0;
  background-color: #f1f1f1;
}

/* Sidebar Styles */
.sidebar {
  height: 100%;
  width: 0;
  background-image: linear-gradient(0deg, #410637d9, #FC427B);
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-x: hidden;
  padding-top: 80px;
  transition: 0.5s;
}

.sidebar a {
  padding: 8px 8px 8px 25px;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidebar a:nth-child(2) {
  margin-top: 50px;
}

.sidebar a:hover {
  color: #000;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media only screen and (max-width:1199px) {
  .navbar-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-pages.show {
    display: flex;
  } 
  .navbar-toggle {
    display: block;
  }

  .navbar-profile {
    display: none;
  }
  .sidebar {
    padding-top: 10px;
  }

}

/* home section 1 */
.home-section1 {
  background-image: url('../img/home-banner1.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff; 
  padding: 100px 0; 
  text-align: center;
  
}

.home-section1 h1 {
  font-size: 3rem; 
  margin-bottom: 20px;
  font-weight: bold;
  font-family: cursive;
  position: relative;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* Adjust the glow color and intensity */
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1); /* Adjust the glow color and intensity */
  }
}
.home-section1 div {
  margin-top: 15px;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: 'Gill',cursive;
  font-weight: 900;
  text-align: left;
}


.home-section1 p span {
  color: #f39c12; 
  font-style: italic;
  font-weight: bold; 
  font-size:1rem;
}
.home-section2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  padding: 20px;
}

.home-section2 h1, .home-section2 h2, .home-section2 p {
  margin: 20px 0 0;
  padding: 0;
}

.home-section2 h1 {
  color: #008080;
  font-size: 32px;
}

.home-section2 p {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}


/* Home page End */


/* Course Page Start */
.course-heading{
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
  font-weight: 900;
  font-size: 2.2rem;
  padding-bottom: 30px;
  padding-top: 30px;
  color: #C13584;
}

.course-section2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 10px;
}

.course-box {
  /* width: calc(20% - 20px);  */
  margin: 20px 10px;
  box-sizing: border-box;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #d9d9d9; /* Light gray background color */
  background-image: linear-gradient(90deg, #410637, #FC427B, #410637);
  transition: transform 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}



.course-box:hover {
  transform: scale(1.05);
}
.course-box .btn{
  background-color: #008080;
  color: #ffffff;
  border-radius: 2px solid transparent;
  -webkit-border-radius: 2px solid transparent;
  -moz-border-radius: 2px solid transparent;
  -ms-border-radius: 2px solid transparent;
  -o-border-radius: 2px solid transparent;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
}
.course-box .btn:hover{
  background-color: #f39c12;
  color: #fff;
}
.course-amount {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: bold;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #008080;
  width: calc(100% - 200px)
}

.course-box img {
  height: 230px;
  width: 100%;
  object-fit: cover; 
  border-radius: 8px;
}
.course-box h3 {
  font-size: 3rem; 
  margin-bottom: 20px;
  font-weight: bold;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  position: relative;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
  color: #fff;
}
@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.384); /* Adjust the glow color and intensity */
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.676); /* Adjust the glow color and intensity */
  }
}
.course-box p {
  margin-bottom: 10px; 
  color: #fff; 
  font-size: 1rem;
}

.stars {
  color: #ffd700; 
  margin-top: 15px;
}

.stars i.fas.fa-star {
  color: #ffd700;
  animation: glow-star 1s ease-in-out infinite;
  -webkit-animation: glow-star 1s ease-in-out infinite;
}

@keyframes glow-star {
  0% {
    box-shadow: 0 0 5px #ffd700; /* Initial box-shadow */
    opacity: 0.0; /* Initial opacity */
  }
  50% {
    box-shadow: 0 0 20px #ffd700; /* Intermediate box-shadow */
    opacity: 0.5; /* Intermediate opacity */
  }
  100% {
    box-shadow: 0 0 5px #ffd700; /* Final box-shadow */
    opacity: 1; /* Final opacity */
  }
}


/* @media (min-width: 1440px) {
  .course-box {
    width: calc(25% - 20px); 
  }
  .course-box img{
    height: 200px;
    width: 100%;
  }
} */

@media (min-width: 1025px) {
  .course-box {
    width: calc(33.3333% - 30px); /* 3 divs in a row for slightly smaller devices */  
  }
  .course-box img{
    height: 200px;
    width: 100%;
  }
}

@media (min-width: 767px) and (max-width:1024px){
  .course-box {
      width: calc(50% - 20px); /* 2 divs in a row for small devices */
  }
  .course-box img{
    height: 250px;
    width: 100%;
  }
}

@media (max-width: 766px) {
  .course-box {
      width: calc(100% - 20px); /* 1 div in a row for extra small devices */
  }
  .course-box img{
    height: 230px;
    width: 100%;
  }
  .navbar-logo span {
    font-size: 20px;
  }
  .navbar-logo img{
    height:60px;
  }
}



/* Course section 2 */
.course-section1{
  margin: 30px 40px 0px;
  border-radius:10px 100px / 120px 100px ;
  padding-bottom: 40px;
  padding-top: 40px;
}
.course-container p{
  background-color: rgb(235, 212, 212);
  padding: 40px;
  border-radius:10px 100px / 120px 100px;
  -webkit-border-radius:10px 100px / 120px 100px;
  -moz-border-radius:10px 100px / 120px 100px;
  -ms-border-radius:10px 100px / 120px 100px;
  -o-border-radius:10px 100px / 120px 100px;
  font-family: cursive, 'Gill Sans';
  font-weight: 900;
}
.course-section1 div section {
  margin-bottom: 50px;
}
.course-section1 .course-section .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom:20px;

}

.course-section1 button {
  background: linear-gradient(to right,#410637 50%, #FC427B  50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  /* margin-top: 20px; Adjust the margin as needed */
  transition: background-position 0.5s, color 0.5s;
}

.course-section1 button::after {
  content: '\2192'; 
  font-size: 1.2em;
  margin-left: 5px;
}

.course-section1 button:hover {
  background-position: left bottom;
  color: white; 
}




/* Course slide effect */
#aqidah ,#arabic, #noraniah{
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s, transform 1.8s;
  -webkit-transition: opacity 1s, transform 1.8s;
  -moz-transition: opacity 1s, transform 1.8s;
  -ms-transition: opacity 1s, transform 1.8s;
  -o-transition: opacity 1s, transform 1.8s;
}

#aqidah.show ,#arabic.show, #noraniah.show{
  opacity: 1;
  transform: translateX(0);
}


#quran-tajweed, #tafseer {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s, transform 1s;
}

#quran-tajweed.show , #tafseer.show{
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
/* Course Page End */

/* Media Queries */
@media only screen and (max-width: 600px) {

  .home-section1 h1{
    font-size: 2rem;
  }
  .home-section1 div{
    font-size: 0.8rem !important;
    margin-bottom: 0px;
  }
  .course-container p{
    font-size: 0.8rem !important;
    padding: 30px;
  }
  .about-section1 p{
    font-size: 0.8rem;
  }
  .column .card{
    margin: 20px;
  }
}

/* About Page Start */

.about-section1{
  background-color: #f1f1f1;
  padding-bottom: 20px;
  color: #000;
  text-align: left;
  padding: 20px;
  padding-bottom: 30px;
}
.about-section1 h1, .package-section h1, .schedule-section h1{
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; 
  font-weight: 900;
  font-size: 2.2rem;
  padding-bottom: 30px;
  padding-top: 10px;
  color: #C13584;
}
.about-section1 p{
  font-size: 2rem;
  padding-bottom: 20px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.about-section1 h2{
  text-decoration: underline;
  color: #008080;
}


.about-div1,
.about-div2,
.about-div3,
.about-div4 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 3s;
  -webkit-transition: opacity 1s, transform 3s;
  -moz-transition: opacity 1s, transform 3s;
  -ms-transition: opacity 1s, transform 3s;
  -o-transition: opacity 1s, transform 3s;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
}

.about-div1.show,
.about-div2.show,
.about-div3.show,
.about-div4.show {
  opacity: 1;
  transform: translateY(0);
}


/* General Styles */
.cardDiv {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.rowDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 15px; 
}

.column {
  flex: 2; /* Default to 2 columns */
  margin-bottom: 15px; 
}

/* Card Styles */
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  text-align: center;
  height: 100%; 
}

.card:hover {
  box-shadow: 50px 180px 160px rgba(0, 0, 0, 0.2);
}

.cardDiv img {
  width: 100%;
  height: 300px; /* Ensure all images have the same height */
  object-fit: cover; /* Maintain image aspect ratio */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.cardDiv h2 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.cardDiv p {
  font-size: 1em;
}

/* Responsive Styles */
@media screen and (max-width: 599px) {
  .column {
    flex: 100%; /* 1 column for small screens */
  }

  .cardDiv img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 300px;
  }
}

@media screen and (min-width: 600px) {
  .column {
    flex: 40%; /* 2 columns for medium screens */
  }
}

@media screen and (min-width: 1200px) {
  .column {
    flex: 20%; /* 4 columns for large screens */
  }
}

/* About Page End */
/* Schedule Page Start */
.schedule-section1 {
  margin-top: 20px;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto; /
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: 700;
  color: #000;
}

th, td {
  padding: 10px;
  text-align: center;
  border: 1px solid #823939;
  box-sizing: border-box;
}

th {
  background-color: #8bd0d0;
  color: #fff;
}

table tr:nth-child(even) {
  background-color: #f2f2f2;
}

table tr {
  border-bottom: 1px solid #ddd;
}

table td {
  border-right: 1px solid #ddd;
}

th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

thead {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
  th, td {
    padding: 8px;
    font-size: 14px;
  }

  th {
    font-size: 16px;
    position: static; /* Disable sticky for small screens */
  }

  /* Remove vertical line on small screens */
  table td {
    border-right: none;
  }
}



/* Schedule Page End */



/* Package Page Start */


.package-section {
  padding: 30px;
}

.scrolling-section {
  display: flex;
  overflow-x: auto; /* Enable horizontal scroll for small and medium devices */
  margin: 20px;
  white-space: nowrap;
  justify-content: center; /* Center the cards horizontally */
}

.package-section1 {
  display: flex;
  padding: 10px;
}

.package-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffe605, #ff9800);
  z-index: 1;
  opacity: 0.1;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.package-card {
  width: 240px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(45deg, #ffe605, #ff9800);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.5s ease-in-out;
}
.package-card:hover {
  transform: scale(1.1);
}

.package-details {
  padding: 10px;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-family: cursive;
}

.package-details span {
  background-image: linear-gradient(90deg, #410637cc, #FC427B, #410637cc);
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  width: 100%;
  padding: 4px 0;
  margin-bottom: 20px;
}

.package-card .btn {
  margin: 10px;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.236);
  background-image: linear-gradient(90deg, #410637cc, #FC427B, #410637cc);
}
.package-card .btn:hover{
  /* background-image:linear-gradient(#008080); */
  color: #fff;
  border: none;
  background-color: #008080 !important;
}

.package-details h3 {
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 900;
}
.package-details p{
  font-weight: 700;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 17px;
}
.package-introduction h2{
  text-align: left;
  padding: 50px;
  color: #000;
  font-weight: 500;
  /* font-size: 25px; */
}
.package-introduction ol{
  text-align: left;
  margin-bottom: 30px;
}
.package-introduction h5{
  color: #008080;
  text-decoration: underline;
}
/* .package-introduction ol li:nth-child(n+2){
  margin-top: 10px;
} */

.package-introduction p{
  padding-left: 20px;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .scrolling-section {
    overflow-x: auto; /* Disable horizontal scroll for small devices */
    justify-content: flex-start; /* Align cards to the left for small devices */
  }
}


/* Package Page */



/* Media Query Start */
@media only screen and (max-width: 600px) {
  .home-section2 h1, .cardDiv h1, .schedule-section1 h1{
    font-size:2rem;
  }
  .home-section2 p,.about-div1 p, .about-div2 p, .about-div3 p, .about-div4 p, .course-section p{
    font-size:1.2rem;
  }
  .home-section2 h2, .about-div1 h2, .about-div2 h2, .about-div3 h2,.about-div4 h2, .course-section h2, .package-details h2{
    font-size:1.8rem;
  }
  .about-div1{
    margin-top: 70px;
  }
  .package-introduction h5{
    font-size:1.5rem ;
  }
  .package-introduction li{
    font-size: 1rem;
  }

}
@media  (min-width: 768px) and (max-width:991px){
  .home-section2 h1, .cardDiv h1, .schedule-section1 h1{
    font-size:2.5rem;
  }
  .home-section2 p,.about-div1 p, .about-div2 p, .about-div3 p, .about-div4 p, .course-section p{
    font-size:1.4rem;
  }
  .home-section2 h2, .about-div1 h2, .about-div2 h2, .about-div3 h2 ,.about-div4 h2, .course-section h2, .package-details h2{
    font-size:2.2rem;
  }
  .about-div1{
    margin-top: 85px;
  }
  .package-introduction h5{
    font-size:1.8rem ;
  }
  .package-introduction li{
    font-size: 1.2rem;
  }

}
@media only screen and (min-width: 992px) {
  .home-section2 h1, .cardDiv h1, .schedule-section1 h1{
    font-size:3rem;
  }
  .home-section2 p, .about-div1 p, .about-div2 p, .about-div3 p, .about-div4 p, .course-section p{
    font-size:1.7rem;
  }
  .home-section2 h2,.about-div1 h2, .about-div2 h2, .about-div3 h2, .about-div4 h2, .course-section h2, .package-details h2{
    font-size:2.5rem;
  }
  .about-div1{
    margin-top: 100px;
  }
  .package-introduction h5{
    font-size:2rem ;
  }  
  .package-introduction p{
    font-size: 1.5rem;
  }
  .package-introduction li{
    font-size: 1.5rem;
  }
}
/* Media Query End */

/* Donation Button Start */
.home-section3 #donationButton {
  position: fixed;
  top: 140px;
  right: 20px;
  padding: 10px 20px;
  background-color: #f39c12; /* Teal background color */
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-family: cursive;
}

.home-section3 #donationButton i {
  margin-right: 10px;
}

.home-section3 #donationButton span {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.home-section3 #donationButton:hover span {
  opacity: 1;
}

.home-section3 #donationButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

.home-section3 #donationButton:hover::before {
  background: linear-gradient(65deg, rgba(84, 84, 84, 0.311) 0%, rgba(255, 255, 255, 0) 50%, rgba(123, 123, 123, 0.332) 100%);
}

.home-section3 #overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure the overlay is below the button */
}

.home-section3 .overlay-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.home-section3 #closeOverlay {
  margin-top: 10px;
  padding: 8px 16px;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}





/* Donation Button End */



/* Footer Styles */
footer{
  background-color: #008080;
  color: white;
  padding: 20px;
  /* text-align: center; */
  position: relative;
  bottom: 0;
  width: 100%;
  text-wrap: wrap;
}

.row-cols-md-2 ul li {
  transition: transform 0.3s ease-in-out ;
  -webkit-transition: transform 0.3s ease-in-out ;
  -moz-transition: transform 0.3s ease-in-out ;
  -ms-transition: transform 0.3s ease-in-out ;
  -o-transition: transform 0.3s ease-in-out ;
  list-style: none;
  margin-top: 10px;
  
  
}
.row-cols-md-2 ul li a{
  text-decoration: none;
  color: white;
}

.row-cols-md-2 ul li:hover {
  transform: scale(1.05);
}


.facebook-link a {
  color: #1877F2; 
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
}

.facebook-link i {
  color: #fff; 
  margin-right: 5px; 
}

.facebook-link a:hover {
  background-color: #1877F2; 
  color: #fff; 
}

.twitter-link a {
  color: #1DA1F2; 
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
}

.twitter-link i {
  color: #fff; 
  margin-right: 5px; 
}

.twitter-link a:hover {
  background-color: #1DA1F2; 
  color: #fff; 
}


.instagram-link a {
  color: #C13584; 
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
}

.instagram-link i {
  color: #fff; 
  margin-right: 5px; 
}


.instagram-link a:hover {
  background-color: #C13584;
  color: #fff; 
}

.linkedin-link a {
  color: #0077B5;
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
}

.linkedin-link i {
  color: #fff; 
  margin-right: 5px; 
}

.linkedin-link a:hover {
  background-color: #0077B5; 
  color: #fff; 
}

.whatsapp-link a {
  color: #25D366;
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -moz-transition: color 0.3s, background-color 0.3s;
  -ms-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
}

.whatsapp-link i {
  color: #fff; 
  margin-right: 5px; 
}


.whatsapp-link a:hover {
  background-color: #25D366; 
  color: #fff; 
}


.contact-list li {
  list-style: none; 
  margin-bottom: 10px;
}

.contact-list a {
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -moz-transition: color 0.3s, background-color 0.3s;
  -ms-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
}

.contact-list i {
  margin-right: 5px;
}

.contact-list a:hover {
  color: #4285F4;
  background-color: #F8F9FA; 
}

.contact-list a[href^="tel"]:hover {
  color: #34A853; 
  background-color: #E5F9E0; 
}

.location-link a {
  color: #fff;
  display: flex;
  align-items: center;
  transition: color 0.3s, background-color 0.3s;
}

.location-link i {
  color: #fff;
  margin-right: 5px;
}

.location-link a:hover {
  color: #c96232;
  background-color: rgb(231, 210, 207);
}

.location-link a:hover i {
  color: #c96232;
}


footer p{
  background-image: url(../img/b3.webp);
  background-position: center;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 10vw;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
  font-weight: bolder;
  -webkit-font-smoothing:antialiased;
}

footer span{
  text-align: center !important;
  display: block;
  margin: 0 auto;
  font-family: cursive;
  font-size: 1rem;
  background-image: linear-gradient(to right, #fff 0%,#006eff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight:bolder;
}




/* Floating Button Start  */
.floating-circle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 7px;
  background-color: #00808000;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out;
  z-index: 1;
  -webkit-transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, bottom 0.3s ease-in-out;
}

.floating-circle.active {
  transform: scale(1.5);
  bottom: 120px;
  right: 120px;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  
}

.float-icon {
  width: 27px;
  height: 27px;
  background-size: cover;
  margin: 5px;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  position: absolute;
  display: none;
  transform: translate(-50%, -50%);
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}
.floating-circle a{
  text-decoration: none;
}

#facebookIcon {
  background-color: #3b5998;
}

#twitterIcon {
  background-color: #1da1f2;
}

#instagramIcon {
  background-color: #c13584;
}

#linkedinIcon {
  background-color: #0077b5;
}

#whatsappIcon {
  background-color: #25d366;
}

.floating-circle i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  text-shadow:0px 6px px #000;
  position: absolute; 
}