*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

body{
    background-color: #f3efef;
}

#logo {
    max-height: 65px; /* Adjust the height as needed */
    width: auto; /* Keeps aspect ratio */
}

.navbar{
    background-color: #f7f7f7;
    height: 90px;
    margin: 15px;
    border-radius: 16px;
    padding: 0.5rem;
}

/*.navbar-brand{
}
*/

navbar-toggler{
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none;
    outline: none;
}

.nav-link{
    color: #666777;
    font-weight: 500;
    position: relative;
    font-family: "Rubik", sans-serif;
}

.nav-link:hover, .nav-link.active{
    color: #3bb3eb;
}

@media(min-width: 991px){
    .nav-link::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;

        height: 2px;
        background-color: #3bb3eb;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
}

.search{
    height: 40px;
    width: 80%;
    border-radius: 20px;
    outline: none;
    font-family: "Rubik", sans-serif;
}

/* Style for the search button */
.btn-secondary {
    transition: background-color 0.3s ease; /* Smooth transition for color change */
}
  
/* Hover effect */
.btn-secondary:hover {
    background-color: #3bb3eb; /* Change the background to light blue on hover */
    color: white; /* Optional: Change text color for better contrast */
}

.btn0{
    height: 40px;
    width: 40%;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 20px;
    margin-left: -35px;
}

.btn1:hover{
    background-color: #fff;
}

.card:hover{
    box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    -webkit-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px -1px 25px -4px rgba(0,0,0,0.75);
    transition: 0.5s;
}

/*--Slider--*/
.carousel-item{
    height: 100vh;
    min-height: 300px;
    background: no-repeat scroll center scroll;
    background-size: cover;
}

.carousel-item::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.9);
}

.carousel-caption{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    width: 70%; /* Ensures responsiveness */
    font-weight: bold; /* Makes text bold */
}

@media (max-width: 768px) {
    .carousel-caption {
        font-size: 16px; /* Adjust font size for smaller screens */
        padding: 10px;
        width: 90%;
    }
    .carousel-caption h5 {
        font-size: 18px; /* Adjust heading size */
    }
    .carousel-caption p {
        font-size: 14px; /* Adjust paragraph size */
    }
}

@media (max-width: 480px) {
    .carousel-caption {
        font-size: 14px;
        padding: 8px;
        width: 95%;
    }
    .carousel-caption h5 {
        font-size: 16px;
    }
    .carousel-caption p {
        font-size: 12px;
    }
}

.carousel-caption h5{
    font-size: 60px;
    font-weight: 400;
    top: 10rem;
    
}

.carousel-caption p{
    font-size: 25px;
    top: 10rem;
    font-weight: 200;
}

.age img{
    width: 300px;
    padding: 0;
}

@media (max-width: 480px) {
    .age img {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .age img {
        width: 100px;
    }
}

.c-item{
    height: 800px;
}

.c-img{
    height: 100%;
    object-fit: cover;
    filter: brightness(0.1);
}

.cash{
    font-size: 100px;
    
}

.product{
    background-color: #868794;
}

.customers h1{
    font-weight: 800;
}

.customers h6{
    font-weight: 800;
}

.testimonial{
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

/* Map Section */
#map iframe {
    width: 100%;
    max-width: 600px;
    height: 300px;
}

/*Services*/
:root {
    --primary-blue: #0d6efd;
    --secondary-blue: #0a58ca;
    --light-blue: #cfe2ff;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --info-blue: #3bb3eb;
    --black: #000000;
}

.body2 {
    padding-top: 76px;
}

.btnn {
    background-color: var;
    color: var(--black);
}

.btnn:hover {
    background-color: var(--primary-blue);
}

.hero-section {
    background-color: var(--gray);
    color: var(--white);
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-section p{
    color: #fff;
}

.service-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--gray);
    color: var(--white);
    font-weight: 600;
}

.card-body img {
    border-radius: 10px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: var(--info-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    color: var(--black);
    font-size: 1.5rem;
}

.service-description {
    color: var(--gray);
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    color: var(--black);
    font-weight: 700;
}

.section-title::after {
    content: '';
    width: 70px;
    height: 3px;
    background-color: var(--black);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .services-grid .col-md-4 {
        margin-bottom: 20px;
    }
}

/* Contact Section Styling */
.container .border {
    background: #f8f9fa;
    border: 2px solid #007bff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease-in-out;
}

.container .border:hover {
    transform: translateY(-5px);
}



ul.list-unstyled li {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

ul.list-unstyled li i {
    color: #007bff;
    margin-right: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container .border {
        padding: 20px;
    }

    ul.list-unstyled li {
        font-size: 16px;
    }
}

/*login box*/
#main{
    background-image: url(Images/cash.jpg);
    background-position: center;
    background-size: cover;
    max-width: 100%;
}
#darks{
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.form-card{
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}
  
.form-card h2{
    text-align: center;
    margin-bottom: 20px;
}
  
label{
    margin-bottom: 8px;
    font-weight: bold;
}
  
input[type="text"],
input[type="email"],
textarea{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn.forms {
    display: block;
    margin: 20px auto; /* Centers horizontally */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover Effect */
.btn.forms:hover {
    background-color: #0d47a1; /* Dark Blue */
}

#sho{
    background-image: url(Images/tax2.jpg);
    background-position: center;
    background-size: cover;
    max-width: 100%;
}

#sho h1{
    color: var(--black);;
    padding-top: 100px;
    padding-bottom: 100px;
    
}

#product1{
    text-align: center;
}

