/* ==========================
   Global Styles
========================== */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.75;
    color: #333;
    font-size: 18px; /* Increased from 16px */
}

.container {
    width: 85%;
    margin: auto;
    padding: 30px 0;
    overflow: hidden;
}

/* ==========================
   Header Styles
========================== */
header {
    background-color: #002244;
    color: #fff;
    padding: 15px 0;
    border-bottom: 4px solid #0779e4;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: fixed;
    top: 15px;
    left: 30px;
    z-index: 1001;
    background: #002244;
    padding: 5px 10px;
    border-radius: 8px;
}

header .logo img {
    max-height: 50px;
    width: auto;
}

header .logo h1 {
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
}

header nav {
    margin-left: auto;
    padding-left: 150px; /* Adjust based on logo width */
}

header nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav a {
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

header nav a:hover,
header nav .active {
    background-color: #0779e4;
    color: #fff;
    font-weight: 600;
}

/* Responsive Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
        background-color: #002244;
        padding: 10px 0;
    }

    header nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        padding-left: 0;
    }

    header .logo {
        position: static;
        margin-bottom: 10px;
    }
}

/* ==========================
   Dashboard Layout
========================== */
.dashboard-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.dashboard-menu {
    background: #f4f4f4;
    padding: 15px;
    margin-bottom: 25px;
}

.dashboard-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.dashboard-menu li {
    margin: 5px 25px 5px 0;
}

.dashboard-menu a {
    color: #333;
    text-decoration: none;
    padding: 10px 18px;
    font-size: 17px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.dashboard-menu a:hover {
    background-color: #0779e4;
    color: #fff;
}

.dashboard-content {
    width: 100%;
    margin-top: 30px;
}

.dashboard-content h3 {
    font-size: 2rem;
    color: #333;
}

/* ==========================
   Sponsorships & Cards
========================== */
.sponsorships-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.data-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 30%;
    padding: 25px;
    font-size: 18px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: #0779e4;
}

.data-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.data-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.data-card p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.data-card .data-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.data-actions a {
    color: #0779e4;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.data-actions a:hover {
    color: #0056b3;
}

/* ==========================
   Buttons & Links
========================== */
.add-new-sponsorship, .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #0779e4;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 25px;
    transition: background-color 0.3s ease;
}

.add-new-sponsorship:hover, .cta-button:hover {
    background-color: #005bb5;
    cursor: pointer;
}

/* ==========================
   Tables & Lists
========================== */
.data-list {
    list-style: none;
    padding: 0;
}

.data-list li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    font-size: 17px;
}

table th, table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
}

table td a {
    color: #007bff;
    text-decoration: none;
}

table td a:hover {
    color: #0056b3;
}

/* ==========================
   Program Section
========================== */
.program {
    background: #fff;
    padding: 50px 30px;
    margin-bottom: 35px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.program h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 25px;
}

.program-details h4 {
    font-size: 1.5rem;
    color: #5a5a5a;
    margin-top: 20px;
}

.program p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

/* ==========================
   Alerts & Footer
========================== */
.alert-banner {
    background-color: #f8d7da;
    color: #721c24;
    padding: 18px;
    margin-bottom: 25px;
    font-size: 17px;
}

.alert-banner a {
    color: #721c24;
    text-decoration: none;
}

.alert-banner a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 25px 0;
    text-align: center;
    font-size: 1.1rem;
}

/* ==========================
   Admin Login Button
========================== */
.admin-login-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0779e4;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 1000;
}

.admin-login-button:hover {
    background: #
 :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Dosis', sans-serif;
        }

        header {
            background: var(--gradient);
            color: white;
            padding: 15px 0;
        }

        header h1 {
            text-align: center;
            margin-bottom: 10px;
        }

        nav ul {
            list-style: none;
            text-align: center;
            padding: 0;
        }

        nav ul li {
            display: inline-block;
            margin: 0 15px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
        }

        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: all 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-wrap.active {
            opacity: 1;
            z-index: 2;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .slider-text {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
        }

        .slider-text h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .slider-text p {
            font-size: 1.2rem;
        }
		/* Section Styling */
.ftco-section.bg-light {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* Heading Styling */
.heading-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b4d7a;
  margin-bottom: 20px;
}

.heading-section p {
  font-size: 1rem;
  color: #6c757d;
}

/* Carousel Item */
.carousel-cause .item {
  padding: 15px;
}

.cause-entry {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.cause-entry:hover {
  transform: translateY(-5px);
}

/* Image Styling */
.cause-entry .img {
  display: block;
  height: 220px;
  background-size: cover;
  background-position: center;
}

/* Text Content */
.cause-entry .text {
  padding: 20px;
}

.cause-entry h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}

.cause-entry p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.donation-time {
  font-size: 0.85rem;
  color: #adb5bd;
  margin-bottom: 10px;
}

/* Progress Bar */
.custom-progress-success {
  background-color: #e9ecef;
  border-radius: 5px;
  height: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.custom-progress-success .progress-bar {
  background-color: #007bff;
  height: 100%;
  transition: width 0.6s ease;
}

/* Fund Raised Text */
.fund-raised {
  font-size: 0.9rem;
  color: #28a745;
  font-weight: 500;
}

/* Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: -50px;
  right: 0;
}

.owl-nav button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 8px 12px;
  margin-left: 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.owl-nav button:hover {
  background: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cause-entry .img {
    height: 180px;
  }

  .heading-section h2 {
    font-size: 2rem;
  }
}
/* Base styles */
.team {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.team h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.team p {
    font-size: 1.1rem;
    color: #555;
}

/.team-members-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
}

.team-member {
    flex: 0 1 calc(33.33% - 1rem);
    max-width: 220px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.team-member:hover {
    transform: scale(1.03);
}

.team-member img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1rem;
    margin: 0.3rem 0;
}

.team-member .title {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.3rem;
}

.team-member .bio {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
    max-height: 3.5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .team-member {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 480px) {
    .team-member {
        flex: 1 1 100%;
    }
}
