/* Variables */
:root {
  --primary-color: #cd176e;
  --secondary-color: #fb8268; 
  --dark-color: #333;
  --light-color: #f8f9fa;
  --danger-color: #e74c3c;
  --success-color: #2ecc71;
  --white: #fff;
  --black: #000;
  --gray: #6c757d;
  --light-gray: #f1f1f1;
}

/* Base Styles */
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

a:hover {
  color: #237373;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    transition: background-color 0.3s ease;
    border:2px solid red;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    boarder:2px solid var(--primary-color);
}
.btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-light {
  background-color: var(--light-color);
  color: var(--dark-color);
}

.btn-light:hover {
  background-color: #e0e0e0;
  color: var(--dark-color);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar .contact-info,
.top-bar .social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.top-bar .contact-info li {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.top-bar .contact-info li i {
  margin-right: 5px;
}

.top-bar .social-links {
  justify-content: flex-end;
}

.top-bar .social-links li {
  margin-left: 15px;
}

.top-bar .social-links li a {
  color: var(--white);
  background-color: #fff;
  font-size: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.top-bar .social-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
  max-height: 50px;
}

.navbar .navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  color: var(--dark-color);
  padding: 8px 15px;
  position: relative;
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}

.navbar .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-item .nav-link:hover::after {
  width: calc(100% - 30px);
}

.navbar .navbar-nav .nav-item .donate-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  margin-left: 10px;
  border-radius: 24px;
}

.navbar .navbar-nav .nav-item .donate-btn:hover {
  background-color: #e0a300;
}


/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    
    .contact-info, .social-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    .contact-info {
        li {
            margin-right: 20px;
            display: flex;
            align-items: center;
            
            i {
                margin-right: 5px;
                font-size: 14px;
            }
        }
    }
    
    .social-links {
        justify-content: flex-end;
        
        li {
            margin-left: 12px;
            
            a {
                color: white;
                font-size: 16px;
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                
                &:hover {
                    background-color: rgba(white, 0.2);
                    transform: translateY(-2px);
                }
            }
        }
    }
}


@media (max-width: 767.98px) {
    .top-bar {
        text-align: center;
        
        .contact-info, .social-links {
            justify-content: center;
        }
        
        .col-md-6 {
            margin-bottom: 10px;
        }
        
        .social-links li {
            margin: 0 6px;
        }
    }
    
    .navbar {
        .navbar-title {
            font-size: 16px;
            margin: 0 10px;
        }
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        .contact-info {
            flex-direction: column;
            align-items: center;
            
            li {
                margin: 3px 0;
            }
        }
    }
    
    .navbar {
        .navbar-title {
            font-size: 14px;
        }
    }
}

/* Page Header */
.page-header {
  background-color: var(--light-gray);
  padding: 60px 0 40px;
  position: relative;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  justify-content: center;
}

.page-header .breadcrumb .breadcrumb-item {
  font-size: 16px;
}

.page-header .breadcrumb .breadcrumb-item a {
  color: var(--gray);
}

.page-header .breadcrumb .breadcrumb-item.active {
  color: var(--primary-color);
}

.page-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '>';
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark-color);
  line-height: 1.2;
}

.hero p.lead {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--gray);
}

.hero .hero-buttons .btn {
  margin-right: 15px;
  margin-bottom: 15px;
}

.hero img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* Impact Stats */
.impact-stats {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px 0;
  margin: 40px 0;
}

.impact-stats .stat {
  padding: 20px;
  text-align: center;
}

.impact-stats .stat span {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.impact-stats .stat p {
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-section h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
}

.about-section p {
  margin-bottom: 20px;
  font-size: 16px;
}

.about-section .about-image img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section .years-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--secondary-color);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section .years-badge span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-section .years-badge p {
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
}

/* Programs Section */
.programs-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.programs-section .program-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.programs-section .program-card:hover {
  transform: translateY(-10px);
}

.programs-section .program-card .program-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.programs-section .program-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.programs-section .program-card p {
  margin-bottom: 20px;
}