#product1 .pro-container{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro{
    width: 21%;
    min-width: 250px;
    padding: 10px 15px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
}

#product1 .pro img{
    width: 100%;
    border-radius: 20px;
}

.document-links {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}
.document-link {
    text-decoration: none;
    padding: 10px 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #333;
    font-weight: bold;
}
.document-link:hover {
    background-color: #e0e0e0;
}

.donate-btn a {
    text-decoration: none;
    color: black;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
}

.donate-btn:hover {
    background-color: var(--bs-secondary); /* Bootstrap secondary color */
}

.image-container {
    max-width: 90%;
    width: 400px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.image-container img {
    width: 100%;
    border-radius: 15px;
}

.image-gallery{
    display: flex;
    overflow-x: auto;
    padding: 20px;
    max-width: 100%;
    height: 900px;
}

.image-card{
    flex: 0 0 300px;
    margin-right: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image{
    width: 700px;
    height: 800px;
    height: 700px;
    object-fit: contain;
    object-position: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.image-title{
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.gallery-header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

/* Rounded certificate image with shadow and hover zoom */
.certificate-hover {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
  .certificate-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
  
/* Table Styling */
table.table {
    border-collapse: separate;
    border-spacing: 0 10px; /* creates space between rows */
    border: none;
}
  
table.table th,
table.table td {
    border: none !important; /* removes column lines */
    background-color: #ffffff;
    padding: 15px;
    vertical-align: middle;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
  
table.table thead th {
    background-color: #f8f9fa;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6 !important;
}
  
/* Hover effect on view icon */
.view-icon {
    transition: color 0.3s;
    cursor: pointer;
}
  
.view-icon:hover {
    color: #0d6efd !important; /* Bootstrap primary (blue) */
}

@media (max-width: 768px) {
    .certificate-hover {
      max-width: 100% !important;
      border-radius: 10px;
    }
}
  
@media (max-width: 480px) {
    .certificate-hover {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
      transform: none !important; /* avoid scale zoom on very small screens */
    }
}
  
/* Privacy Page */
/* Prevent navbar overlap */
#privacy {
  padding-top: 120px;      /* Prevent navbar overlap */
  padding-bottom: 60px;    /* Extra breathing room */
  background-color: #a5a1a1;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Style the container for nice spacing */
#privacy .container {
  max-width: 900px;
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Typography and color */
#privacy h1 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem); /* Responsive heading */
}

#privacy h2 {
  color: #003366;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: clamp(1.2rem, 2vw, 1.6rem); /* Responsive subheadings */
}

#privacy p,
#privacy ul {
  color: #333;
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.2vw, 1rem); /* Responsive text */
}

#privacy ul {
  margin-left: 25px;
}

#privacy a {
  color: #0056b3;
  text-decoration: none;
}

#privacy a:hover {
  text-decoration: underline;
}

/* Tablet view adjustments */
@media (max-width: 992px) {
  #privacy {
    padding-top: 110px;
  }

  #privacy .container {
    max-width: 95%;
    padding: 30px;
  }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  #privacy {
    padding-top: 100px;
  }

  #privacy .container {
    padding: 25px 20px;
  }

  #privacy h1 {
    font-size: 1.8rem;
  }

  #privacy h2 {
    font-size: 1.2rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  #privacy {
    padding-top: 90px;
  }

  #privacy .container {
    padding: 20px 15px;
  }

  #privacy p,
  #privacy ul {
    font-size: 0.9rem;
  }
}

/*Sponsor Page*/
.hero {
    background: #6c757d;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.sponsor-tier {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.sponsor-tier:hover {
    transform: translateY(-5px);
}

/*Sponsor button*/
/* Centering */
  #donate-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  /* Scale + hover animation */
  #donate-button {
    transform: scale(0.9);
    transform-origin: center;
    transition: 0.3s ease;
  }

  #donate-button:hover {
    transform: scale(0.98); /* grows slightly on hover */
    filter: brightness(1.1); /* slight brighten effect */
    cursor: pointer;
  }

/* Hero Section1 Background */
.hero-section1 {
  background-image: url('Images/IM1.jpeg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero1-overlay {
  background: rgba(0,0,0,0.55);
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero1-content {
  position: relative;
  z-index: 2;
}

.donation-box {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
}

.testimonial-img {
  max-width: 100%;
  border-radius: 10px;
}

.sticky-donate {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

/*Giving Tuesday*/
.donate-btn {
  background-color: #000;
  color: #fff;
  border: none;
}

.donate-btn:hover {
  background-color: #0d6efd; /* Bootstrap primary blue */
  color: #fff;
}

.btn-fit {
  padding-left: 30px;
  padding-right: 30px;
}

/* Center container */
.share-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px; /* adjust as needed */
}

/* Small pill button */
.share-btn {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 4px 10px;   /* smaller horizontal padding */
    display: inline-flex;
    align-items: center;
    gap: 4px;            /* small gap between icon + text */
    cursor: pointer;
    font-size: 13px;
    color: #555;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: 0.2s ease;
    width: auto;         /* keeps button compact */
}

.share-btn:hover {
    background: #f5f5f5;
    transform: scale(1.03);
}

.share-btn i {
    font-size: 14px;
    color: #555;
}