/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    text-align: center;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 10px;
    font-size: 1.2em;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 80px;
}

.banner img {
    height: 80px;
}

/* Support Button */
.support-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-btn {
    background: #ff5722;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, background 0.3s;
}

.support-btn:hover {
    background: #e64a19;
    transform: scale(1.1);
}


/* Navigation Menu */
nav {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

/* Sections */
.section {
    padding: 50px;
    background: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Services */
.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-shadow: 1px 1px 2px black;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.1);
}

/* Donation */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-card {
    background: #28a745;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-shadow: 1px 1px 2px black;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}


/* Contact Section */
.contact-info {
    text-align: left;
    max-width: 400px;
    margin: auto;
    font-size: 1.1em;
    line-height: 1.8;
}


.donate-btn {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 15px 30px;
    margin-top: 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.donate-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

/* Title Section with Background */
#title-section {
    text-align: center;
    padding: 60px 20px;
    background: url('title-background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
}

/* Dark Overlay for Better Readability */
#title-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust transparency */
    z-index: 0;
}

/* Ensuring Title & Subtitle Appear on Top */
.site-title, .site-subtitle {
    position: relative;
    z-index: 1;
}

/* 3D Title Styling */
.site-title {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), 2px 2px 10px rgba(0, 0, 0, 0.2);
    transform: perspective(500px) rotateX(10deg);
}

/* Subtitle Styling */
.site-subtitle {
    font-size: 1.5em;
    margin-top: 10px;
    font-style: italic;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}


/* Flag Counter Section */
#flag-counter {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
}

.counter-container img {
    border: 5px solid #ddd;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
