/* ============================= */
/* ROOT COLORS */
/* ============================= */
:root {
    --primary-green: #1fae66;
    --primary-blue: #007bb5;
    --accent-orange: #f26522;
    --text-dark: #1e293b;
    --bg-light: #f8fafc;
    --glass: rgba(255,255,255,0.85);
}
/* Remove default bullets */
.dropdown-menu-custom {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

/* Parent nav item */
.nav-item {
    position: relative;
    list-style: none;
}

/* Hide dropdown initially */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
    z-index: 999;
}

/* Show on hover */
.nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu-custom li {
    list-style: none;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 18px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.3s ease;
}

/* Hover effect */
.dropdown-menu-custom li a:hover {
    background: linear-gradient(90deg, #0077b6, #2ecc71);
    color: #fff;
}

/* Nav link */
.nav-link {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
}

.nav-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 991px) {

    .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background: #f9f9f9;
    }

    .nav-item.active .dropdown-menu-custom {
        display: block;
    }
}

/* ============================= */
/* GLOBAL RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: var(--bg-light);
}

/* ============================= */
/* NAVBAR MAIN */
/* ============================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================= */
/* LOGO */
/* ============================= */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 65px;
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
}

/* ============================= */
/* NAV MENU */
/* ============================= */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(31,174,102,0.1);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* ============================= */
/* DROPDOWN */
/* ============================= */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    min-width: 230px;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: none;
    animation: fadeIn 0.3s ease;
    border: 1px solid #f1f5f9;
}

.dropdown.active .dropdown-menu {
    display: block;
}

/* Desktop hover */
@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: rgba(0,123,181,0.1);
    color: var(--primary-blue);
    padding-left: 20px;
}

