body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px; /* Set default font size for the body */
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
	margin-bottom: 0px;
	font-size: 15px;
	font-weight: 400;
	color: #7a7a7a;
	line-height: 30px;
}
a {
	text-decoration: none!important;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}
.team-item:hover {
    border-color: var(--secondary) !important;
}
.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}
.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}
.main-button a {
	display: inline-block;
	background-color: #f48840;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 12px 20px;
	text-transform: uppercase;
	transition: all .3s;
}
.main-button a:hover {
	background-color: #fb9857;
}

.heading-page {
	padding-top: 110px;
}

.page-heading {
	margin: 0px 10px;
	padding: 120px 0px;
	text-align: left;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../assets/images/banner-image-1-1920x300.jpg);
}

.page-heading:after {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(30,30,30,.7);
	z-index: 1;
}

.page-heading .container {
	position: relative;
	z-index: 2;
}

.page-heading .text-content h4 {
	color: #f48840;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.page-heading .text-content h2 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#preloader {
  overflow: hidden;
  background: #f48840;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

/* Ensure the header is positioned properly */
/* Header Style */
header {
	position: absolute;
	z-index: 99999;
	width: 100%;
	height: 30px; /* Adjusted height */
	background-color: #ffffff; /* White background */
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.background-header {
	top: 0;
	height: 70px; /* Match the new header height */
	position: fixed;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}


/* Hero Section */
.hero-section {
  height: 100vh; 
  background: url('Capture.jpg') no-repeat center center/cover; /* Add your background image here */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  z-index: 1;
  margin: 0; /* Remove margin between sections */
}

.hero-content {
  color: orange; /* Change the entire heading text to orange */
}


.highlight-text {
  color: white; /* Change only ACND to orange */
}

.hero-content {
  z-index: 2; /* Ensures the content stays above the background */
}

.hero-content h1 {
  font-size: 3.5rem;
  margin: 0;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional shadow for better readability */
}

.hero-content p {
  font-size: 1.2rem;
  margin: 20px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Optional shadow for better readability */
    color: white; /* Different color for the paragraph */
}
.hero-button {
  background-color: #3498db;
  padding: 15px 30px;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.hero-button:hover {
  background-color: #2980b9;
}
/* Burner Section Styling */
.burner-section {
  padding: 50px 20px;
  background-color: #f5f5f5; /* Optional background color */
}
@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


/* Header Style */
header {
	position: absolute;
	z-index: 99999;
	width: 100%;
	height: 100px;
	background-color: #f7f7f7;
	-webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
header .navbar {
	padding: 25px 0px;
}
.background-header .navbar {
	padding: 17px 0px;
}
.background-header {
	top: 0;
	height: 80px;
	position: fixed;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}
.background-header .navbar-brand h2 {
	color: #121212!important;
}

.background-header .navbar-nav a.nav-link {
	color: #1e1e1e!important;
}
.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
	color: #f48840!important;
}
.navbar .navbar-brand {
	float: 	left;
	margin-top: -12px;
	outline: none;
}
/* Adjust the logo image size */
a img {
    width: 100px; /* Set desired width */
    height: 90; /* Maintain aspect ratio */
}

.navbar .navbar-brand h2 {
	color: #1e1e1e;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 900;
	-webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.navbar .navbar-brand h2 em {
	font-size: 44px;
	font-style: normal;
	color: #f48840;
}
#navbarResponsive {
	z-index: 999;
}
.navbar-collapse {
	text-align: center;
}
.navbar .navbar-nav .nav-item {
    margin: 0px 15px; /* Margin for spacing */
}

.navbar .navbar-nav a.nav-link {
    text-transform: uppercase; /* Ensure all links are uppercase */
    font-size: 16px; /* Set a uniform font size */
    font-weight: 800; /* Set font weight */
    letter-spacing: 0.5px; /* Letter spacing */
    color: #1e1e1e; /* Set text color */
    transition: color 0.3s; /* Transition effect */
}

/* Hover and active states */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show > .nav-link {
    color: #f48840; /* Hover and active text color */
}


.navbar .navbar-toggler {
    border: none; /* Remove border */
    background-color: transparent; /* Transparent background */
    height: 46px; 
    outline: none; 
    border-radius: 0px; 
    position: absolute; 
    left: 30px; /* Align to the left */
    top: 25px; /* Maintain vertical alignment */
    display: block; /* Ensure it's displayed */
}

.navbar .navbar-toggler-icon {
    background-color: transparent; /* No background */
}

.navbar .navbar-toggler:before {
    content: ''; /* Add a before pseudo-element for the black lines */
    display: block;
    width: 30px; /* Width of the lines */
    height: 4px; /* Height of the lines */
    background-color: orange; /* Black color for the lines */
    margin: 7px 0; /* Spacing between lines */
}

.navbar .navbar-toggler:after {
    content: ''; /* Add a second before pseudo-element for the black lines */
    display: block;
    width: 30px; /* Width of the lines */
    height: 4px; /* Height of the lines */
    background-color: orange; /* Black color for the lines */
    margin: 7px 0; /* Spacing between lines */
}
@media (min-width: 992px) { /* Adjust the breakpoint as needed */
    .navbar .navbar-toggler {
        display: none; /* Hide the menu button on larger screens */
    }
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #ffffff; /* White background */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #b54d38; /* Text color */
    font-size: 16px;
    padding: 10px;
}

nav ul li a:hover {
    color: #ff7f50; /* Lighter hover effect */
}

.donate-btn {
    background-color: #fb9857; /* Button color */
    color: white;
    border-radius: 20px; /* Rounded edges */
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
}

.donate-btn:hover {
    background-color: #ff9966; /* Lighter hover effect */
}

/* Banner Style */
.main-banner .container-fluid {
	padding: 0px 10px;
	margin-bottom: -24px;
}
.owl-banner {
	padding-top: 110px;
}

.owl-banner .item {
	position: relative;
}

.owl-banner .item .item-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
}

.owl-banner .item .item-content .meta-category span {
	color: #f48840;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.25px;
}

.owl-banner .item .item-content h4 {
	font-size: 24px;
	font-weight: 900;
	color: #fff;
	letter-spacing: 0.5px;
	text-transform: capitalize;
	margin: 10px 0px 12px 0px;
}

.owl-banner .item .item-content ul li {
	display: inline-block;
	margin-right: 8px;
}

.owl-banner .item .item-content ul li:after {
	content: '|';
	color: #fff;
	margin-left: 8px;
}
.owl-banner .item .item-content {
	color: #fff;
}

.owl-banner .item .item-content ul li:last-child::after {
	display: none;
}

.owl-banner .item .item-content ul li a {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	transition: all .3s;
}

.owl-banner .item .item-content ul li a:hover {
	color: #f48840;
}

.owl-banner .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}

.owl-banner .owl-nav .owl-prev {
	position: absolute;
	left: 40px;
}

.owl-banner .owl-nav .owl-next {
	position: absolute;
	right: 40px;
}

.owl-banner .owl-nav button {
	outline: none;
}

.owl-banner .owl-nav button span {
	color: #fff;
	font-size: 36px;
	width: 60px;
	height: 60px;
	display: inline-block;
	text-align: center;
	line-height: 60px;
	background-color: rgba(250,250,250,0.3);
}

.donate-section {
    background-color: #f2f2f2;
    padding: 40px 0;
  }
  .section-heading h2 {
    color: #3388FF;
    font-size: 36px;
  }
  .section-heading p {
    color: #333;
    font-size: 16px;
    margin-top: 10px;
  }
  .main-button .donate-button {
    background-color: #3388FF;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
  }
  .main-button .donate-button:hover {
    background-color: #2876cc;
  }

/* Call To Action */
.call-to-action {
	margin-top: 100px;
}

.call-to-action .main-content {
	padding: 40px;
	background-image: url(../images/cta-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.call-to-action .main-content span {
	color: #f48840;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0.5px;
}

.call-to-action .main-content h4 {
	margin-bottom: 0px;
	margin-top: 12px;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: 0.25px;
}

.call-to-action .main-content .main-button {
	text-align: right;
	margin-top: 12px;
}

/* Blog Posts */

.blog-posts {
	margin-top: 100px;
}

.blog-posts .blog-post {
	margin-bottom: 30px;
}

.blog-posts .blog-thumb img {
	width: 100%;
	overflow: hidden;
}

.blog-posts .down-content {
	padding: 40px;
	border-right: 1px solid #eee;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.blog-posts .down-content-border {
	border-top: 1px solid #eee;
}

.blog-posts .down-content-border p { 
	border-bottom: 0!important;
	padding-bottom: 0!important;
	margin-bottom: 0!important;
}

.blog-posts .down-content span {
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 900;
	color: #f48840;
}

.blog-posts .down-content h4 {
	font-size: 24px;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	font-weight: 900;
	color: #20232e;
	margin: 10px 0px 12px 0px;
}

.blog-posts .down-content ul.post-info li {
	display: inline-block;
	margin-right: 8px;
}

.blog-posts .down-content ul.post-info li:after {
	content: '|';
	color: #aaa;
	margin-left: 8px;
}

.blog-posts .down-content h4 {
	font-size: 20px;
	letter-spacing: 0.25px;
}

.grid-system .down-content ul.post-info li {
	margin-right: 3px;
}

.grid-system .down-content ul.post-info li:after {
	margin-left: 5px;
}

.blog-posts .down-content ul.post-info li:last-child::after {
	display: none;
}

.blog-posts .down-content ul.post-info li a {
	font-size: 14px;
	color: #aaa;
	font-weight: 400;
	transition: all .3s;
}

.blog-posts .down-content ul.post-info li a:hover {
	color: #f48840;
}

.blog-posts .down-content p {
	padding: 25px 0px;
	margin: 25px 0px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.blog-posts .down-content ul.post-share {
	text-align: right;
}

.blog-posts .down-content ul.post-tags li,
.blog-posts .down-content ul.post-share li {
	display: inline-block;
}

.blog-posts .down-content ul.post-tags li:first-child i,
.blog-posts .down-content ul.post-share li:first-child i {
	color: #f48840;
	margin-right: 5px;
}

.blog-posts .down-content ul.post-tags li,
.blog-posts .down-content ul.post-share li {
	color: #aaa;
}

.blog-posts .down-content ul.post-tags li a,
.blog-posts .down-content ul.post-share li a {
	font-size: 14px;
	color: #aaa;
	font-weight: 400;
	transition: all .3s;
}

.blog-posts .down-content ul.post-tags li a:hover,
.blog-posts .down-content ul.post-share li a:hover {
	color: #f48840;
}

.blog-posts .main-button a {
	height: 60px;
	line-height: 60px;
	padding: 0px;
	width: 100%;
	text-align: center;
}

ul.page-numbers {
	text-align: center;
}

ul.page-numbers li {
	display: inline-block;
	margin: 0px 5px;
}

ul.page-numbers li a {
	width: 50px;
	height: 50px;
	display: inline-block;
	text-align: center;
	line-height: 50px;
	font-size: 15px;
	color: #7a7a7a;
	border: 1px solid #eee;
	font-weight: 500;
	transition: all 0.3s;
}

ul.page-numbers li.active a {
	background-color: #f48840;
	border-color: #f48840;
	color: #fff;
}

ul.page-numbers li a:hover {
	color: #f48840;
}

.blog-posts .sidebar-heading h2 {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.5px;
	color: #20232e;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.blog-posts .comments {
	margin-top: 30px;
}

.blog-posts .comments ul li {
	display: inline-block;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.blog-posts .comments ul li.replied {
	padding-left: 130px;
}

.blog-posts .comments ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.blog-posts .comments ul li .author-thumb {
	display: inline;
	float: left;
}

.blog-posts .comments ul li .author-thumb img {
	max-width: 100px;
	display: inline;
}

.blog-posts .comments ul li .right-content {
	margin-left: 130px;
}

.blog-posts .comments ul li .right-content h4 {
	color: #20232e;
	font-size: 19px;
	font-weight: 900;
	letter-spacing: 0.5px;
}

.blog-posts .comments ul li .right-content h4 span {
	font-size: 14px;
    color: #aaa;
	font-weight: 400;
	letter-spacing: 0.25px;
	margin-left: 20px;
}

.blog-posts .submit-comment {
	margin-top: 60px;
}

.blog-posts .submit-comment input {
	width: 100%;
	height: 46px;
	border: 1px solid #eee;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	color: #7a7a7a;
	outline: none;
	padding: 0px 15px;
	margin-bottom: 30px;
}

.blog-posts .submit-comment textarea {
	width: 100%;
	height: 46px;
	border: 1px solid #eee;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	color: #7a7a7a;
	outline: none;
	padding: 10px 15px;
	margin-bottom: 30px;
	height: 180px;
	max-height: 220px;
	max-width: 100%;
	min-width: 160px;
}

.blog-posts .submit-comment input::placeholder,
.blog-posts .submit-comment textarea::placeholder {
	color: #aaa;
}

.blog-posts .submit-comment button {
	display: inline-block;
	background-color: #f48840;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 12px 20px;
	text-transform: uppercase;
	transition: all .3s;
	border: none;
	outline: none;
}

.blog-posts .submit-comment button:hover {
	background-color: #fb9857;
}

/* Sidebar */

.sidebar {
	margin-left: 30px;
}

.sidebar .sidebar-item {
	margin-top: 50px;
}

.sidebar .search {
	margin-top: 0px;
}

.sidebar .sidebar-heading h2 {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.5px;
	color: #20232e;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.sidebar .search input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	color: #7a7a7a;
	outline: none;
	padding: 0px 15px;
}

.sidebar .search input::placeholder {
	color: #aaa;
}

.sidebar .recent-posts ul li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.sidebar .recent-posts ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.sidebar .recent-posts ul li h5 {
	font-size: 19px;
	font-weight: 900;
	color: #20232e;
	line-height: 30px;
	transition: all 0.3s;
}

.sidebar .recent-posts ul li h5:hover {
	color: #f48840;
}

.sidebar .recent-posts ul li span {
	display: block;
	font-size: 14px;
	color: #aaa;
	margin-top: 8px;
}

.sidebar .categories ul li {
	margin-bottom: 15px;
}

.sidebar .categories ul li:last-child {
	margin-bottom: 0px;
}

.sidebar .categories ul li a {
	font-size: 15px;
	font-weight: 700;
	color: #20232e;
	transition: all .3s;
}

.sidebar .categories ul li a:hover {
	color: #f48840;
}

.sidebar .tags ul li {
	margin-right: 6px;
	display: inline-block;
}

.sidebar .tags ul li {
	margin-bottom: 10px;
}

.sidebar .tags ul li a {
	font-size: 15px;
	font-weight: 500;
	color: #aaa;
	display: inline-block;
	border: 1px solid #eee;
	padding: 10px 18px;
	transition: all .3s;
}

.sidebar .tags ul li a:hover {
	background-color: #f48840;
	border-color: #f48840;
	color: #fff;
}


/* Footer */

footer {
    margin-top: 100px; /* Space above the footer */
    text-align: center;
    background-color: #20232e; /* Background color */
    padding: 60px 0; /* Padding top and bottom */
    width: 100%; /* Ensure footer is full width */
    position: relative; /* Ensure proper positioning */
    left: 0; /* Align to the left */
}

footer ul.social-icons {
    padding-bottom: 60px; /* Space below social icons */
    margin-bottom: 60px; /* Space below the list */
    border-bottom: 1px solid rgba(250, 250, 250, 0.15); /* Bottom border */
}

footer ul.social-icons li {
    display: inline-block; /* Inline list items */
    margin-right: 30px; /* Space between icons */
}

footer ul.social-icons li:after {
    content: "|"; /* Separator */
    color: #fff;
    margin-left: 30px; /* Space before the separator */
}

footer ul.social-icons li:last-child {
    margin-right: 0; /* No margin for the last item */
}

footer ul.social-icons li:last-child::after {
    display: none; /* Hide the separator after the last item */
}

footer ul.social-icons li a {
    font-size: 14px; /* Font size */
    text-transform: uppercase; /* Uppercase text */
    color: #fff; /* Link color */
    font-weight: 500; /* Font weight */
    letter-spacing: 0.25px; /* Letter spacing */
    transition: all .3s; /* Transition effect */
}

footer ul.social-icons li a:hover {
    color: #f48840; /* Hover color */
}

footer p {
    font-size: 13px; /* Font size for paragraph */
    text-transform: uppercase; /* Uppercase text */
    color: #fff; /* Text color */
}

footer p a {
    color: #f48840; /* Link color */
}

footer p a:hover {
    color: #f48840; /* Hover color for links */
}



/* Contact Form */

.contact-us .down-contact,
.contact-us #map {
	margin-top: 80px;
}

.contact-us .sidebar-heading h2 {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.5px;
	color: #20232e;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.contact-us .contact-form select,
.contact-us .contact-form input {
	width: 100%;
	height: 46px;
	border: 1px solid #eee;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	color: #7a7a7a;
	outline: none;
	padding: 0px 15px;
	margin-bottom: 30px;
}

.contact-us .contact-form textarea {
	width: 100%;
	height: 46px;
	border: 1px solid #eee;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	color: #7a7a7a;
	outline: none;
	padding: 10px 15px;
	margin-bottom: 30px;
	height: 180px;
	max-height: 220px;
	max-width: 100%;
	min-width: 160px;
}

.contact-us .contact-form input::placeholder,
.contact-us .contact-form textarea::placeholder {
	color: #aaa;
}

.contact-us .contact-form button {
	display: inline-block;
	background-color: #f48840;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 12px 20px;
	text-transform: uppercase;
	transition: all .3s;
	border: none;
	outline: none;
}

.contact-us .contact-form button:hover {
	background-color: #fb9857;
}

.contact-us .contact-information {
	margin-left: 30px;
}

.contact-us .contact-information ul li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.contact-us .contact-information ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.contact-us .contact-information ul li h5 {
	font-size: 19px;
	font-weight: 900;
	color: #20232e;
	line-height: 30px;
}

.contact-us .contact-information ul li span {
	display: block;
	font-size: 14px;
	color: #aaa;
	margin-top: 8px;
}


/* About Us */

.about-us {
    margin-top: 100px;
    text-align: center;
    font-family: 'Roboto', sans-serif; /* Ensure consistent font family */
}

.about-us img {
    width: 100%;
    max-height: 300px; /* Example height, adjust as needed */
    object-fit: cover; /* Ensures the image covers the space proportionately */
    overflow: hidden;
}

.about-us p {
    margin: 40px 0px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    font-size: 16px; /* Adjust size as needed */
    color: #333; /* Ensure the text color is consistent */
}

.about-us h3 {
    font-family: 'Roboto', sans-serif; /* Ensure section headings use the same font */
    font-weight: 700; /* Bold for emphasis */
    color: #212931; /* Customize color to match the theme */
}

.about-us ul li {
    display: inline-block;
    margin: 0px 5px;
}

.about-us ul li a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background-color: #212931;
    color: #fff;
    border-radius: 50%;
    transition: all .3s;
}

.about-us ul li a:hover {
    background-color: #f48840;
    transform: scale(1.1); /* Slight scaling effect on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us {
        margin-top: 50px;
    }

    .about-us p {
        margin: 20px 0;
    }

    .about-us h3 {
        font-size: 24px; /* Adjust heading size for smaller screens */
    }
}



/* Responsive Style */
@media (max-width: 1250px) {
	.owl-banner .owl-nav .owl-prev {
		left: 0px;
	}
	.owl-banner .owl-nav .owl-next {
		right: 0px;
	}
	.owl-banner .owl-nav button span {
		width: 35px;
	}
	.owl-banner .item .item-content .meta-category span {
		font-size: 16px;
	}
	.owl-banner .item .item-content h4 {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.owl-banner .owl-nav {
		display: none;
	}
}

@media (max-width: 992px) {
	.navbar .navbar-brand {
		position: absolute;
		left: 30px;
		top: 25px;
	}
	.background-header .navbar-brand,
	.background-header .navbar-toggler {
		top: 15px;
	}
	.navbar .navbar-brand {
		width: auto;
	}
	.navbar:after {
		display: none;
	}
	#navbarResponsive {
	    z-index: 99999;
	    position: absolute;
	    top: 80px;
	    left: 0;
	    width: 100%;
	    text-align: center;
	    background-color: #fff;
	    box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	}
	.navbar .navbar-nav .nav-item {
		border-bottom: 1px solid #eee;
	}
	.navbar .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}
	.navbar .navbar-nav a.nav-link {
		padding: 15px 0px;
		color: #1e1e1e!important;
	}
	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .active>.nav-link,
	.navbar .navbar-nav .nav-link.active,
	.navbar .navbar-nav .nav-link.show,
	.navbar .navbar-nav .show>.nav-link {
		color: #f48840!important;
		border-bottom: none!important;
		padding-bottom: 15px;
	}
	.owl-banner .item .item-content .meta-category span {
		font-size: 18px;
	}
	.owl-banner .item .item-content {
		text-align: center;
		width: 80%;
		left: 50%;
		top: 50%;
		bottom: auto;
		transform: translate(-50%,-50%);
	}
	.owl-banner .item .item-content h4 {
		font-size: 24px;
	}
	.call-to-action {
		text-align: center;
	}
	.call-to-action .main-content .main-button {
		text-align: center;
		margin-top: 30px;
	}
	.sidebar {
		margin-left: 0px;
		margin-top: 60px;
		padding-top: 60px;
		border-top: 3px solid #f7f7f7;
	}
	.contact-us .contact-information {
		margin-left: 0px;
		margin-top: 60px;
	}
}
.dropdown-item {
	padding-top: 10px;
	padding-bottom: 10px;item-content
}

.btn-primary {
	border-color: #f48840;
	background-color: #f48840;
}

.btn-primary:focus,
.btn-primary:hover {
	border-color: #fb9857;
	background-color: #fb9857;
}

.dropdown-item.active, 
.dropdown-item:active { 
	background-color: #f48840;
}

.modal-dialog {
	margin-top: 90px;
}

.m-n {
	margin: 0!important;
}
.

.get-inspired {
    background-color: #f7f7f7;
    padding: 60px 0;
}

.get-inspired .container {
    max-width: 1200px;
    margin: 0 auto;
}

.get-inspired .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.get-inspired .section-title h2 {
    color: #f48840;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.get-inspired .section-title p {
    color: #333;
    font-size: 18px;
    margin-bottom: 30px;
}

.get-inspired .inspiration-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.get-inspired .card {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    width: 30%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative; /* Change to relative positioning */
    transition: transform 0.3s;
}

.get-inspired .card:hover {
    transform: translateY(-10px);
}

.get-inspired .card img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 20px;
}

.get-inspired .card h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.get-inspired .card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px; /* Add extra margin to prevent overlap with the button */
}

