:root{
  --blue:#126f6f;
  --green:#5fb848;
  --dark:#16345b;
  --light:#eef4fb;
    --primary-blue:#126f6f;
            --light-blue: #eef4fb;
            --accent-green: #6bcf4a;
            --text-dark: #333;
            --dark:#126f6f;
            --light: #eef4fb;
}


/* TOPBAR */
.topbar {
    background: #126f6f;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}
.topbar a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

/* HEADER */
.main-header {
    background: #fff;
    transition: all 0.3s ease;
    z-index: 999;
}

.main-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* NAV LINKS */
.navbar .nav-link {
    font-weight: 600;
    color: #333;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #1f4fd8;
}

/* BUTTONS */
.btn-buyer {
    background: #1f4fd8;
    color: #fff;
    border-radius: 30px;
    padding: 6px 18px;
}
.btn-seller {
    background: #6bcf4a;
    color: #fff;
    border-radius: 30px;
    padding: 6px 18px;
}


.section-title{
  font-weight:700;
}

.btn-primary-custom{
  background:var(--green);
  color:#fff;
  border:none;
  padding:10px 25px;
  border-radius:30px;
}

.bg-light-blue{ background:var(--light); }

.work-box{
  background:#fff;
  padding:30px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.work-box i{
  font-size:40px;
  color:var(--green);
  margin-bottom:15px;
}

.footer-section{
  background:var(--dark);
  color:#fff;
  padding:60px 0 20px;
}

.footer-section a{ color:#ddd; text-decoration:none; }
.footer-section ul{ list-style:none; padding:0; }

.social-icons a{
  display:inline-block;
  margin-right:10px;
  font-size:18px;
  color:#fff;
}


/* services section */
.services-section{
  background:#fff;
}

.service-card{
  padding:35px;
  border-radius:18px;
  color:#fff;
  height:100%;
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
  transition:.4s ease;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-card i{
  font-size:42px;
  margin-bottom:18px;
}

.service-card h5{
  font-weight:600;
}

.service-card p{
  font-size:15px;
  opacity:.95;
}

/* Color Themes */
.service-card.green{
  background:#5fb848;
}

.service-card.blue{
  background:#1f4fa3;
}

.service-card.sky{
  background:#4aa6d4;
}



/* counter section css */

.counter-box{
  text-align:center;
  padding:35px 20px;
  border-radius:20px;
  background:#fff;
  border:1px solid #f3d2c8;
  box-shadow:0 12px 25px rgba(0,0,0,0.06);
  transition:.4s ease;
}

.counter-box:hover{
  transform:translateY(-6px);
}

.counter-box i{
  font-size:42px;
  color:#5fb848; /* logo green */
  margin-bottom:15px;
}

.counter-box h2 {
  font-size: 34px;
  font-weight: 700;
  color: #126f6f;
}
.counter-box p{
  margin:0;
  font-weight:500;
  color:#333;
}

.counter-box p{
  margin-top:6px;
  font-weight:600;
  color:#1c2b4a;
  font-size:15px;
  text-transform:capitalize;
}
.organ-icon{
  width:48px;
  height:48px;
  fill:#5fb848; /* logo green */
  margin-bottom:12px;
}

.counter-box:hover .organ-icon{
  fill:#1f4fa3; /* logo blue on hover */
}

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
        }

        /* Header & Nav */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand img {
            width: 100px;
        }

        .nav-link {
            font-weight: 500;
            color: #555 !important;
            margin: 0 10px;
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
            border-bottom: 2px solid var(--primary-blue);
        }

        .btn-buyer {
            background: var(--primary-blue);
            color: white;
            border-radius: 50px;
            padding: 8px 25px;
            margin-right: 10px;
        }

        .btn-seller {
            background: var(--accent-green);
            color: white;
            border-radius: 50px;
            padding: 8px 25px;
            
        }
.btn.btn-seller.shadow-sm {
  text-transform: uppercase;
}
        /* Hero Section */
      

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: #1a3a5f;
            margin-bottom: 20px;
        }

        .hero-btns .btn {
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            margin: 10px;
        }

        /* Hero Slider Styles */
        .hero-section {
            padding: 120px 0;
            background-size: cover;
            background-position: center;
            min-height: 580px;
            display: flex;
            align-items: center;
            text-align: center;
        }

        /* Custom Navigation on Right Side */
        .custom-nav {
            position: absolute;
            right: 50px;
            bottom: 50px;
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .custom-nav button {
            background: var(--primary-blue);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .custom-nav button:hover {
            background: var(--accent-green);
            transform: scale(1.1);
        }

        /* Hide default Owl dots if needed */
        .owl-theme .owl-dots {
            position: absolute;
            bottom: 20px;
            width: 100%;
        }

        /* Service Cards */
        .service-card {
            border: none;
            border-radius: 15px;
            color: white;
            padding: 30px;
            height: 100%;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .bg-green {
            background-color: #68bd45;
        }

        .bg-blue {
            background-color: #2b5998;
        }

        .bg-cyan {
            background-color: #46a6d4;
        }

        /* Steps */
        .step-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .step-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        /* Footer */
        footer {
            background: #1a3a5f;
            color: white;
            padding: 40px 0 20px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            margin-right: 15px;
            font-size: 0.9rem;
        }

        .hero-slider-wrapper {
            overflow: hidden;
        }

        .hero-slide {
            height: 80vh;
            /* Banner Height */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }

        .min-vh-75 {
            min-height: 75vh;
        }

        /* Navigation Arrows Positioned Right */
        .slider-nav-container {
            position: absolute;
            right: 50px;
            bottom: 50px;
            z-index: 99;
            display: flex;
            gap: 15px;
        }

        .slider-nav-container button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.8);
            background: transparent;
            color: white;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .slider-nav-container button:hover {
            background: #68bd45;
            /* Green Theme Color */
            border-color: #68bd45;
            transform: scale(1.1);
        }

        /* Animation for Text */
        .owl-item.active h1 {
            animation: fadeInUp 0.8s both;
        }

        .owl-item.active p {
            animation: fadeInUp 1s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        .organ-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            border: 2px solid #fde5df;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .organ-card:hover {
            transform: translateY(-6px);
        }
        .about-img img {
  border: 10px solid var(--light);
  outline: 1px solid #ddd;
  border-radius: 20px 0;
  height: 400px;
  width: 100%;
  object-fit: cover;
}
.shadow{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.counter-section {
  background-size: cover;
}

.about-us p {
    line-height: 1.7;
    color: #555;
}
.section-title span {
    color: var(--blue);
    margin-left: 10px;
}
.list-group-item {
    padding-left: 0;
}

.boxabt {
  padding: 15px;
  border-radius: 5px;
}
.list-group-item .organ-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0px;
}


.contact-us p {
  line-height: 1.7;
}
.contact-us .card {
  border-radius: 12px;
}

.text-primary{
  color: var(--primary-blue)!important;
}
.btn-primary{
  background-color: var(--primary-blue)!important;
}


.dropdown-item {
  padding: 10px 18px;
  font-size: 14px;
}

.dropdown-item i {
  color: #116e6e;
}

.dropdown-item:hover {
  background: #f1f5ff;
}
 html,
body {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
}
* { margin: 0; padding: 0; } 
/* DESKTOP HOVER DROPDOWN */
@media (min-width: 992px) {

  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-hover .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    margin-top: 12px;
    border-radius: 10px;
    border: 0;
    min-width: 220px;
  }

  .dropdown-hover:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}
.dropdown-icon {
  font-size: 12px;
  transition: 0.3s ease;
  color: #555;
}

.nav-link:hover .dropdown-icon {
  color: #0d6efd;
}
input:focus, select:focus{
  box-shadow: none!important;
}
input, select{
  padding: 10px!important;
}


/* team section css */
.team-section {
    padding: 80px 0;
    background: #f9fafc;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.team-card {
    background: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card span {
    color: #777;
    font-size: 14px;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    transition: 0.3s;
}

.team-social a:hover {
    background: #000;
}


/* testimonial section css */
.testimonial-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
  width: 80px !important;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 13px;
    color: #777;
}
.topbar .d-flex {
  display: flex;
}
.footer-section h5 {
  font-weight: 600;
}

.breadcrumb.container {
  margin-bottom: 0;
  padding: 10px 0;
}
.bredcrumb-section {
  background: #6bcf4a;
  color: #fff;
}
.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb-item.active {
  color: rgb(31, 79, 216);
}

.about-section.py-5 .section-title {
  text-align: left;
}

/* blog css */
:root{
  --primary:#0f766e;
  --secondary:#22c55e;
  --light:#f1f5f9;
  --dark:#0f172a;
}

body{
  font-family: 'Segoe UI', sans-serif;
  background:#fff;
}

.page-header{
  background: linear-gradient(90deg,#e0f2f1,#f0fdfa);
  padding:60px 0;
}

.page-header h1{
  color:var(--primary);
  font-weight:700;
}

.blog-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:.4s;
}

.blog-card:hover{
  transform:translateY(-8px);
}

.blog-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.blog-content{
  padding:20px;
}

.blog-date{
  font-size:14px;
  color:var(--secondary);
}

.blog-content h5{
  margin:10px 0;
  color:var(--dark);
  font-weight:600;
}

.btn-theme{
  background:var(--secondary);
  color:#fff;
  border-radius:30px;
  padding:8px 22px;
  font-size:14px;
}

.btn-theme:hover{
  background:var(--primary);
  color:#fff;
}

        :root {
            --primary: #0f766e;
            --secondary: #22c55e;
            --light: #f1f5f9;
            --dark: #0f172a;
        }

        /* Blog Header */
        .blog-title {
            font-size: 42px;
            font-weight: 700;
            color: #1e3a8a;
        }

        .blog-meta {
            font-size: 14px;
            color: #64748b;
        }

        .blog-meta i {
            color: var(--secondary);
        }

        /* Content */
        .blog-content img {
            width: 100%;
            border-radius: 16px;
            margin: 25px 0;
        }

        .blog-content p {
            line-height: 1.9;
            color: #334155;
            margin-bottom: 18px;
        }

        /* Sidebar */
        .sidebar-box {
            background: #fff;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
            margin-bottom: 30px;
        }

        .sidebar-box h5 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
        }

        .sidebar-box h5::after {
            content: '';
            width: 40px;
            height: 3px;
            background: var(--secondary);
            display: block;
            margin-top: 8px;
        }

        .recent-post {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .recent-post img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 10px;
        }

        .recent-post a {
            font-size: 14px;
            font-weight: 600;
            color: #0f172a;
            text-decoration: none;
        }

        .recent-post span {
            font-size: 12px;
            color: #64748b;
        }

        /* Categories */
        .category-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed #e5e7eb;
        }

        /* Tags */
        .tag-list a {
            display: inline-block;
            background: #e2e8f0;
            padding: 6px 14px;
            font-size: 13px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #0f172a;
        }

        /* Comments */
        .comment-box {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .comment-box img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }

        .comment-box h6 {
            margin: 0;
            font-weight: 600;
        }

        /* Form */
        .form-control {
            border-radius: 10px;
            padding: 12px;
        }

        .btn-theme {
            background: var(--primary);
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
        }


        .hero-sectionone {
    height: 60vh;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url("../images/Lung_banner.jpg");
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 3rem;
}

.hero-section p {
    max-width: 600px;
    margin: auto;
}

.donation-list,
.bank-list {
    list-style: none;
    padding: 0;
}

.donation-list li,
.bank-list li {
    margin-bottom: 15px;
}

.text-brown {
    color: #8b5a2b;
}
.bank-list i {
  padding-right: 5px;
}
.donation-list li strong {
  display: inline-block;
  width: 10%;
}

.donation-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}
.bank-list li strong {
  padding-right: 50px;
  display: inline-block;
  width: 30%;
}
.donation-box .btn.active {
    background: #f3f3f3;
    border-color: #ddd;
}
.donation-type {
    display: flex;
    background: #f6f6f6;
    padding: 4px;
    border-radius: 8px;
}

.donation-type input[type="radio"] {
    display: none;
}

.donation-type label {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.donation-type input[type="radio"]:checked + label {
    background: #ffffff;
    box-shadow: 0 0 0 1px #ddd;
}
.badge.bg-warning.mb-3 {
background: var(--accent-green);
  padding: 10px;
}
/* Currency dropdown */
.currency-select {
    width: 100px;
    border-radius: 8px;
}

/* Amount radio buttons */
.donation-amount input[type="radio"] {
    display: none;
}

.donation-amount label {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.25s ease;
    background: #fff;
}

/* Active state */
.donation-amount input[type="radio"]:checked + label {
    background: #efe9df;
    border-color: #efe9df;
   color: #126f6f;
}

/* Hover */
.donation-amount label:hover {
    border-color: #ccc;
}

/* Custom amount input */
.custom-amount {
    padding: 14px;
    border-radius: 10px;
}


.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}