.programs-section .program-card .read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.programs-section .program-card .read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.programs-section .program-card .read-more:hover i {
  transform: translateX(5px);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Testimonials */
     

  

        /* Carousel Container */
        .testimonial-carousel {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Slides */
        .testimonial-slide {
            display: none;
            text-align: center;
            padding: 0 20px;
        }

        .testimonial-slide.active {
            display: block;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .testimonial-content {
           font-style: italic;
            font-size: 1.25rem;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.6;
            position: relative;
        }

        .testimonial-author {
            margin-top: 30px;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 1px solid #eee;
        }

        .author-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #000;
            margin-bottom: 5px;
        }

        .author-info p {
          font-style: italic;
            color: #666;
            font-size: 0.9rem;
        }

        /* Navigation */
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--secondary-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-color);
            width: 24px;
            border-radius: 4px;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .carousel-arrow:hover {
            opacity: 1;
        }

        .carousel-arrow.prev {
            left: -50px;
        }

        .carousel-arrow.next {
            right: -50px;
        }

        /* Progress Bar */
        .progress-container {
            width: 100%;
            height: 2px;
            background: #eee;
            margin-top: 40px;
        }

        .progress-bar {
            height: 100%;
            background: #000;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* Responsive */
        @media (max-width: 768px) {
      

            .testimonial-content {
                font-size: 1.1rem;
            }

            .carousel-arrow {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .testimonial-slide {
                padding: 0;
            }

            .testimonial-content {
                font-size: 1rem;
            }
        }
/* Latest News */
.latest-news {
  padding: 80px 0;
}

.latest-news .news-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.latest-news .news-card:hover {
  transform: translateY(-10px);
}

.latest-news .news-card .news-image {
  position: relative;
}

.latest-news .news-card .news-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.latest-news .news-card .news-image .date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  line-height: 1;
}

.latest-news .news-card .news-image .date-badge span {
  display: block;
}

.latest-news .news-card .news-image .date-badge span:first-child {
  font-size: 24px;
  font-weight: 700;
}

.latest-news .news-card .news-image .date-badge span:last-child {
  font-size: 14px;
  text-transform: uppercase;
}

.latest-news .news-card .news-content {
  padding: 20px;
}

.latest-news .news-card .news-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.latest-news .news-card .news-content h3 a {
  color: var(--dark-color);
}

.latest-news .news-card .news-content h3 a:hover {
  color: var(--primary-color);
}

.latest-news .news-card .news-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

.latest-news .news-card .news-content .read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.latest-news .news-card .news-content .read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.latest-news .news-card .news-content .read-more:hover i {
  transform: translateX(5px);
}

/* Partners Section */
 .partners-section {
            padding: 60px 0;
            background-color: var(--light-gray);
            overflow: hidden;
        }

        .partners-slider {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .partners-track {
            display: flex;
            animation: slide 20s linear infinite;
            width: calc(200px * 10); /* Adjust based on number of logos */
        }

        .partner-logo {
            flex: 0 0 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 30px;
        }

        .partner-logo img {
            max-height: 60px;
            width: auto;
            opacity: 0.7;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            object-fit: contain;
        }

        .partner-logo:hover img {
            opacity: 1;
            filter: grayscale(0);
            animation-play-state: paused;
        }

        .partners-track:hover {
            animation-play-state: paused;
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .partners-track {
                animation-duration: 15s;
            }
            
            .partner-logo {
                flex: 0 0 150px;
            }
            
            .partner-logo img {
                max-height: 45px;
            }
        }

/* Newsletter */
.newsletter {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 50px 0;
}

.newsletter h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.newsletter p {
  opacity: 0.9;
  margin-bottom: 0;
}

.newsletter .newsletter-form .input-group {
  border-radius: 30px;
  overflow: hidden;
}

.newsletter .newsletter-form .form-control {
  height: 50px;
  border: none;
  padding: 0 20px;
}

.newsletter .newsletter-form .form-control:focus {
  box-shadow: none;
}

.newsletter .newsletter-form .btn {
  padding: 0 25px;
  height: 50px;
}

/* Footer */
.footer {
  background-color: #222;
  color: #aaa;
  padding: 60px 0 0;
}

.footer .footer-widget {
  margin-bottom: 30px;
}

.footer .footer-widget .footer-logo {
  max-height: 50px;
  margin-bottom: 20px;
}

.footer .footer-widget p {
  margin-bottom: 20px;
  font-size: 14px;
}

.footer .footer-widget h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer .footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer .footer-widget .footer-links {
  list-style: none;
  padding: 0;
}

.footer .footer-widget .footer-links li {
  margin-bottom: 10px;
}

.footer .footer-widget .footer-links li a {
  color: #aaa;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer .footer-widget .footer-links li a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer .footer-widget .footer-contact {
  list-style: none;
  padding: 0;
}

.footer .footer-widget .footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.footer .footer-widget .footer-contact li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 3px;
}

.footer .footer-widget .footer-social a {
  display: flex;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer .footer-widget .footer-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer .copyright {
  background-color: #111;
  border-top: 1px solid var(--primary-color);
  padding: 20px 0;
  margin-top: 40px;
}

.footer .copyright p {
  margin: 0;
  font-size: 14px;
}

.footer .copyright .footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer .copyright .footer-bottom-links li {
  margin-left: 15px;
}

.footer .copyright .footer-bottom-links li a {
  color: #aaa;
  font-size: 14px;
}

.footer .copyright .footer-bottom-links li a:hover {
  color: var(--white);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top:hover {
  background-color: #237373;
  color: var(--white);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* About Page Styles */
.about-content {
  padding: 80px 0;
}

.about-content .about-text h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content .about-text p {
  margin-bottom: 15px;
}

.about-content .about-image img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision {
  padding: 60px 0;
  background-color: var(--light-gray);
}

.mission-vision .mission-card,
.mission-vision .vision-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
}

.mission-vision .mission-card .icon-box,
.mission-vision .vision-card .icon-box {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.mission-vision .mission-card h3,
.mission-vision .vision-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.mission-vision .mission-card p,
.mission-vision .vision-card p {
  margin-bottom: 0;
}

.mission-vision .mission-card {
  border-bottom: 5px solid var(--primary-color);
}

.mission-vision .vision-card {
  border-bottom: 5px solid var(--secondary-color);
}

.mission-vision .vision-card .icon-box {
  color: var(--secondary-color);
  background-color: rgba(248, 180, 0, 0.1);
}

/* Core Values */
.core-values {
    padding: 80px 0;
}



.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--secondary-color);
    color: #fff;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.team-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.team-section .team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-section .team-member:hover {
  transform: translateY(-10px);
}

.team-section .team-member:hover .team-social {
  opacity: 1;
  visibility: visible;
}

.team-section .team-member .team-img {
  position: relative;
}

.team-section .team-member .team-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-section .team-member .team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  padding: 15px;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.team-section .team-member .team-social a {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team-section .team-member .team-social a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.team-section .team-member .team-info {
  padding: 20px;
  text-align: center;
}

.team-section .team-member .team-info h4 {
  margin-bottom: 5px;
  font-size: 20px;
}

.team-section .team-member .team-info span {
  color: var(--gray);
  font-size: 14px;
}

.board-section {
  padding: 80px 0;
}

.board-section .board-member {
  text-align: center;
  margin-bottom: 30px;
}

.board-section .board-member .board-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 5px solid var(--light-gray);
}

.board-section .board-member .board-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-section .board-member .board-info h4 {
  margin-bottom: 5px;
  font-size: 20px;
}

.board-section .board-member .board-info span {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.board-section .board-member .board-info p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 0;
}

.reports-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.reports-section .report-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.reports-section .report-card:hover {
  transform: translateY(-10px);
}

.reports-section .report-card .report-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.reports-section .report-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.reports-section .report-card p {
  margin-bottom: 20px;
}

/* Programs Page Styles */
.programs-overview {
  padding: 80px 0;
}

.programs-overview h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.programs-overview p {
  margin-bottom: 20px;
}

.programs-overview .program-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.programs-overview .stat-item {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 150px;
  min-width: 150px;
}

.programs-overview .stat-item .stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.programs-overview .stat-item .stat-text {
  font-size: 14px;
  opacity: 0.9;
}

.program-details {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.program-details .program-tabs .nav-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
}

.program-details .program-tabs .nav-tabs .nav-link {
  border: none;
  color: var(--gray);
  font-weight: 600;
  padding: 12px 25px;
  position: relative;
  margin-right: 5px;
}

.program-details .program-tabs .nav-tabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.program-details .program-tabs .nav-tabs .nav-link:hover,
.program-details .program-tabs .nav-tabs .nav-link.active {
  color: var(--primary-color);
  background-color: transparent;
  border-color: transparent;
}

.program-details .program-tabs .nav-tabs .nav-link:hover::after,
.program-details .program-tabs .nav-tabs .nav-link.active::after {
  width: 100%;
}

.program-details .program-tabs .tab-content .program-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.program-details .program-tabs .tab-content .program-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.program-details .program-tabs .tab-content .program-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 3px;
}

.program-details .program-tabs .tab-content .program-impact h4 {
  margin-bottom: 20px;
  font-size: 20px;
}

.program-details .program-tabs .tab-content .impact-stat {
  background-color: rgba(44, 138, 138, 0.1);
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 15px;
}

.program-details .program-tabs .tab-content .impact-stat span {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.program-details .program-tabs .tab-content .impact-stat p {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}

.program-details .program-tabs .tab-content .program-gallery {
  margin-bottom: 30px;
}

.program-details .program-tabs .tab-content .program-gallery .main-image {
  margin-bottom: 15px;
}

.program-details .program-tabs .tab-content .program-gallery .main-image img {
  border-radius: 10px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.program-details .program-tabs .tab-content .program-gallery .thumbnail-images {
  display: flex;
  gap: 10px;
}

.program-details .program-tabs .tab-content .program-gallery .thumbnail-images img {
  width: calc(33.333% - 7px);
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.program-details .program-tabs .tab-content .program-gallery .thumbnail-images img:hover {
  opacity: 0.8;
}

.program-details .program-tabs .tab-content .program-testimonial {
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-details .program-tabs .tab-content .program-testimonial .testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.program-details .program-tabs .tab-content .program-testimonial .testimonial-author {
  display: flex;
  align-items: center;
}

.program-details .program-tabs .tab-content .program-testimonial .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--primary-color);
}

.program-details .program-tabs .tab-content .program-testimonial .testimonial-author h5 {
  margin-bottom: 5px;
  font-size: 16px;
}

.program-details .program-tabs .tab-content .program-testimonial .testimonial-author span {
  color: var(--gray);
  font-size: 14px;
}

.program-approach {
  padding: 80px 0;
}

.program-approach .approach-card {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.program-approach .approach-card:hover {
  transform: translateY(-10px);
}

.program-approach .approach-card .approach-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.program-approach .approach-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.program-approach .approach-card p {
  margin-bottom: 0;
}

.program-locations {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.program-locations .location-map {
  position: relative;
  background-color: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-locations .location-map img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.program-locations .location-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.program-locations .location-marker:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.program-locations .location-list {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.program-locations .location-list h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.program-locations .location-list ul {
  list-style: none;
  padding: 0;
  column-count: 2;
  column-gap: 30px;
}

.program-locations .location-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.program-locations .location-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.program-locations .location-list .expansion-plans {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.program-locations .location-list .expansion-plans h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.program-partners {
  padding: 80px 0;
}

.program-partners .partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partners-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}
.partners-section img {
    max-height: 80px;
    margin: auto;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}
.program-partners .partner-logos img {
  max-height: 60px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.program-partners .partner-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Donation Page Styles */
.donation-impact {
  padding: 80px 0;
}

.donation-impact .impact-content h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.donation-impact .impact-content p {
  margin-bottom: 30px;
}

.donation-impact .impact-list {
  list-style: none;
  padding: 0;
}

.donation-impact .impact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.donation-impact .impact-list li .impact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.donation-impact .impact-list li .impact-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

.donation-impact .impact-image {
  position: relative;
}

.donation-impact .impact-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-impact .impact-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--secondary-color);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-impact .impact-badge .badge-content {
  text-align: center;
}

.donation-impact .impact-badge .badge-content span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.donation-impact .impact-badge .badge-content p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

.donation-options {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.donation-options .donation-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.donation-options .donation-card:hover {
  transform: translateY(-10px);
}

.donation-options .donation-card .donation-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.donation-options .donation-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.donation-options .donation-card p {
  margin-bottom: 20px;
}

.donation-form-section {
  padding: 80px 0;
}

.donation-form-section .donation-form-info h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.donation-form-section .donation-form-info p {
  margin-bottom: 30px;
}

.donation-form-section .donation-amounts h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.donation-form-section .amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.donation-form-section .amount-options .btn {
  background-color: var(--light-gray);
  color: var(--dark-color);
  border: none;
  font-weight: 600;
}

.donation-form-section .amount-options .btn:hover,
.donation-form-section .amount-options .btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.donation-form-section .amount-options .custom-amount {
  display: flex;
  align-items: center;
  width: 100%;
}

.donation-form-section .amount-options .custom-amount span {
  margin-right: 10px;
  color: var(--gray);
}

.donation-form-section .amount-options .custom-amount .form-control {
  flex: 1;
  height: 45px;
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 0 15px;
}

.donation-form-section .donation-designation h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.donation-form-section .donation-designation .form-select {
  height: 45px;
  border-radius: 30px;
  padding: 0 15px;
  border: 1px solid #ddd;
}

.donation-form-section .donation-form-wrapper {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-form-section .donation-form-wrapper h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.donation-form-section .form-group {
  margin-bottom: 20px;
}

.donation-form-section .form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.donation-form-section .form-control,
.donation-form-section .form-select {
  height: 45px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0 15px;
}

.donation-form-section .form-control:focus,
.donation-form-section .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.donation-form-section textarea.form-control {
  height: auto;
  padding: 15px;
}

.donation-form-section .form-check {
  margin-bottom: 15px;
}

.donation-form-section .form-check .form-check-input {
  margin-top: 0.2em;
}

.donation-form-section .form-check .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.donation-form-section .payment-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.donation-form-section .payment-method {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donation-form-section .payment-method.active {
  border-color: var(--primary-color);
  background-color: rgba(44, 138, 138, 0.1);
}

.donation-form-section .payment-method.active span {
  color: var(--primary-color);
}

.donation-form-section .payment-method:hover {
  border-color: var(--primary-color);
}

.donation-form-section .payment-method i {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  color: var(--gray);
}

.donation-form-section .payment-method span {
  font-size: 14px;
  font-weight: 600;
}

.donation-form-section .payment-details {
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 5px;
}

.donation-form-section .payment-details .bank-info p {
  margin-bottom: 10px;
}

.donation-form-section .payment-details .bank-info p strong {
  font-weight: 600;
}

.donation-form-section .payment-details .bank-info .note {
  font-size: 14px;
  color: var(--gray);
  margin-top: 15px;
  margin-bottom: 0;
}

.donation-form-section .btn-donate {
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
}

.monthly-donation {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.monthly-donation .monthly-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.monthly-donation .monthly-content h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.monthly-donation .monthly-content p {
  margin-bottom: 30px;
}

.monthly-donation .monthly-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.monthly-donation .monthly-benefits li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.monthly-donation .monthly-benefits li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 3px;
}

.monthly-donation .monthly-amounts h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.monthly-donation .amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.monthly-donation .amount-options .btn {
  background-color: var(--white);
  color: var(--dark-color);
  border: none;
  font-weight: 600;
}

.monthly-donation .amount-options .btn:hover,
.monthly-donation .amount-options .btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.monthly-donation .amount-options .custom-amount {
  display: flex;
  align-items: center;
  width: 100%;
}

.monthly-donation .amount-options .custom-amount span {
  margin-right: 10px;
  color: var(--gray);
}

.monthly-donation .amount-options .custom-amount .form-control {
  flex: 1;
  height: 45px;
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 0 15px;
}

.other-ways {
  padding: 80px 0;
}

.other-ways .way-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.other-ways .way-card:hover {
  transform: translateY(-10px);
}

.other-ways .way-card .way-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.other-ways .way-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.other-ways .way-card p {
  margin-bottom: 20px;
}

.donor-recognition {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.donor-recognition .donor-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.donor-recognition .donor-card:hover {
  transform: translateY(-10px);
}

.donor-recognition .donor-card .donor-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

.donor-recognition .donor-card .donor-badge.gold {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
}

.donor-recognition .donor-card .donor-badge.silver {
  background-color: rgba(192, 192, 192, 0.1);
  color: #C0C0C0;
}

.donor-recognition .donor-card .donor-badge.bronze {
  background-color: rgba(205, 127, 50, 0.1);
  color: #CD7F32;
}

.donor-recognition .donor-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.donor-recognition .donor-card .amount {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.donor-recognition .donor-card .donor-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
}

.donor-recognition .donor-card .donor-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.donor-recognition .donor-card .donor-benefits li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.donation-faq {
  padding: 80px 0;
}

.donation-faq .accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.donation-faq .accordion .accordion-button {
  font-weight: 600;
  padding: 15px 20px;
}

.donation-faq .accordion .accordion-button:not(.collapsed) {
  background-color: rgba(44, 138, 138, 0.1);
  color: var(--primary-color);
  box-shadow: none;
}

.donation-faq .accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.donation-faq .accordion .accordion-body {
  padding: 20px;
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
}

.contact-section .contact-info h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-section .contact-info p {
  margin-bottom: 30px;
}

.contact-section .contact-method {
  display: flex;
  margin-bottom: 25px;
}

.contact-section .contact-method .contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-section .contact-method .contact-text h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.contact-section .social-links {
  margin-top: 30px;
  display: flex; /* <-- Add this */
}

.contact-section .social-links h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-section .social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-section .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.contact-section .contact-form-wrapper {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-form-wrapper h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section .form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.contact-section .form-control,
.contact-section .form-select {
  height: 45px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0 15px;
}

.contact-section .form-control:focus,
.contact-section .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.contact-section textarea.form-control {
  height: auto;
  padding: 15px;
}

.contact-section .form-check {
  margin-bottom: 20px;
}

.contact-section .form-check .form-check-input {
  margin-top: 0.2em;
}

.contact-section .form-check .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-section .btn {
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
}

.contact-departments {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contact-departments .department-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.contact-departments .department-card:hover {
  transform: translateY(-10px);
}

.contact-departments .department-card .department-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(44, 138, 138, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 30px;
}

.contact-departments .department-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-departments .department-card p {
  margin-bottom: 20px;
}

.contact-departments .department-card .department-contact p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.contact-departments .department-card .department-contact p i {
  margin-right: 8px;
  color: var(--primary-color);
}

.visit-us {
  padding: 80px 0;
}

.visit-us .visit-content h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-size: 36px;
  margin-bottom: 20px;
}

.visit-us .visit-content p {
  margin-bottom: 30px;
}

.visit-us .visit-details h4 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--primary-color);
}

.visit-us .visit-details p {
  margin-bottom: 10px;
}

.visit-us .visit-image {
  position: relative;
}

.visit-us .visit-image img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visit-us .visit-image .badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.visit-us .visit-image .badge i {
  margin-right: 8px;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.faq-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.faq-section .accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.faq-section .accordion .accordion-button {
  font-weight: 600;
  padding: 15px 20px;
}

.faq-section .accordion .accordion-button:not(.collapsed) {
  background-color: rgba(44, 138, 138, 0.1);
  color: var(--primary-color);
  box-shadow: none;
}

.faq-section .accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-section .accordion .accordion-body {
  padding: 20px;
}

.contact-cta {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
}

.contact-cta h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 991.98px) {
  .section-header h2 {
    font-size: 32px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p.lead {
    font-size: 18px;
  }

  .about-section h2,
  .about-content h2 {
    font-size: 32px;
  }

  .impact-stats .stat span {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 28px;
  }

  .top-bar {
    text-align: center;
  }

  .top-bar .contact-info,
  .top-bar .social-links {
    justify-content: center;
  }

  .top-bar .col-md-6 {
    margin-bottom: 10px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    padding-top: 15px;
  }

  .navbar .navbar-nav .nav-item {
    margin: 5px 0;
  }

  .navbar .navbar-nav .nav-item .donate-btn {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero {
    text-align: center;
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .hero-buttons {
    justify-content: center;
  }

  .impact-stats .stat span {
    font-size: 30px;
  }

  .about-section .years-badge,
  .impact-image .impact-badge {
    width: 80px;
    height: 80px;
    right: 0;
  }

  .about-section .years-badge span,
  .impact-image .impact-badge span {
    font-size: 24px;
  }

  .cta-section .row,
  .contact-cta .row {
    text-align: center;
  }

  .cta-section .col-lg-4,
  .contact-cta .col-lg-4 {
    margin-top: 20px;
    text-align: center !important;
  }

  .footer .copyright .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 575.98px) {
  .section-header h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .impact-stats .stat {
    padding: 15px;
  }

  .impact-stats .stat span {
    font-size: 24px;
  }

  .impact-stats .stat p {
    font-size: 16px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .breadcrumb {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    display: block;
    padding-bottom: 10px;
  }
}


/* Gallery Section Styles */
.gallery-section {
    padding: 60px 0;
}

.gallery-section .gallery-filter .filter-button {
    margin: 5px;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.gallery-section .gallery-filter .filter-button.active {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.gallery-section .gallery-grid {
    margin-top: 30px;
}

.gallery-section .gallery-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-section .gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-section .gallery-card:hover .gallery-overlay {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5); /* Example: semi-transparent black */
}

.gallery-section .gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-section .gallery-card .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-section .gallery-card .gallery-overlay .gallery-info {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.gallery-section .gallery-card .gallery-overlay .gallery-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.gallery-section .gallery-card .gallery-overlay .gallery-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

.gallery-section .gallery-card .gallery-overlay .gallery-info i {
    font-size: 30px;
}

.gallery-section #loadMore {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
}

/* Video Gallery Styles */
.video-gallery {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.video-gallery .video-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.video-gallery .video-card:hover {
    transform: translateY(-10px);
}

.video-gallery .video-card .video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-gallery .video-card .video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-gallery .video-card .video-thumbnail .play-button:hover {
    background-color: #007bff;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-gallery .video-card .video-info {
    padding: 20px;
}

.video-gallery .video-card .video-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.video-gallery .video-card .video-info p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* Lightbox Customization */
.lightbox .lb-image {
    border: 5px solid #fff;
    border-radius: 3px;
}

.lightbox .lb-nav a.lb-prev,
.lightbox .lb-nav a.lb-next {
    opacity: 1;
}

.lightbox .lb-data .lb-close {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center center;
    opacity: 1;
}

.lightbox .lb-data .lb-caption {
    font-size: 16px;
    line-height: 1.4;
}

/* Responsive Styles for Gallery */
@media (max-width: 991.98px) {
    .gallery-card .gallery-overlay .gallery-info h3 {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .gallery-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-filter .filter-button {
        margin: 5px;
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .gallery-card img {
        height: 200px;
    }
    
    .video-card .video-thumbnail img {
        height: 180px;
    }
    
    .video-card .video-thumbnail .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .gallery-card img {
        height: 180px;
    }
    
    .gallery-card .gallery-overlay .gallery-info {
        padding: 15px;
    }
    
    .gallery-card .gallery-overlay .gallery-info h3 {
        font-size: 16px;
    }
    
    .gallery-card .gallery-overlay .gallery-info p {
        font-size: 12px;
    }
    
    .gallery-card .gallery-overlay .gallery-info i {
        font-size: 24px;
    }
    
    .video-card .video-thumbnail img {
        height: 150px;
    }
    
    .video-card .video-info {
        padding: 15px;
    }
    
    .video-card .video-info h3 {
        font-size: 16px;
    }
    
    .video-card .video-info p {
        font-size: 13px;
    }
}


/* Blog Section Styles */
.blog-section {
  padding: 80px 0;
}

.blog-section .blog-search .search-form .input-group {
  border-radius: 30px;
  overflow: hidden;
}

.blog-section .blog-search .search-form .input-group .form-control {
  height: 50px;
  padding: 0 20px;
  border: 1px solid #ddd;
}

.blog-section .blog-search .search-form .input-group .form-control:focus {
  box-shadow: none;
  border-color: #2c8a8a;
}

.blog-section .blog-search .search-form .input-group .btn {
  padding: 0 25px;
  height: 50px;
}

.blog-section .blog-categories h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.blog-section .blog-categories .categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-section .blog-categories .categories-list a {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-section .blog-categories .categories-list a.active,
.blog-section .blog-categories .categories-list a:hover {
  background-color: #2c8a8a;
  color: #fff;
}

.blog-section .blog-posts .blog-post {
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-section .blog-posts .blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-posts .blog-post .post-image {
  position: relative;
}

.blog-section .blog-posts .blog-post .post-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.blog-section .blog-posts .blog-post .post-image .post-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #2c8a8a;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
  line-height: 1;
}

.blog-section .blog-posts .blog-post .post-image .post-date .day {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.blog-section .blog-posts .blog-post .post-image .post-date .month {
  font-size: 14px;
  text-transform: uppercase;
}

.blog-section .blog-posts .blog-post .post-content {
  padding: 30px;
}

.blog-section .blog-posts .blog-post .post-content .post-meta {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: #6c757d;
}

.blog-section .blog-posts .blog-post .post-content .post-meta span {
  display: flex;
  align-items: center;
}

.blog-section .blog-posts .blog-post .post-content .post-meta span i {
  margin-right: 5px;
}

.blog-section .blog-posts .blog-post .post-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-section .blog-posts .blog-post .post-content h2 a {
  color: #333;
}

.blog-section .blog-posts .blog-post .post-content h2 a:hover {
  color: #2c8a8a;
}

.blog-section .blog-posts .blog-post .post-content p {
  margin-bottom: 20px;
}

.blog-section .blog-posts .blog-post .post-content .read-more {
  color: #2c8a8a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.blog-section .blog-posts .blog-post .post-content .read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-section .blog-posts .blog-post .post-content .read-more:hover i {
  transform: translateX(5px);
}

.blog-section .blog-sidebar .sidebar-widget {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.blog-section .blog-sidebar .sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.blog-section .blog-sidebar .sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #2c8a8a;
}

.blog-section .blog-sidebar .sidebar-widget.about-widget p {
  margin-bottom: 15px;
}

.blog-section .blog-sidebar .sidebar-widget.about-widget img {
  border-radius: 5px;
}

.blog-section .blog-sidebar .sidebar-widget.popular-posts .post-item {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.blog-section .blog-sidebar .sidebar-widget.popular-posts .post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-section .blog-sidebar .sidebar-widget.popular-posts .post-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}

.blog-section .blog-sidebar .sidebar-widget.popular-posts .post-item .post-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.blog-section .blog-sidebar .sidebar-widget.popular-posts .post-item .post-info h4 a {
  color: #333;
}

.blog-section .blog-sidebar .sidebar-widget.popular-posts .post-item .post-info h4 a:hover {
  color: #2c8a8a;
}

.blog-section .blog-sidebar .sidebar-widget.popular-posts .post-item .post-info span {
  font-size: 13px;
  color: #6c757d;
}

.blog-section .blog-sidebar .sidebar-widget.categories-widget ul {
  list-style: none;
  padding: 0;
}

.blog-section .blog-sidebar .sidebar-widget.categories-widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.blog-section .blog-sidebar .sidebar-widget.categories-widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-section .blog-sidebar .sidebar-widget.categories-widget ul li a {
  color: #333;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.blog-section .blog-sidebar .sidebar-widget.categories-widget ul li a:hover {
  color: #2c8a8a;
}

.blog-section .blog-sidebar .sidebar-widget.categories-widget ul li a:hover span {
  color: #2c8a8a;
}

.blog-section .blog-sidebar .sidebar-widget.categories-widget ul li a span {
  color: #6c757d;
  transition: all 0.3s ease;
}

.blog-section .blog-sidebar .sidebar-widget.tags-widget .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-section .blog-sidebar .sidebar-widget.tags-widget .tags a {
  display: inline-block;
  padding: 5px 15px;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 30px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.blog-section .blog-sidebar .sidebar-widget.tags-widget .tags a:hover {
  background-color: #2c8a8a;
  color: #fff;
}

.blog-section .blog-sidebar .sidebar-widget.newsletter-widget p {
  margin-bottom: 20px;
}

.blog-section .blog-sidebar .sidebar-widget.newsletter-widget .newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.blog-section .blog-sidebar .sidebar-widget.newsletter-widget .newsletter-form input:focus {
  outline: none;
  border-color: #2c8a8a;
}

.blog-section .blog-sidebar .sidebar-widget.newsletter-widget .newsletter-form button {
  width: 100%;
  padding: 12px;
  background-color: #2c8a8a;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-section .blog-sidebar .sidebar-widget.newsletter-widget .newsletter-form button:hover {
  background-color: #237373;
}

.blog-section .pagination .page-item {
  margin: 0 5px;
}

.blog-section .pagination .page-item .page-link {
  color: #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #f1f1f1;
}

.blog-section .pagination .page-item .page-link:hover {
  background-color: #2c8a8a;
  color: #fff;
}

.blog-section .pagination .page-item.active .page-link {
  background-color: #2c8a8a;
  color: #fff;
}

/* Single Blog Post Styles */
.blog-post-section {
  padding: 80px 0;
}

.blog-post-section .single-blog-post {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.blog-post-section .single-blog-post .post-image {
  position: relative;
}

.blog-post-section .single-blog-post .post-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog-post-section .single-blog-post .post-image .post-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #2c8a8a;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
  line-height: 1;
}

.blog-post-section .single-blog-post .post-image .post-date .day {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.blog-post-section .single-blog-post .post-image .post-date .month {
  font-size: 14px;
  text-transform: uppercase;
}

.blog-post-section .single-blog-post .post-meta {
  padding: 20px 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: #6c757d;
}

.blog-post-section .single-blog-post .post-meta span {
  display: flex;
  align-items: center;
}

.blog-post-section .single-blog-post .post-meta span i {
  margin-right: 5px;
}

.blog-post-section .single-blog-post h1 {
  font-size: 32px;
  margin: 20px 30px;
  line-height: 1.3;
}

.blog-post-section .single-blog-post .post-content {
  padding: 0 30px 30px;
}

.blog-post-section .single-blog-post .post-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
}

.blog-post-section .single-blog-post .post-content h2,
.blog-post-section .single-blog-post .post-content h3,
.blog-post-section .single-blog-post .post-content h4,
.blog-post-section .single-blog-post .post-content h5,
.blog-post-section .single-blog-post .post-content h6 {
  margin: 30px 0 20px;
  color: #333;
}

.blog-post-section .single-blog-post .post-content ul,
.blog-post-section .single-blog-post .post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-section .single-blog-post .post-content ul li,
.blog-post-section .single-blog-post .post-content ol li {
  margin-bottom: 10px;
}

.blog-post-section .single-blog-post .post-content .post-quote {
  margin: 30px 0;
  padding: 30px;
  background-color: rgba(44, 138, 138, 0.1);
  border-left: 4px solid #2c8a8a;
  border-radius: 5px;
}

.blog-post-section .single-blog-post .post-content .post-quote blockquote {
  margin: 0;
}

.blog-post-section .single-blog-post .post-content .post-quote blockquote p {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.blog-post-section .single-blog-post .post-content .post-quote blockquote footer {
  font-weight: 600;
  color: #2c8a8a;
}

.blog-post-section .single-blog-post .post-content .post-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.blog-post-section .single-blog-post .post-content .post-tags a {
  color: #2c8a8a;
  margin-right: 10px;
}

.blog-post-section .single-blog-post .post-content .post-tags a:hover {
  text-decoration: underline;
}

.blog-post-section .post-author {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  padding: 30px;
}

.blog-post-section .post-author .author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  flex-shrink: 0;
}

.blog-post-section .post-author .author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-section .post-author .author-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.blog-post-section .post-author .author-info span {
  display: block;
  color: #6c757d;
  margin-bottom: 15px;
  font-size: 14px;
}

.blog-post-section .post-author .author-info p {
  margin-bottom: 15px;
}

.blog-post-section .post-author .author-info .author-social a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background-color: #f1f1f1;
  color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.blog-post-section .post-author .author-info .author-social a:hover {
  background-color: #2c8a8a;
  color: #fff;
}

.blog-post-section .post-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-section .post-navigation .nav-previous,
.blog-post-section .post-navigation .nav-next {
  flex: 1;
  padding: 20px;
  transition: all 0.3s ease;
}

.blog-post-section .post-navigation .nav-previous:hover,
.blog-post-section .post-navigation .nav-next:hover {
  background-color: #f1f1f1;
}

.blog-post-section .post-navigation .nav-previous a,
.blog-post-section .post-navigation .nav-next a {
  display: block;
  color: #333;
}

.blog-post-section .post-navigation .nav-previous a span,
.blog-post-section .post-navigation .nav-next a span {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 5px;
}

.blog-post-section .post-navigation .nav-previous a h4,
.blog-post-section .post-navigation .nav-next a h4 {
  font-size: 16px;
  margin: 0;
}

.blog-post-section .post-navigation .nav-previous {
  border-right: 1px solid #eee;
}

.blog-post-section .related-posts {
  margin-bottom: 50px;
}

.blog-post-section .related-posts h3 {
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.blog-post-section .related-posts h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #2c8a8a;
}

.blog-post-section .related-posts .related-post {
  margin-bottom: 20px;
}

.blog-post-section .related-posts .related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.blog-post-section .related-posts .related-post img:hover {
  opacity: 0.8;
}

.blog-post-section .related-posts .related-post h4 {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.blog-post-section .related-posts .related-post h4 a {
  color: #333;
}

.blog-post-section .related-posts .related-post h4 a:hover {
  color: #2c8a8a;
}

.blog-post-section .related-posts .related-post span {
  font-size: 13px;
  color: #6c757d;
}

.blog-post-section .comments-section {
  margin-bottom: 50px;
}

.blog-post-section .comments-section h3 {
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.blog-post-section .comments-section h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #2c8a8a;
}

.blog-post-section .comments-section .comment-list .comment {
  display: flex;
  margin-bottom: 30px;
}

.blog-post-section .comments-section .comment-list .comment .comment-author {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

.blog-post-section .comments-section .comment-list .comment .comment-author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-section .comments-section .comment-list .comment .comment-content {
  flex: 1;
}

.blog-post-section .comments-section .comment-list .comment .comment-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.blog-post-section .comments-section .comment-list .comment .comment-content h4 span {
  font-size: 13px;
  color: #6c757d;
  font-weight: normal;
  margin-left: 10px;
}

.blog-post-section .comments-section .comment-list .comment .comment-content p {
  margin-bottom: 10px;
}

.blog-post-section .comments-section .comment-list .comment .comment-content .reply {
  color: #2c8a8a;
  font-size: 14px;
  font-weight: 600;
}

.blog-post-section .comments-section .comment-list .comment.reply {
  margin-left: 90px;
  margin-top: 30px;
}

.blog-post-section .comments-section .comment-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-section .comments-section .comment-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.blog-post-section .comments-section .comment-form .form-group {
  margin-bottom: 20px;
}

.blog-post-section .comments-section .comment-form .form-group .form-control {
  height: 45px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0 15px;
}

.blog-post-section .comments-section .comment-form .form-group .form-control:focus {
  box-shadow: none;
  border-color: #2c8a8a;
}

.blog-post-section .comments-section .comment-form .form-group textarea.form-control {
  height: auto;
  padding: 15px;
}

.blog-post-section .comments-section .comment-form .btn {
  padding: 12px 30px;
  font-weight: 600;
}

/* Responsive Styles for Blog */
@media (max-width: 1199.98px) {
  .blog-section .blog-posts .blog-post .post-content h2 {
    font-size: 22px;
  }
  
  .blog-post-section .single-blog-post h1 {
    font-size: 28px;
  }
}

@media (max-width: 991.98px) {
  .blog-section .blog-sidebar {
    margin-top: 50px;
  }
  
  .blog-post-section .post-author {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .blog-post-section .post-author .author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .blog-section .blog-posts .blog-post .post-image img {
    height: 300px;
  }
  
  .blog-post-section .single-blog-post .post-image img {
    height: 350px;
  }
  
  .blog-post-section .single-blog-post h1 {
    font-size: 24px;
    margin: 20px;
  }
  
  .blog-post-section .single-blog-post .post-content {
    padding: 0 20px 20px;
  }
  
  .blog-post-section .post-navigation {
    flex-direction: column;
  }
  
  .blog-post-section .post-navigation .nav-previous,
  .blog-post-section .post-navigation .nav-next {
    padding: 15px;
  }
  
  .blog-post-section .post-navigation .nav-previous a h4,
  .blog-post-section .post-navigation .nav-next a h4 {
    font-size: 14px;
  }
  
  .blog-post-section .post-navigation .nav-previous {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  
  .blog-post-section .comments-section .comment-list .comment.reply {
    margin-left: 40px;
  }
}

@media (max-width: 575.98px) {
  .blog-section .blog-posts .blog-post .post-image img {
    height: 250px;
  }
  
  .blog-section .blog-posts .blog-post .post-content {
    padding: 20px;
  }
  
  .blog-section .blog-posts .blog-post .post-content h2 {
    font-size: 20px;
  }
  
  .blog-post-section .single-blog-post .post-image img {
    height: 250px;
  }
  
  .blog-post-section .single-blog-post .post-meta {
    gap: 10px;
    font-size: 13px;
  }
  
  .blog-post-section .comments-section .comment-list .comment {
    flex-direction: column;
  }
  
  .blog-post-section .comments-section .comment-list .comment .comment-author {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .blog-post-section .comments-section .comment-list .comment.reply {
    margin-left: 20px;
  }
}