.get-inspired .read-more {
    background-color: #f48840;
    color: #fff;
    border: none;
    padding: 8px 16px; /* Reduced padding for a smaller button */
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    border-radius: 20px; /* Smooth, rounded borders */
    font-size: 14px; /* Slightly smaller font size */
}

.get-inspired .read-more:hover {
    background-color: #e07b35;
}


@media (max-width: 768px) {
    .get-inspired .card {
        width: 100%;
        margin-bottom: 20px;
    }
}
.row {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to the next line */
    justify-content: space-between; /* Distributes space evenly */
}

.blog-post {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    height: 100%; /* Ensures all cards have the same height */
}

.down-content {
    flex-grow: 1; /* Allows content area to expand and fill the space */
}


.Program .container {
    text-align: center; /* Centers the text within the container */
}

.Program ol {
    list-style-position: inside; /* Ensures the list numbers are inside the content */
    padding-left: 0; /* Removes the default padding on the left */
    display: inline-block; /* Ensures the list stays centered */
    text-align: left; /* Aligns list items to the left */
}
.payment-icons a {
    margin: 10px;
}
/* Team Section */
.team-section {
    padding: 60px 0; /* Padding for top and bottom of the section */
    background-color: #f9f9f9; /* Light background color for distinction */
}

.team-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.team-section .section-description {
    font-size: 16px;
    color: #777;
    text-align: center;
    margin-bottom: 50px;
}