/* ============================= */
/* ACTION BUTTONS */
/* ============================= */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.apply-btn {
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.apply-btn:hover {
    background: var(--accent-orange);
    color: white;
}

.donate-btn {
    background: linear-gradient(135deg, var(--primary-green), #2ed573);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(31,174,102,0.2);
    transition: 0.3s;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(31,174,102,0.3);
}

/* ============================= */
/* MOBILE MENU */
/* ============================= */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-green);
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */
@media (max-width: 1024px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 5%;
        width: 90%;
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        border: none;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .apply-btn,
    .donate-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================= */
/* ANIMATION */
/* ============================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   ECO LOADER PREMIUM CSS
============================ */

#ecoLoader{
    position:fixed;
    inset:0;
    background:linear-gradient(135deg,#ffffff,#f1f9f4);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:opacity 0.6s ease;
}

.loader-content{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    width:90%;
    max-width:400px;
}

/* ============================
   LOGO WRAPPER
============================ */

.logo-wrapper{
    position:relative;
    display:inline-block;
}

.loader-logo{
    width:120px;
    height:auto;
    animation:logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

/* ============================
   FLOATING ICONS
============================ */

.floating-icons{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    pointer-events:none;
}

.icon{
    font-size:22px;
    color:#2ecc71;
    animation:float 3s infinite ease-in-out;
    opacity:0.8;
}

.icon:nth-child(2){
    animation-delay:0.5s;
}

.icon:nth-child(3){
    animation-delay:1s;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}
}

/* ============================
   TEXT AREA
============================ */

.text-area{
    margin-top:20px;
}

.loader-brand{
    font-size:1.4rem;
    font-weight:700;
    color:#1b4332;
}

.loader-tagline{
    font-size:0.9rem;
    color:#555;
    margin-top:5px;
    letter-spacing:1px;
}

/* ============================
   LOADING BAR
============================ */

.loading-bar{
    width:100%;
    max-width:260px;
    height:6px;
    background:#e0e0e0;
    border-radius:20px;
    margin-top:25px;
    overflow:hidden;
}

.loading-fill{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#2ecc71,#1b4332);
    border-radius:20px;
    animation:loading 2s forwards;
}

@keyframes loading{
    0%{width:0%;}
    100%{width:100%;}
}

/* ============================
   RESPONSIVE DESIGN
============================ */

@media(max-width:768px){

    .loader-logo{
        width:90px;
    }

    .icon{
        font-size:18px;
    }

    .loader-brand{
        font-size:1.1rem;
    }

    .loader-tagline{
        font-size:0.8rem;
    }

    .loading-bar{
        max-width:200px;
        height:5px;
    }
}

@media(max-width:480px){

    .loader-logo{
        width:75px;
    }

    .loader-brand{
        font-size:1rem;
    }

    .icon{
        font-size:16px;
    }

    .loading-bar{
        max-width:160px;
    }
}

/* ===== FOOTER DESIGN ===== */
/* ===== Designed By ZDC ===== */
.eco-footer {
    padding: 60px 0 0 0;
}

.design-credit {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
}

.design-credit a {
    text-decoration: none;
    font-weight: bold;
    background: linear-gradient(45deg, #2ecc71, #00c3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    transition: 0.4s ease;
}

/* Underline Animation */
.design-credit a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #2ecc71;
    transition: 0.4s ease;
}

/* Hover Effect */
.design-credit a:hover {
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.7);
}

.design-credit a:hover::after {
    width: 100%;
}

.eco-footer {
    background: linear-gradient(135deg, #0f3d2e, #005f73);
    color: #ffffff;
    padding-top: 60px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #2ecc71;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cce6ff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #2ecc71;
    padding-left: 5px;
}

/* Newsletter */
.newsletter {
    margin-top: 15px;
    display: flex;
    gap: 8px;
}

.newsletter input {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.newsletter button {
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    background: #2ecc71;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #27ae60;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: white;
    color: #005f73;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #2ecc71;
    color: white;
    transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: rgba(0,0,0,0.2);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-container {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter {
        flex-direction: column;
    }

    .newsletter button {
        width: 100%;
    }
}


/* ===============================
   ECORISE PREMIUM SLIDER
================================ */

.eco-slider{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

.slides{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 0.8s ease-in-out;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(60%);
}

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    text-align:center;
    background:rgba(0,0,0,0.4);
    padding:40px 60px;
    border-radius:20px;
    backdrop-filter:blur(8px);
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
    animation:fadeUp 1s ease;
}

.slide-content h2{
    font-size:42px;
    font-weight:700;
    letter-spacing:1px;
}

/* Navigation */
.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,0.2);
    border:none;
    padding:15px 20px;
    font-size:22px;
    color:#fff;
    cursor:pointer;
    border-radius:50%;
    transition:0.4s;
    backdrop-filter:blur(6px);
}

.nav:hover{
    background:#2e7d32;
}

.prev{ left:20px; }
.next{ right:20px; }

/* Dots */
.dots{
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
}

.dots span{
    display:inline-block;
    width:12px;
    height:12px;
    margin:0 6px;
    background:#ccc;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
}

.dots span.active{
    background:#2e7d32;
    transform:scale(1.3);
}

/* Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translate(-50%,-40%);
    }
    to{
        opacity:1;
        transform:translate(-50%,-50%);
    }
}

/* Responsive */

@media(max-width:992px){
    .slide-content h2{
        font-size:32px;
    }
}

@media(max-width:768px){
    .eco-slider{
        height:70vh;
    }
    .slide-content{
        padding:25px 30px;
    }
    .slide-content h2{
        font-size:24px;
    }
}

@media(max-width:480px){
    .slide-content{
        width:90%;
        padding:20px;
    }
    .nav{
        padding:10px 14px;
        font-size:18px;
    }
}

.donate-btn{
    display:inline-block;
    padding:14px 35px;
    background:linear-gradient(45deg,#2e7d32,#4caf50);
    color:#fff;
    font-weight:600;
    text-decoration:none;
    border-radius:30px;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(76,175,80,0.4);
}

.donate-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(76,175,80,0.6);
    background:linear-gradient(45deg,#ef6c00,#ff9800);
}


/* ============================= */
/* PREMIUM ABOUT SECTION THEME */
/* ============================= */
.about-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Image Side Styling --- */
.about-image-side {
    flex: 1;
    position: relative;
}

.image-box {
    position: relative;
    z-index: 2;
}

.image-box img {
    width: 100%;
    border-radius: 40px 100px 40px 40px; /* Unique Premium Curve */
    box-shadow: 25px 25px 50px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
}

.image-backdrop {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: #e6f3ed; /* Light Eco Green */
    border-radius: 40px 100px 40px 40px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #e67e22; /* Logo Orange */
    color: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.3);
    animation: float 4s ease-in-out infinite;
}

.badge-content .num {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
}

.badge-content .lab {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Text Side Styling --- */
.about-text-side {
    flex: 1.2;
}

.section-tag {
    color: #2ecc71;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.about-title {
    font-size: 3rem;
    color: #1b4332;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9fbf9;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.f-icon {
    font-size: 1.8rem;
    color: #27ae60;
}

.f-text h4 {
    color: #1b4332;
    margin-bottom: 2px;
}

.f-text p {
    font-size: 0.85rem;
    color: #777;
}

/* Premium Button */
.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1b4332;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.2);
}

.premium-btn:hover {
    background: #e67e22; /* Hover to Logo Orange */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================= */
/* RESPONSIVE FIXES */
/* ============================= */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    
    .about-image-side {
        width: 80%;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        justify-content: center;
    }

    .experience-badge {
        right: 10px;
        padding: 20px;
    }
}


/* ===============================
   PREMIUM SERVICES SECTION
================================ */

.premium-services{
    padding:100px 20px;
    background:linear-gradient(135deg,#f0f9f6,#e6f2ff);
    position:relative;
}

.premium-services .container{
    max-width:1200px;
    margin:auto;
}

/* Section Heading */

.section-head{
    text-align:center;
    margin-bottom:60px;
}

.top-tag{
    display:inline-block;
    background:linear-gradient(45deg,#2ecc71,#00c3ff);
    color:#fff;
    padding:6px 18px;
    border-radius:30px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-head h2{
    font-size:38px;
    font-weight:700;
    background:linear-gradient(45deg,#1b4332,#0077b6);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:15px;
}

.section-sub{
    color:#555;
    font-size:16px;
}

/* Grid Layout */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* Card Design */

.s-card{
    background:#ffffff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

/* Blue Accent Border */
.s-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#2ecc71,#0077b6);
}

.s-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* Featured Card */

.s-card.featured{
    background:linear-gradient(135deg,#1b4332,#0077b6);
    color:#fff;
}

.s-card.featured p{
    color:#e0f7ff;
}

.s-card.featured::before{
    background:#fff;
}

/* Icon */

.s-icon{
    font-size:45px;
    margin-bottom:20px;
    color:#2ecc71;
    transition:0.4s;
}

.s-card.featured .s-icon{
    color:#fff;
}

.s-card:hover .s-icon{
    transform:scale(1.2) rotate(5deg);
}

/* Heading */

.s-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.s-card p{
    font-size:15px;
    color:#666;
    margin-bottom:25px;
    line-height:1.6;
}

/* Buttons */

.s-donate{
    display:inline-block;
    padding:10px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    background:linear-gradient(45deg,#2ecc71,#00c3ff);
    color:#fff;
    transition:0.4s ease;
    box-shadow:0 8px 20px rgba(0,195,255,0.3);
}

.s-donate:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,195,255,0.5);
}

/* Alternate Button */

.alt-btn{
    background:linear-gradient(45deg,#ff9800,#ff5722);
    box-shadow:0 8px 20px rgba(255,87,34,0.3);
}

.alt-btn:hover{
    box-shadow:0 12px 30px rgba(255,87,34,0.5);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

@media(max-width:992px){
    .section-head h2{
        font-size:30px;
    }
}

@media(max-width:768px){
    .premium-services{
        padding:70px 15px;
    }

    .section-head h2{
        font-size:26px;
    }

    .s-card{
        padding:30px 20px;
    }
}

@media(max-width:480px){
    .section-head h2{
        font-size:22px;
    }

    .top-tag{
        font-size:12px;
        padding:5px 14px;
    }

    .s-donate{
        padding:8px 18px;
        font-size:14px;
    }
}

/* ============================= */
/* PREMIUM SERVICES SECTION FIX */
/* ============================= */
.premium-services {
    padding: 80px 0;
    background-color: var(--e-bg);
    font-family: 'Poppins', sans-serif;
}

/* Container for Alignment */
.premium-services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 40px;
    align-items: center;
}

/* --- Section Header (Left Side) --- */
.section-head {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.section-head .top-tag {
    background: linear-gradient(90deg, #2ecc71, #00c3ff);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 2.8rem;
    color: var(--e-green);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-head p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- Services Grid (Right Side) --- */
.services-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

/* Card Styling */
.s-card {
    background: var(--e-white);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.s-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Featured Card (Center/Special) */
.s-card.featured {
    background: var(--e-green);
    color: white;
}

.s-card.featured h3 { color: white; }
.s-card.featured p { color: #b7e4c7; }

/* Icons */
.s-icon {
    font-size: 3rem;
    color: var(--e-accent);
    margin-bottom: 20px;
}

.s-card.featured .s-icon {
    color: var(--e-orange);
}

.s-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--e-green);
}

.s-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* --- Donate Button Fix --- */
.s-donate {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 2px solid var(--e-accent);
    color: var(--e-accent);
}

.s-donate:hover {
    background: var(--e-accent);
    color: white;
}

/* Orange Button Style */
.s-donate.orange {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border: none;
    color: white;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.s-donate.orange:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
}

/* ============================= */
/* RESPONSIVE MEDIA QUERIES */
/* ============================= */
@media (max-width: 1024px) {
    .premium-services .container {
        flex-direction: column;
        text-align: center;
    }
    .section-head {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .section-head h2 {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .s-card {
        padding: 30px 20px;
    }
}

/* --- Services Grid Adjustment for 4 Cards --- */
.services-grid {
    display: grid;
    /* desktop par 4 columns, tablet par 2, mobile par 1 */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px;
    width: 100%;
    margin-top: 40px;
}

/* Featured Card Improvement */
.s-card.featured {
    background: #1b4332; /* Your Logo Green */
    color: white;
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.2);
}

/* Extra Hover Effect for 4th Card */
.s-card:nth-child(4) .s-icon {
    color: #3498db; /* Recyclable Blue Theme */
}


/* ============================= */
/* IMPACT SECTION PREMIUM STYLES */
/* ============================= */
/* =========================================
   IMPACT SECTION - CORRECTED LAYOUT
   ========================================= */

/* ================================
   OUR IMPACT STORIES SECTION
=================================*/

:root{
    --green: #16a34a;
    --blue: #0ea5e9;
    --dark: #1e293b;
    --light: #64748b;
}

/* ===== Heading ===== */

h1.fw-bold{
    font-size: 42px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

h1.fw-bold::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 5px;
    transition: 0.4s;
}

h1.fw-bold:hover::after{
    width: 100%;
}

/* ===== Container Styling ===== */

.container.my-5{
    background: linear-gradient(135deg, #e6f9f0, #e0f2fe) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

/* ===== Impact Item Card ===== */

.impact-item{
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Top Gradient Border Animation */
.impact-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    transition: 0.4s ease;
}

.impact-item:hover::before{
    left: 0;
}

.impact-item:hover{
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

/* Numbers */
.impact-item h4{
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    transition: 0.4s;
}

.impact-item:hover h4{
    transform: scale(1.1);
}

/* Description */
.impact-item p{
    font-size: 14px;
    color: var(--light);
    line-height: 1.6;
}

/* ===== Responsive ===== */

@media (max-width: 992px){
    h1.fw-bold{
        font-size: 32px;
    }
}

@media (max-width: 576px){
    h1.fw-bold{
        font-size: 26px;
    }

    .impact-item{
        padding: 25px 20px;
    }
}

/* ================================
   DYNAMIC GALLERY SECTION
=================================*/

:root{
    --green: #16a34a;
    --blue: #0ea5e9;
    --dark: #1e293b;
    --light: #64748b;
}

.gallery-section{
    padding: 100px 0;
     background: url('gallerybackground.jpg');
     border: 2px solid blue;

}

/* Heading */
.gallery-heading h2{
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-heading p{
    color: var(--light);
    max-width: 650px;
    margin: 15px auto 50px;
}

/* Card */
.gallery-card{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border: 2px solid blue;
}

.gallery-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Image */
.gallery-img{
    height: 250px;
    overflow: hidden;
}

.gallery-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-card:hover img{
    transform: scale(1.1);
}

/* Content */
.gallery-content{
    padding: 25px;
    text-align: center;
}

.gallery-content h4{
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.gallery-content p{
    font-size: 14px;
    color: var(--light);
    margin-bottom: 20px;
}

/* Button */
.story-btn{
    background: linear-gradient(90deg, var(--green), var(--blue));
    border: none;
    padding: 10px 22px;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.4s;
}

.story-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Modal */
.story-modal{
    border-radius: 20px;
}

.story-modal .modal-header{
    background: linear-gradient(90deg, var(--green), var(--blue));
    color: #fff;
}

/* Responsive */
@media (max-width: 768px){
    .gallery-heading h2{
        font-size: 28px;
    }

    .gallery-img{
        height: 200px;
    }
}

.activity-section {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    /* नीचे वाली लाइन में अपनी इमेज का पाथ डालें */    
    background-attachment: fixed;
    color: #ffffff; /* बैकग्राउंड गहरा है इसलिए टेक्स्ट सफेद रखा है */
     }

/* Header Styles */
.sub-title {
    color: green;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.main-heading {
    font-size: 42px;
    font-weight: 800;
    color: blue;
    margin-top: 10px;
}

.highlight {
    color: green;
}

.section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Card Styles */
.premium-card {
    background: #fff;
    border-radius: 25px; /* इमेज की तरह राउंडेड कॉर्नर्स */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-img-box {
    height: 250px;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border: 2px solid blue;
}

.premium-card:hover .card-img-box img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: left;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b1d33;
    margin-bottom: 12px;
}

.card-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Show More Button */
.show-more-btn {
    background: transparent;
    border: 2px solid blue;
    color: blue;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s all;
    text-transform: uppercase;
}

.show-more-btn:hover {
    background: green;
    color: blue;
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.4);
}

/* Responsive Logic */
@media (max-width: 768px) {
    .main-heading { font-size: 32px; }
    .card-img-box { height: 200px; }
}

.cta-impact-section {
    padding: 100px 0;
    /* Blue-Green Premium Gradient */
    background: linear-gradient(135deg, #0b1d33 0%, #0a4d3c 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 2px solid blue;
}

/* Background Pattern (Optional) */
.cta-impact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.green-text {
    color: #28a745; /* Light Green */
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Button Styles */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    position: relative;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
}

/* Donate Button Colors */
.btn-donate {
    background: #ff8800; /* Orange-Gold for urgency */
    color: #fff;
    border: 2px solid #ff8800;
}

/* Volunteer Button Colors */
.btn-volunteer {
    background: transparent;
    color: #fff;
    border: 2px solid #28a745;
}

/* Heart Icon Styling */
.heart-icon {
    position: absolute;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
    pointer-events: none;
}

/* Hover Effects */
.btn-cta:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-volunteer:hover {
    background: #28a745;
}

/* Heart Shape Animation on Hover */
.btn-cta:hover .heart-icon {
    opacity: 1;
    transform: scale(1.5) rotate(-15deg);
    color: #fff;
    /* दिल की पोजीशन बटन के बीच में */
    position: relative;
    margin-left: 10px;
    opacity: 1;
    transform: scale(1);
}

.btn-text {
    z-index: 3;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
    .btn-cta {
        width: 100%;
        padding: 12px 30px;
    }
}


/* Fonts and Colors */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&display=swap');

.official-certificates {
    background-color: #fcfdfe;
    font-family: 'Montserrat', sans-serif;
}

.title-dark {
    font-size: 34px;
    font-weight: 800;
    color: #1a2b3c;
}

.text-blue { color: #004a99; }

.green-divider {
    width: 50px;
    height: 4px;
    background: #28a745;
    margin: 10px auto;
    border-radius: 5px;
}

/* Certificate Wrapper */
.cert-wrapper {
    text-align: center;
    padding: 10px;
}

.cert-card-premium {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px; /* Modern Rounded Look */
    padding: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Hover Effect as per your Image */
.cert-hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(40, 167, 69, 0.85); /* Green Transparent Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.cert-card-premium:hover {
    border-color: #28a745;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
    transform: translateY(-5px);
}

.cert-card-premium:hover .cert-hover-overlay {
    opacity: 1;
}

.view-large-link {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
}

.view-large-link i {
    display: block;
    font-size: 30px;
    margin-bottom: 5px;
}

.view-large-link span {
    font-size: 18px;
    text-transform: uppercase;
}

/* Label Below Card */
.cert-label h4 {
    margin-top: 20px;
    font-size: 18px;
    color: #1a2b3c;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .cert-card-premium { height: 220px; }
    .title-dark { font-size: 26px; }
}

/* ===== Awards Section ===== */

.awards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fffd, #e6f7ff);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .sub-title {
    display: inline-block;
    background: rgba(0, 168, 150, 0.1);
    color: #00a896;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0;
    background: linear-gradient(90deg, #00a896, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    max-width: 600px;
    margin: auto;
    color: #555;
}

/* ===== Grid ===== */

/* ===============================
   AWARDS SECTION
=================================*/

.awards-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e6f7f1, #e3f2fd);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.award-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
}

.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.4);
}

/* Image */
.award-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #00b894, #0984e3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.award-card:hover .award-img img {
    transform: scale(1.1);
}

/* Default Icon */
.default-icon {
    font-size: 70px;
    color: #fff;
}

/* Content */
.award-content {
    padding: 25px;
    text-align: center;
}

.year {
    display: inline-block;
    background: linear-gradient(90deg, #00b894, #0984e3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.award-content h3 {
    font-size: 20px;
    color: #0a3d62;
    font-weight: 600;
}

/* ===============================
   IMAGE POPUP MODAL
=================================*/

.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(6px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 80vh;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 184, 148, 0.6);
    animation: zoomIn 0.4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #00e6a8;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #0984e3;
}

@keyframes zoomIn {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media(max-width:768px){
    .awards-section {
        padding: 50px 15px;
    }
    .modal-content {
        max-width: 95%;
    }
}

/* ===============================
   NGO PARTNERS ICON SECTION
=================================*/

.partners-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e6f7f1, #e3f2fd);
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.sub-title {
    display: inline-block;
    background: linear-gradient(90deg, #00b894, #0984e3);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0a3d62;
}

.section-header p {
    color: #555;
    max-width: 600px;
    margin: auto;
}

/* Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* Card */
.partner-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.35);
}

/* Icon */
.partner-card i {
    font-size: 50px;
    background: linear-gradient(135deg, #00b894, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    transition: 0.4s;
}

.partner-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Title */
.partner-card h4 {
    font-size: 18px;
    color: #0a3d62;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .partner-card {
        padding: 30px 15px;
    }
}