.team-section .blog-post {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.team-section .blog-post:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team-section .blog-thumb {
    margin-bottom: 20px;
}

.team-section .blog-thumb img {
    border-radius: 0px; /* Remove roundness if you want square corners */
    border: none; /* Remove any border */
    width: 100%;
    height: auto;
}


.team-section .down-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-section .down-content span {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: #888;
}

.team-section .down-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-section .col-md-3, .team-section .col-sm-4 {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .team-section .col-md-3, .team-section .col-sm-4 {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.testimonial {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Video Highlights Section */
.video-highlights {
    padding: 40px 0;
    text-align: center;
}

.video-highlights h2 {
    margin-bottom: 20px;
}

/* Blog Section */
.blog {
    padding: 40px 0;
}

.blog-post {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.blog-post:hover {
    transform: translateY(-5px);
}

/* Event Calendar Section */
.event-calendar {
    padding: 40px 0;
}

.event-calendar h2 {
    margin-bottom: 20px;
}

/* Newsletter Signup Section */
.newsletter {
    background-color: #f48840; /* Primary color */
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: #0056b3; /* Primary text color */
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #e0e0e0;
}

/* Resource Center Section */
.resource-center {
    padding: 40px 0;
}

.resource-center h2 {
    margin-bottom: 20px;
}

.resource-center ul {
    list-style-type: none;
    padding: 0;
}

.resource-center li {
    margin-bottom: 10px;
}

.resource-center a {
    color: #0056b3;
    text-decoration: underline;
    transition: color 0.3s;
}

.resource-center a:hover {
    color: #003d80; /* Darker shade on hover */
}

/* Customize the carousel container */
.impact-image-container {
    margin: 15px 0;
    max-width: 100%; /* Ensures carousel spans the width of its container */
}

/* Style for carousel images */
.carousel-item img {
    width: 90%; /* Ensures images are responsive */
    height: auto; /* Keeps aspect ratio */
    border-radius: 10px; /* Add rounded corners if desired */
    object-fit: cover; /* Ensures image covers the entire area */
}

/* Optional: Change the carousel control buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Darken the default control icons */
    border-radius: 50%;
    padding: 10px;
}


/* Style for Impact Stories Section */
.impact-stories-section {
    display: flex;
    flex-direction: column; /* Align the content vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center; /* Center the text */
    margin: 40px auto; /* Add some margin on top and bottom, center horizontally */
    max-width: 1200px; /* Limit the section width */
}

/* Style for each Impact Story */
.impact-story {
    width: 100%; /* Full width inside the container */
    max-width: 800px; /* Limit the width of each story */
    margin: 20px 0; /* Add space between stories */
    padding: 20px; /* Add padding for some breathing room */
    border: 1px solid #ddd; /* Add a subtle border around each story */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: #fff; /* White background for contrast */
}

/* Style the Impact Stories heading */
.impact-stories-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px; /* Add space below the heading */
    color: #333; /* Darker text color for better readability */
}

.donation-provide {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9; /* Light background color */
    border-radius: 8px;
}

.donation-provide h2 {
    font-size: 2rem;
    color: #ff6600; /* Highlight color */
    margin-bottom: 30px;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.amount-box {
    background-color: #ffffff; /* Box background color */
    border: 1px solid #ddd; /* Box border color */
    border-radius: 8px;
    padding: 20px;
    width: 200px; /* Fixed width */
}

.amount-box h3 {
    font-size: 1.5rem;
    color: #333; /* Text color */
    margin-bottom: 10px;
}

.amount-box p {
    font-size: 1rem;
    color: #666; /* Description color */
}

.amount-selection {
    margin-top: 40px;
}

.amount-selection h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.amount-options button {
    background-color: #007bff; /* Button color */
    color: #ffffff; /* Button text color */
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
}

.amount-options button:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

.transaction-fee {
    margin-top: 15px;
    font-size: 1rem;
    color: #555; /* Text color */
}

.donation-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures it takes the full height of the viewport */
    background-color: #f7f7f7; /* Optional: Light background for contrast */
}

.donation-container {
    width: 100%;
    max-width: 600px; /* Adjust form size */
    padding: 40px;
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.donation-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}
.donation-container form {
    width: 100%; /* Ensures form takes full container width */
    display: flex;
    flex-direction: column;
}
.payment-details {
    margin-bottom: 30px;
}

.payment-details h3 {
    margin-bottom: 10px;
}

.payment-details label {
    display: block;
    margin-bottom: 8px;
}

.payment-details input[type="text"],
.payment-details select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

.expiration-date {
    display: flex;
    gap: 10px;
}

.payment-method {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.payment-method label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method img {
    max-width: 50px;
}

input[type="submit"] {
    padding: 15px;
    background-color: #ff5f6d; /* Base color */
    background-image: linear-gradient(45deg, #ff5f6d, #ffc371); /* Gradient */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    border-radius: 50px; /* Rounded corners */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

input[type="submit"]:hover {
    background-image: linear-gradient(45deg, #ffc371, #ff5f6d); /* Hover gradient */
    box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
    transform: translateY(-3px); /* Slight lift effect */
}

.carousel-inner img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the images cover the area nicely */
}

.Trends {
            display: flex;
            justify-content: center; /* Aligns the images horizontally */
            gap: 70px; /* Adds space between the images */
        }
        .Trends img {
            width: 30%; /* Adjust the width of each image */
        }