@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/*==========================
Google Font
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    /*transition:none !important;*/
    font-family:'Poppins',sans-serif;
}

body{
    background: #F8F8F0 !important;
    color:#222;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/*==========================
Container
===========================*/
/* ================================
   KARTAVYYA HEADER
================================ */

header {
    width: 100%;
    background: #ffffff;
    position: fixed;
    z-index: 9999;
    border-bottom: 1px solid rgba(72, 89, 33, 0.12);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Header Container */
header .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 82px;

    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ================================
   LOGO
================================ */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    white-space: nowrap;

    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    width: 48px;
    height: 48px;

    object-fit: contain;
    border-radius: 50%;

    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: rotate(-5deg) scale(1.06);
}

.logo h2 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.3px;
}


/* ================================
   NAVIGATION
================================ */

header nav {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 1;
}

header nav ul {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 38px;
}

header nav ul li {
    display: flex;
    align-items: center;
}

header nav ul li a {
    position: relative;

    display: flex;
    align-items: center;

    height: 82px;

    color: #242222;
    text-decoration: none;

    font-size: 20px;
    font-weight: 600;

    transition: color 0.3s ease;
}


/* Underline Animation */

header nav ul li a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 20px;

    width: 0;
    height: 2px;

    background: #485921;
    border-radius: 10px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}

header nav ul li a:hover {
    color: #485921;
}

header nav ul li a:hover::after {
    width: 70%;
}


/* ================================
   JOIN US BUTTON
================================ */

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 44px;

    padding: 0 22px;

    background: #485921;
    color: #ffffff !important;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 5px 15px rgba(72, 89, 33, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.header-btn:hover {
    background: #394719;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(72, 89, 33, 0.30);
}


/* ================================
   HAMBURGER
================================ */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: #485921;
    border-radius: 5px;

    transition: all 0.3s ease;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 991px) {

    header .container {
        min-height: 72px;
        padding: 0 20px;
    }

    .logo img {
        width: 42px;
        height: 42px;
    }

    .logo h2 {
        font-size: 22px;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .header-btn {
        display: none;
    }

    header nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        display: none;

        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

        border-top: 1px solid rgba(72, 89, 33, 0.08);
    }

    header nav.active {
        display: block;

        animation: menuSlide 0.3s ease forwards;
    }

    header nav ul {
        width: 100%;

        flex-direction: column;

        gap: 0;

        padding: 10px 20px 15px;
    }

    header nav ul li {
        width: 100%;
    }

    header nav ul li a {
        width: 100%;
        height: auto;

        padding: 14px 10px;

        justify-content: center;

        font-size: 15px;
    }

    header nav ul li a::after {
        bottom: 7px;
    }

    header nav ul li a:hover::after {
        width: 50px;
    }
}


/* ================================
   HAMBURGER ANIMATION
================================ */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================================
   MENU SLIDE ANIMATION
================================ */

@keyframes menuSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 576px) {

    header .container {
        min-height: 68px;
        padding: 0 15px;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .logo h2 {
        font-size: 20px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}

/*==========================
Hero
===========================*/

.hero{

    padding-top:10px;

    padding-bottom:80px;

}

.hero-content{

    text-align:center;

    max-width:1200px;

    margin:auto;

}

.hero-content h1{

    font-size:72px;

    color:#1d3557;

    margin-bottom:20px;

    font-weight:800;

}

.hero-content p{

    font-size:28px;

    color:#1fa36b;

    margin-bottom:35px;

    font-weight:500;

}
.hero-content p.hero-msg{
    padding:0 20px;
    font-family: 'Poppins', sans-serif;

    font-size:28px;

    color:#2b2e2d;

    margin-bottom:35px;

    font-weight:500;

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#485921;

    color:#fff;

    padding:18px 35px;

    border-radius:60px;

    transition:.3s;

    font-size:18px;

    font-weight:600;

}

.hero-btn:hover{

    background:#394719;

    transform:translateY(-4px);

}

.hero-btn i{

    transition:.3s;

}

.hero-btn:hover i{

    transform:translateX(8px);

}

/* ==========================
   Hamburger button (mobile only)
=========================== */

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:space-between;
    width:28px;
    height:20px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;
    z-index:1001;
}

.menu-toggle span{
    display:block;
    height:3px;
    width:100%;
    background:#1f3a68;
    border-radius:2px;
}

/* ==========================
   Mobile Responsive
=========================== */

@media (max-width: 768px){

    header{
        top:10px;
    }

    header .container{
        padding:14px 20px;
        border-radius:30px;
        flex-wrap:wrap;
        position: relative;   /* 👈 add karo */
    }

    .logo img{
        width:45px;
        height:45px;
    }

    .logo h2{
        font-size:22px;
    }

    .menu-toggle{
        display:flex;
    }

    nav{
        display:none;
        position: absolute;      /* 👈 badla */
        top: calc(100% + 10px);
        right: 0;
        width: auto;              /* 👈 badla */
        min-width: 200px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 10px 35px rgba(0,0,0,.12);
        order:3;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        align-items:flex-end;    
        text-align:left;          
        gap:18px;
        padding:20px 25px 15px;
    }


    .header-btn{
        display:none;
    }

    .hero{
        padding-top:120px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-content p.hero-msg{
        font-size:16px;
        padding:0 10px;
    }

    .hero-btn{
        padding:14px 24px;
        font-size:15px;
    }
}

@media (max-width: 400px){
    .logo h2{
        font-size:18px;
    }

    .hero-content h1{
        font-size:30px;
    }
}
/*==========================
 HERO IMAGE SLIDER
===========================*/

.hero-slider{
    width:100%;
    padding: 0;
    margin: 0;
}

.slider-wrapper{

    width:100%;
     max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Floating Logo */

.slider-logo{

    position:absolute;
    left:70px;
    top:-55px;
    z-index:100;
}

.slider-logo img{

    width:100px;
    height:100px;
    border-radius:50%;
    padding:8px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}
homeCarousel{

    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

#homeCarousel img{

    width:100%;
    height:750px;
    object-fit:cover;
}

/* Indicators */

.carousel-indicators [data-bs-target]{

    width:12px;
    height:12px;
    border-radius:50%;
}

/* Responsive */

@media(max-width:991px){

    #homeCarousel img{

        height:380px;
    }

    .slider-logo{

        left:25px;
        top:-35px;
    }

    .slider-logo img{

        width:75px;
        height:75px;
    }

}

@media(max-width:991px){
    #homeCarousel img{
        width: 100%;
        height: 380px;
        object-fit: cover;
    }
    .slider-logo{ left: 25px; top: 20px; z-index: 10; }
    .slider-logo img{ width: 75px; height: 75px; object-fit: contain; }
}

@media(max-width:576px){
    #homeCarousel img{
        width: 100%;
        height: 240px;
        object-fit: cover;
    }
    .slider-wrapper{ width: 100%; max-width: 100%; margin: 0; padding: 0; }
    .slider-logo{ left: 20px; top: -28px; z-index: 10; }
    .slider-logo img{ width: 75px; height: 75px; object-fit: contain; }
}
/*==========================
        Impact Section
===========================*/

.impact-section{

    padding:35px 0;

    background:linear-gradient(135deg,#ff7b00,#ff4d4d);

    color:#fff;
}

.impact-heading{

    text-align:center;

    margin-bottom:20px;
}

.impact-heading span{

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#FFE082;
}

.impact-heading h2{

    font-size:48px;

    margin:15px 0;

    font-weight:700;
}

.impact-heading p{

    max-width:700px;

    margin:auto;

    opacity:.9;
}

.impact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.impact-card{

    text-align:center;
}

.impact-icon{

    width:120px;

    height:120px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    border:6px solid rgba(255,255,255,.25);

    margin-bottom:25px;

    transition:.4s;
}

.recycle{

    border-color:#ffb3d9;
}

.drive{

    border-color:#9ecbff;
}

.people{

    border-color:#7fffd4;
}

.award{

    border-color:#ffe56b;
}

.impact-card:hover .impact-icon{

    transform:rotate(360deg) scale(1.08);
}

.impact-card h3{

    font-size:56px;

    font-weight:700;

    margin-bottom:10px;
}

.impact-card p{

    font-size:18px;
}

@media(max-width:991px){

.impact-grid{

    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.impact-grid{

    grid-template-columns:1fr;
}

.impact-heading h2{

    font-size:36px;
}

}/* =========================
   Drives Section
========================= */

.drives-section{
    padding:120px 0;
    background:transparent;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#222;
}

.section-title p{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/* =========================
   Drive Cards
========================= */

.drives-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.drive-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.drive-img{
    position:relative;
    width:100%;
    height:260px;
    overflow:hidden;
}

.drive-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.drive-date {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 52px;
    height: 60px;

    background: #fff;
    border-radius: 9px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.drive-date h3 {
    font-size: 22px;
    line-height: 1;
    color: #0b7a63;
    margin: 0 0 3px 0;
}

.drive-date span {
    font-size: 11px;
    line-height: 1;
    color: #666;
}
.drive-content{
    padding:25px;
}

.drive-content h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.drive-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.drive-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 12px 28px;

    background: #485921;
    color: #fff;

    border-radius: 50px;
    text-decoration: none;

    font-weight: 600;

    margin-top: auto;

    transition: all 0.3s ease;
}

.drive-btn:hover {
    background: #394719;
    color: #fff;
    transform: translateY(-3px);
}

#awardModal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

#awardModal .modal-header {
    background: #f8f8f0;
    border-bottom: 1px solid #e3e4d8;
    padding: 20px 25px;
}

#awardModal .modal-title {
    color: #292d26;
    font-weight: 700;
}

#awardModal .modal-body {
    padding: 25px;
}

.award-modal-image {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.award-modal-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

#awardModalTitle {
    color: #292d26;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

#awardModalDescription {
    color: #4f544c;
    font-size: 16px;
    line-height: 1.7;
    white-space: pre-line;
}

.read-more-btn {
    background: #96953f;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: #2e7d32 !important;
    opacity: 0.8;
}

/* =========================
   Modal
========================= */

.modal-content{
    border-radius:20px;
    overflow:hidden;
}

.drive-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:30px;
}

.drive-gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.drive-details{
    padding:30px;
}

.drive-details h4{
    font-size:30px;
    margin-bottom:15px;
}

.drive-details p{
    color:#666;
    line-height:1.8;
}

.drive-info{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:25px;
}

.drive-info div{
    background:#f8f9fa;
    padding:20px;
    border-radius:12px;
    text-align:center;
}

.drive-info strong{
    display:block;
    color:#0b7a63;
    margin-bottom:8px;
}

/* =========================
   Responsive
========================= */

@media(max-width:992px){

    .drives-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .drive-info{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .section-title h2{
        font-size:38px;
    }

    .drives-grid{
        grid-template-columns:1fr;
    }

    .drive-gallery{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .drive-gallery{
        grid-template-columns:1fr;
    }

    .drive-info{
        grid-template-columns:1fr;
    }

}   
/*==========================
        AWARDS
===========================*/

.awards-section{
    padding:10px 0;
    background:transparent;
}

.awards-section .container{
    width:90%;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#666;
}

.awards-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;
}
.award-card {
    
    width: 100%;
    min-height: 430px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}


/* IMAGE */
.award-image {
     width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    overflow: visible;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* TROPHY CIRCLE */
.award-image::after {
    content: "🏆";

    position: absolute;

    width: 44px;
    height: 44px;

    left: 50%;
    bottom: -22px;

    transform: translateX(-50%);

    background: #5e8c45;

    border: 4px solid #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    z-index: 20;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}


/* CONTENT */
.award-content {
    text-align: center;

    padding: 34px 14px 16px;

    position: relative;
    z-index: 5;

    background: #fff;
}


/* TITLE */
.award-content h3 {
    font-size: 14px;
    line-height: 1.35;

    color: #16213E;

    margin: 0 auto 10px;

    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    max-width: 95%;
}


/* DESCRIPTION HIDE */
.award-desc {
    display: none !important;
}


/* READ MORE */
.read-more-btn {
    background: none !important;
    border: none !important;

    color: #2e7d32 !important;

    font-size: 12px;
    font-weight: 600;

    padding: 2px 0;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 4px;

    transition: transform 0.3s ease;
}

.read-more-btn::after {
    content: "→";
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: #2e7d32 !important;
    background: none !important;
    border: none !important;

    transform: translateX(3px);
}

@media (max-width: 576px) {

    .awards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .award-card {
        width: 100%;
        border-radius: 18px;
    }

    .award-image {
        width: 100%;
        height: 150px;
    }

    .award-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .award-image::after {
        width: 40px;
        height: 40px;
        bottom: -20px;
        font-size: 16px;
    }

    .award-content {
        padding: 28px 10px 15px;
    }

    .award-content h3 {
        font-size: 14px;
        line-height: 1.35;

        -webkit-line-clamp: 2;

        margin-bottom: 8px;
    }

    .read-more-btn {
        font-size: 12px;
        white-space: nowrap;
    }
}
/*==========================
        ABOUT SECTION
===========================*/

.about-section{

    padding:200px 0;
    padding-bottom: 40px;   
    margin-bottom: 0;
    background:transparent;

}
.about-text{
    font-size:18px;
    line-height:1.5;
    color:#555;
}

.about-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;

}

.about-image{

    flex:1;
}

.about-image img{

    width:100%;
    height:520px;
    object-fit:cover;

    border-radius:18px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.about-content{

    flex:1;

}

.section-tag{

    display:inline-block;

    background:#485921;

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:18px;

}

.about-content h2{

    font-size:48px;

    font-weight:700;

    color:#222;

    margin-bottom:25px;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:#666;

    margin-bottom:20px;

}

.about-btn{

    display:inline-block;

    margin-top:15px;

    padding:14px 35px;

    background:#0b7a68;

    color:#fff;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    background:#095f51;

    color:#fff;

    transform:translateY(-3px);

}

/*==========================
      Responsive
===========================*/

@media(max-width:891px){

.about-wrapper{

flex-direction:column;

}

.about-image img{

height:380px;

}

.about-content{

text-align:center;

}

.about-content h2{

font-size:38px;

}

}

@media(max-width:576px){

.about-section{

padding-top:120px; padding-bottom:40px;

}

.about-content h2{

font-size:30px;

}

.about-content p{

font-size:16px;

}

.about-image img{

height:280px;

}

}

/*=========================
      MISSION SECTION
==========================*/

.mission-section{

    padding:40px 0;

    background:transparent;

}

.mission-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    flex-wrap:wrap;

}

.mission-content{

    flex:1;

}

.mission-image{

    flex:1;

}

.mission-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.mission-content h2{

    font-size:46px;

    font-weight:700;

    margin:20px 0;

    color:#222;

}

.mission-content p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}

.mission-list{

    list-style:none;

    padding:0;

    margin:30px 0;

}

.mission-list li{

    margin-bottom:16px;

    font-size:17px;

    color:#333;

}

.mission-list i{

    color:#0b7a68;

    margin-right:10px;

}

.mission-btn{

    display:inline-block;

    padding:14px 35px;

    background:#0b7a68;

    color:#fff;

    text-decoration:none;

    border-radius:35px;

    font-weight:600;

    transition:.3s;

}

.mission-btn:hover{

    background:#095f51;

    color:#fff;

    transform:translateY(-3px);

}

/* Responsive */

@media(max-width:991px){

.mission-wrapper{

flex-direction:column-reverse;

}

.mission-content{

text-align:center;

}

.mission-image img{

height:350px;

}

}

@media(max-width:576px){

.mission-section{

padding:70px 0;

}

.mission-content h2{

font-size:32px;

}

.mission-content p{

font-size:16px;

}

}

/*=====================
        FOOTER
======================*/

.footer {
    background:#485921;

    color: #fff;
}

/* Newsletter */

.newsletter{

    max-width:1200px;

    margin:auto;

    padding:50px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    border-bottom:1px solid rgba(255,255,255,.1);
}

.newsletter-left h2{

    font-size:42px;

    margin-bottom:10px;
}

.newsletter-left p{

    color:#ddd;

    font-size:18px;
}

.newsletter-form{

    display:flex;

    gap:15px;
}

.newsletter-form input{

    width:420px;

    padding:18px 25px;

    border:none;

    border-radius:50px;

    font-size:17px;

    outline:none;
}

.newsletter-form button{

    padding:18px 40px;

    border:none;

    border-radius:50px;

    background:#485921;

    color:#fff;

    cursor:pointer;

    font-size:17px;

    transition:.3s;
}

.newsletter-form button:hover{

    background:#394719;
}

/* Footer */

.footer-content{

    max-width:1200px;

    margin:auto;

    padding:60px 20px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.4fr;

    gap:60px;
}

.footer-logo{

    width:90px;

    margin-bottom:20px;
}

.footer-box p{

    line-height:1.8;

    color:#ddd;

    margin-bottom:20px;
}

.footer-box h3{

    margin-bottom:25px;

    font-size:28px;
}

.footer-box ul{

    list-style:none;
}

.footer-box ul li{

    margin-bottom:18px;
}

.footer-box ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;
}

.footer-box ul li a:hover{

    color:#15b58f;

    padding-left:5px;
}

.footer-box i{

    margin-right:12px;

    color:#15b58f;
}

.social-icons{

    margin-top:20px;

    display:flex;

    gap:15px;
}

.social-icons a{

    width:42px;

    height:42px;

    background: transparent;

    border-radius:80%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.social-icons a:hover{

    background: transparent;
}

.copyright{

     background:#3f501c;

    text-align:center;

    padding:18px;

    font-size:17px;
}

/* Responsive */

@media(max-width:992px){

.newsletter{

    flex-direction:column;

    text-align:center;
}

.newsletter-form{

    flex-direction:column;

    width:100%;
}

.newsletter-form input{

    width:100%;
}

.footer-content{

    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.footer-content{

    grid-template-columns:1fr;

    text-align:center;
}

.social-icons{

    justify-content:center;
}

.newsletter-left h2{

    font-size:34px;
}

}
nav[role="navigation"] svg{
    display: none;
}

nav[role="navigation"] p{
    display: none;
}

.pagination{
    justify-content:center;
    margin-top:40px;
}

.page-link{
    color:#198754;
    border-radius:8px;
    margin:0 5px;
}

.page-item.active .page-link{
    background:#198754;
    border-color:#198754;
}

.page-link:hover{
    color:#fff;
    background:#198754;
}

/* =======================
        Volunteer Section
   ======================= */


.volunteer-section {
    margin-top: 120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 5%;
}

.content {
  flex: 1 1 400px;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.content:hover {
  transform: translateY(-5px);
}

.content h2 {
  color: #2e7d32;
  font-size: 30px;
  margin-bottom: 15px;
}

.content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  background: #F8F8F0;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  color: #1b5e20;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-container {
  flex: 1 1 400px;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease;
}

.form-container:hover {
  transform: translateY(-5px);
}

.form-container h3 {
  color: #ff9800;
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 6px rgba(46, 125, 50, 0.3);
  outline: none;
}

form button {
  background: linear-gradient(90deg, #485921, #394719);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

form button:hover {
  background: linear-gradient(90deg, #1b5e20, #2e7d32);
  transform: scale(1.05);
}

/* 🌍 Responsive Design */
@media (max-width: 768px) {
  .volunteer-section {
    flex-direction: column;
    align-items: stretch;     /* 👈 add kiya - dono boxes ko full same width tak stretch karega */
    padding: 40px 20px;
  }

  .content, .form-container {
    flex: 1 1 100%;
    width: 100%;               /* 👈 add kiya - explicit same width */
    box-sizing: border-box;    /* 👈 add kiya - padding width ke andar hi rahe */
    margin: 0 auto;             /* 👈 add kiya - center rahe, koi asymmetric margin na ho */
  }

  .content h2 {
    font-size: 26px;
  }

  .form-container h3 {
    font-size: 22px;
  }
}
.page-section {
    background: #F8F8F0 !important;
}

.form-container input.form-control,
.form-container select.form-control,
.form-container select.form-select,
.form-container textarea.form-control {
    background: #F8F8F0;
    border: 1px solid #a5d6a7;
}

html {
    background: #F8F8F0;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container textarea {
    background: #F8F8F0;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
}

.about-text {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
}

.about-content .read-more-btn {
    background: none;
    border: none;
    color: #0b7a68;
    font-weight: 600;
    font-size: 16px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    display: inline-block;
}


.about-content {
    margin-top: -70px;
}

@media (max-width: 768px) {
    .about-image {
        width: 100%;
        padding: 0 15px;
    }
    .about-image img {
        width: 100%;
        border-radius: 14px;
    }
}

/* Award Read More */
.award-desc{
    display: none !important;
}

.award-desc.expanded{
    display:block;
    -webkit-line-clamp:unset;
}

.read-more-btn{
    background:none;
    border:none;
    color:#2e7d32;
    font-weight:600;
    cursor:pointer;
    padding:4px 0;
    font-size:14px;
}

/* Susnability */
.sustainability-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sustainability-header {
    text-align: center;
    margin-bottom: 50px;
}

.sustainability-header h1 {
    font-size: 36px;
    color: #1b4332;
    margin-bottom: 15px;
    font-weight: 700;
}

.sustainability-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    padding: 15px 20px;
    font-size: 18px;
    color: #222;
    text-align: center;
}

@media (max-width: 600px) {
    .sustainability-header h1 {
        font-size: 28px;
    }
}



html,
body {
    margin: 0 !important;
    padding: 0 !important;
}


/* Header always at the very top */
header {
    position: fixed !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;

    width: 100% !important;
    height: 82px !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 99999 !important;

    background: #ffffff !important;
}


/* Header inner */
header .container {
    height: 82px !important;

    margin: 0 auto !important;

    padding: 0 35px !important;

    display: flex;
    align-items: center;
}


/* Content header ke neeche se start ho */
main,
.page-section,
.volunteer-section {
    margin-top: 0 !important;
}


/* Fixed header ke liye content ko neeche shift karo */
body {
    padding-top: 82px !important;
}


/* Mobile */
@media (max-width: 991px) {

    header {
        height: 72px !important;
    }

    header .container {
        height: 72px !important;
    }

    body {
        padding-top: 72px !important;
    }
}


@media (max-width: 576px) {

    header {
        height: 68px !important;
    }

    header .container {
        height: 68px !important;
    }

    body {
        padding-top: 68px !important;
    }
}

/* ============================================================
   KARTAVYYA PREMIUM ANIMATION + MOBILE RESPONSIVE ENHANCEMENT
   ============================================================ */


/* ============================================================
   1. HERO SECTION
   ============================================================ */

.hero {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
}


/* Soft background glow */

.hero::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    left: -180px;
    top: 80px;

    background: radial-gradient(
        circle,
        rgba(31,163,107,0.10) 0%,
        rgba(31,163,107,0.04) 45%,
        transparent 72%
    );

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    animation: heroGlowLeft 7s ease-in-out infinite;
}


/* Right glow */

.hero::after {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    bottom: -150px;

    background: radial-gradient(
        circle,
        rgba(255,123,0,0.10) 0%,
        rgba(255,77,77,0.04) 45%,
        transparent 72%
    );

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    animation: heroGlowRight 8s ease-in-out infinite;
}


/* ============================================================
   2. HERO CONTENT ANIMATION
   ============================================================ */

.hero-content {
    position: relative !important;
    z-index: 5;

    animation: heroContentIn 1s ease-out both;
}


/* Kartavyya heading */

.hero-content h1 {

    animation:
        heroTitleIn 1s cubic-bezier(.22,.61,.36,1) both,
        heroTitleFloat 5s ease-in-out 1.2s infinite;

    text-shadow:
        0 4px 18px rgba(72,89,33,0.08);
}


/* Tagline */

.hero-content p {

    animation:
        heroTaglineIn 1s ease-out .25s both;

}


/* Main message */

.hero-content p.hero-msg {

    animation:
        heroMessageIn 1s ease-out .45s both;

}


/* Button */

.hero-btn {

    animation:
        heroButtonIn .9s ease-out .65s both;

    box-shadow:
        0 10px 25px rgba(31,163,107,.18);

}


/* Button subtle floating */

.hero-btn:hover {

    box-shadow:
        0 15px 30px rgba(31,163,107,.25);

}


/* ============================================================
   3. ENVIRONMENTAL BACKGROUND ICONS
   ============================================================ */


/*
   Left floating recycling icon
*/

..hero-content {
    position: relative;
}


/* =========================
   Common Floating Object
========================= */

.hero-float {
    position: absolute;

    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 50px;

    color: rgba(31,163,107,.14);

    border: 2px solid rgba(31,163,107,.10);

    border-radius: 50%;

    background: rgba(255,255,255,.25);

    backdrop-filter: blur(2px);

    pointer-events: none;

    z-index: 1;
}


/* =========================
   Recycle
========================= */

.hero-float.recycle {

    left: -210px;
    top: 40px;

    animation:
        floatingRecycle 6s ease-in-out infinite;
}


/* =========================
   Waste Bin
========================= */

.hero-float.waste {

    right: -180px;
    top: 20px;

    font-size: 45px;

    animation:
        floatingWaste 7s ease-in-out infinite;
}


/* =========================
   Broom
========================= */

.hero-float.broom {

    left: -150px;
    bottom: 20px;

    font-size: 48px;

    animation:
        floatingBroom 5.5s ease-in-out infinite;
}


/* =========================
   Waste Bag
========================= */

.hero-float.bag {

    right: -130px;
    bottom: 50px;

    font-size: 45px;

    animation:
        floatingBag 6.5s ease-in-out infinite;
}




/* ============================================================
   4. MORE BACKGROUND DECORATION
   ============================================================ */


/*
   We use the hero heading itself to create tiny decorative
   particles around the heading.
*/

.hero-content h1::before {

    content: "✦";

    position: absolute;

    left: -80px;
    top: 5px;

    font-size: 30px;

    color: rgba(255,123,0,.35);

    animation:
        sparkleOne 3s ease-in-out infinite;

    pointer-events: none;

}


.hero-content h1::after {

    content: "✦";

    position: absolute;

    right: -80px;
    bottom: 5px;

    font-size: 24px;

    color: rgba(31,163,107,.35);

    animation:
        sparkleTwo 4s ease-in-out infinite;

    pointer-events: none;

}


/* ============================================================
   5. IMPACT SECTION ANIMATION
   ============================================================ */

.impact-section {

    position: relative;

    overflow: hidden;

}


/*
   Floating background circles
*/

.impact-section::before {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.10);

    left: -100px;
    top: 20px;

    animation:
        impactCircle 8s linear infinite;

    pointer-events: none;

}


.impact-section::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    right: -160px;
    bottom: -150px;

    animation:
        impactCircleReverse 10s linear infinite;

    pointer-events: none;

}


.impact-card {

    position: relative;

    z-index: 2;

    animation:
        impactCardIn .8s ease-out both;

}


.impact-card:nth-child(1) {
    animation-delay: .10s;
}

.impact-card:nth-child(2) {
    animation-delay: .20s;
}

.impact-card:nth-child(3) {
    animation-delay: .30s;
}

.impact-card:nth-child(4) {
    animation-delay: .40s;
}


/*
   Existing icon animation ko properly activate karo
*/

.impact-icon {

    transition:
        transform .5s ease,
        box-shadow .5s ease !important;

}


.impact-card:hover .impact-icon {

    transform:
        rotate(360deg)
        scale(1.08);

    box-shadow:
        0 0 25px rgba(255,255,255,.18);

}


/* ============================================================
   6. CLEANING DRIVE CARDS
   ============================================================ */

.drives-section {

    position: relative;

    overflow: hidden;

}


/*
   Section heading animation
*/

.drives-section .section-title {

    animation:
        sectionTitleIn .9s ease-out both;

}


.drives-grid .drive-card {

    opacity: 0;

    animation:
        driveCardIn .8s ease-out forwards;

}


/*
   Stagger effect
*/

.drives-grid .drive-card:nth-child(1) {
    animation-delay: .10s;
}

.drives-grid .drive-card:nth-child(2) {
    animation-delay: .20s;
}

.drives-grid .drive-card:nth-child(3) {
    animation-delay: .30s;
}

.drives-grid .drive-card:nth-child(4) {
    animation-delay: .40s;
}

.drives-grid .drive-card:nth-child(5) {
    animation-delay: .50s;
}

.drives-grid .drive-card:nth-child(6) {
    animation-delay: .60s;
}


/*
   Existing card hover ko smooth karo
*/

.drive-card {

    transition:
        transform .35s ease,
        box-shadow .35s ease !important;

}


.drive-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0,0,0,.13);

}


/*
   Drive image zoom
*/

.drive-img {

    overflow: hidden;

}


.drive-img img {

    transition:
        transform .6s ease !important;

}


.drive-card:hover .drive-img img {

    transform:
        scale(1.06);

}


/* ============================================================
   7. AWARDS SECTION
   ============================================================ */

.awards-section {

    position: relative;

    overflow: hidden;

}


/*
   Awards heading
*/

.awards-section .section-title {

    animation:
        sectionTitleIn .9s ease-out both;

}


/*
   Existing award card animation
*/

.award-card {

    opacity: 0;

    animation:
        awardCardIn .8s ease-out forwards;

    transition:
        transform .35s ease,
        box-shadow .35s ease !important;

}


/*
   Stagger
*/

.awards-grid .award-card:nth-child(1) {

    animation-delay: .10s;

}


.awards-grid .award-card:nth-child(2) {

    animation-delay: .25s;

}


.awards-grid .award-card:nth-child(3) {

    animation-delay: .40s;

}


.awards-grid .award-card:nth-child(4) {

    animation-delay: .55s;

}


.awards-grid .award-card:nth-child(5) {

    animation-delay: .70s;

}


.awards-grid .award-card:nth-child(6) {

    animation-delay: .85s;

}


/*
   Award hover
*/

.award-card:hover {

    transform:
        translateY(-10px)
        scale(1.015) !important;

    box-shadow:
        0 18px 35px rgba(0,0,0,.13) !important;

}


/*
   Award image zoom
*/

.award-image {

    overflow: hidden !important;

}


.award-image img {

    transition:
        transform .6s ease !important;

}


.award-card:hover .award-image img {

    transform:
        scale(1.06);

}


/*
   Trophy icon animation
*/

.award-image {
    position: relative;
    overflow: visible !important;
}

.award-image::after {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);

    z-index: 10;
}
.award-card:hover .award-image::after {

    transform:
        translateX(-50%)
        rotate(15deg)
        scale(1.12);

    box-shadow:
        0 6px 18px rgba(0,0,0,.25);

}


/* ============================================================
   8. ABOUT SECTION
   ============================================================ */

.about-section {

    position: relative;

    overflow: hidden;

}


.about-image img {

    transition:
        transform .6s ease,
        box-shadow .6s ease !important;

}


.about-image:hover img {

    transform:
        scale(1.025);

    box-shadow:
        0 25px 50px rgba(0,0,0,.16);

}


.about-content {

    animation:
        aboutContentIn .9s ease-out both;

}


/* ============================================================
   9. MISSION SECTION
   ============================================================ */

.mission-section {

    position: relative;

    overflow: hidden;

}


.mission-image img {

    transition:
        transform .6s ease,
        box-shadow .6s ease !important;

}


.mission-image:hover img {

    transform:
        scale(1.025);

    box-shadow:
        0 25px 50px rgba(0,0,0,.16);

}


.mission-content {

    animation:
        missionContentIn .9s ease-out both;

}


/* ============================================================
   10. VOLUNTEER SECTION
   ============================================================ */

.volunteer-section {

    position: relative;

}


.content,
.form-container {

    transition:
        transform .35s ease,
        box-shadow .35s ease !important;

}


.content:hover,
.form-container:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);

}


/* ============================================================
   11. FOOTER
   ============================================================ */

.footer-box {

    transition:
        transform .3s ease !important;

}


.footer-box:hover {

    transform:
        translateY(-4px);

}


.social-icons a {

    transition:
        transform .3s ease,
        background .3s ease !important;

}


.social-icons a:hover {

    transform:
        translateY(-5px)
        rotate(5deg);

}


/* ============================================================
   12. BUTTONS
   ============================================================ */

.hero-btn,
.about-btn,
.mission-btn,
.drive-btn,
.header-btn {

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease !important;

}


.hero-btn:hover,
.about-btn:hover,
.mission-btn:hover,
.drive-btn:hover {

    transform:
        translateY(-4px);

}


/* ============================================================
   13. KEYFRAMES
   ============================================================ */


/* Hero */

@keyframes heroContentIn {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes heroTitleIn {

    from {

        opacity: 0;

        transform:
            translateY(-30px)
            scale(.95);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


@keyframes heroTitleFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-5px);

    }

}


@keyframes heroTaglineIn {

    from {

        opacity: 0;

        transform:
            translateY(20px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes heroMessageIn {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes heroButtonIn {

    from {

        opacity: 0;

        transform:
            translateY(25px)
            scale(.95);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* Hero glows */

@keyframes heroGlowLeft {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(1);

    }

    50% {

        transform:
            translate(40px,20px)
            scale(1.1);

    }

}


@keyframes heroGlowRight {

    0%,
    100% {

        transform:
            translate(0,0)
            scale(1);

    }

    50% {

        transform:
            translate(-35px,-20px)
            scale(1.08);

    }

}


/* Floating icons */

@keyframes floatingRecycle {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(-5deg);

    }

    50% {

        transform:
            translateY(-18px)
            rotate(8deg);

    }

}


@keyframes floatingLeaf {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(20px)
            rotate(12deg);

    }

}


/* Sparkles */

@keyframes sparkleOne {

    0%,
    100% {

        opacity: .25;

        transform:
            scale(.8)
            rotate(0deg);

    }

    50% {

        opacity: .8;

        transform:
            scale(1.15)
            rotate(90deg);

    }

}


@keyframes sparkleTwo {

    0%,
    100% {

        opacity: .25;

        transform:
            scale(.8)
            rotate(0deg);

    }

    50% {

        opacity: .8;

        transform:
            scale(1.2)
            rotate(-90deg);

    }

}


/* Impact */

@keyframes impactCircle {

    from {

        transform:
            rotate(0deg)
            scale(1);

    }

    to {

        transform:
            rotate(360deg)
            scale(1.08);

    }

}


@keyframes impactCircleReverse {

    from {

        transform:
            rotate(360deg)
            scale(1);

    }

    to {

        transform:
            rotate(0deg)
            scale(1.08);

    }

}


@keyframes impactCardIn {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* Section heading */

@keyframes sectionTitleIn {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* Drives */

@keyframes driveCardIn {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* Awards */

@keyframes awardCardIn {

    from {

        opacity: 0;

        transform:
            translateY(40px)
            scale(.97);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* About */

@keyframes aboutContentIn {

    from {

        opacity: 0;

        transform:
            translateX(35px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* Mission */

@keyframes missionContentIn {

    from {

        opacity: 0;

        transform:
            translateX(-35px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* ============================================================
   14. TABLET RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {

    .hero-content {

        max-width: 90%;

    }


    .hero-content h1 {

        font-size: 55px;

    }


    .hero-content p {

        font-size: 22px;

    }


    .hero-content p.hero-msg {

        font-size: 21px;

    }


    /*
       Background icons smaller
    */

    .hero-content::before {

        left: -100px;

        top: 20px;

        width: 70px;

        height: 70px;

        font-size: 40px;

    }


    .hero-content::after {

        right: -90px;

        top: 80px;

        width: 65px;

        height: 65px;

        font-size: 35px;

    }


    .hero-content h1::before {

        left: -45px;

    }


    .hero-content h1::after {

        right: -45px;

    }


    .awards-grid {

        gap: 25px;

    }


    .award-card {

        min-height: 400px;

    }


    .drive-img {

        height: 240px;

    }

}


/* ============================================================
   15. MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {

    /*
       Hero
    */

    .hero {

        padding-top: 105px !important;

        padding-bottom: 55px !important;

    }


    .hero-content {

        width: 100%;

        max-width: 100%;

        padding: 0 18px;

    }


    .hero-content h1 {

        font-size: 40px !important;

        line-height: 1.15;

        margin-bottom: 14px;

    }


    .hero-content p {

        font-size: 18px !important;

        line-height: 1.5;

        margin-bottom: 20px;

    }


    .hero-content p.hero-msg {

        font-size: 16px !important;

        line-height: 1.7;

        padding: 0 5px;

        margin-bottom: 25px;

    }


    .hero-btn {

        padding: 13px 22px;

        font-size: 15px;

    }


    /*
       Background icons
    */

    .hero-content::before {

        left: -15px;

        top: 20px;

        width: 55px;

        height: 55px;

        font-size: 30px;

        opacity: .8;

    }


    .hero-content::after {

        right: -15px;

        top: 90px;

        width: 55px;

        height: 55px;

        font-size: 28px;

        opacity: .8;

    }


    .hero-content h1::before {

        left: 0;

        top: -35px;

        font-size: 20px;

    }


    .hero-content h1::after {

        right: 0;

        bottom: -25px;

        font-size: 18px;

    }


    /*
       Impact
    */

    .impact-section {

        padding: 45px 15px;

    }


    .impact-heading h2 {

        font-size: 32px !important;

    }


    .impact-heading p {

        font-size: 14px;

        line-height: 1.6;

    }


    .impact-grid {

        gap: 25px 15px;

    }


    .impact-icon {

        width: 85px;

        height: 85px;

        font-size: 32px;

        border-width: 4px;

        margin-bottom: 15px;

    }


    .impact-card h3 {

        font-size: 38px;

    }


    .impact-card p {

        font-size: 14px;

    }


    /*
       Drives
    */

    .drives-section {

        padding: 75px 15px;

    }


    .section-title {

        margin-bottom: 35px;

    }


    .section-title h2 {

        font-size: 34px !important;

        line-height: 1.2;

    }


    .section-title p {

        font-size: 14px;

        line-height: 1.7;

    }


    .drive-card {

        border-radius: 15px;

    }


    .drive-img {

        height: 230px;

    }


    .drive-content {

        padding: 20px;

    }


    .drive-content h3 {

        font-size: 21px;

    }


    .drive-content p {

        font-size: 14px;

        line-height: 1.7;

    }


    /*
       Awards
    */

    .awards-section {

        padding: 60px 15px;

    }


    .awards-section .container {

        width: 100%;

    }


    .awards-grid {

        grid-template-columns: 1fr 1fr !important;

        gap: 15px !important;

    }


    .award-card {

        min-height: 0;

        border-radius: 15px;

    }


    .award-image {

        height: 155px !important;

    }


    .award-content {

        padding: 28px 8px 14px !important;

    }


    .award-content h3 {

        font-size: 13px !important;

    }


    /*
       About
    */

    .about-section {

        padding-top: 90px !important;

    }


    .about-content {

        margin-top: 0 !important;

    }


    .about-content h2 {

        font-size: 30px !important;

    }


    .about-content p {

        font-size: 15px !important;

        line-height: 1.75;

    }


    /*
       Mission
    */

    .mission-section {

        padding: 60px 15px !important;

    }


    .mission-content h2 {

        font-size: 30px !important;

    }


    .mission-content p {

        font-size: 15px !important;

    }


    /*
       Footer
    */

    .newsletter {

        padding: 40px 20px;

    }


    .newsletter-left h2 {

        font-size: 30px !important;

    }


    .newsletter-left p {

        font-size: 15px;

    }


    .footer-content {

        padding: 45px 20px;

        gap: 35px;

    }


    .footer-box h3 {

        font-size: 23px;

    }

}


/* ============================================================
   16. SMALL MOBILE
   ============================================================ */

@media (max-width: 576px) {

    .hero {

        padding-top: 90px !important;

        padding-bottom: 45px !important;

    }


    .hero-content h1 {

        font-size: 32px !important;

    }


    .hero-content p {

        font-size: 17px !important;

    }


    .hero-content p.hero-msg {

        font-size: 15px !important;

    }


    .hero-btn {

        padding: 12px 20px;

        font-size: 14px;

    }


    /*
       Awards 2 columns
    */

    .awards-grid {

        grid-template-columns: repeat(2, 1fr) !important;

        gap: 12px !important;

    }


    .award-image {

        height: 135px !important;

    }


    .award-image::after {

        width: 36px !important;

        height: 36px !important;

        bottom: -18px !important;

        font-size: 14px !important;

    }


    .award-content {

        padding-top: 25px !important;

    }


    .award-content h3 {

        font-size: 12px !important;

    }


    .read-more-btn {

        font-size: 11px !important;

    }


    /*
       Impact one column
    */

    .impact-grid {

        grid-template-columns: 1fr !important;

    }


    /*
       Drive
    */

    .drive-img {

        height: 210px;

    }


    /*
       About
    */

    .about-image img {

        height: 250px !important;

    }


    /*
       Mission
    */

    .mission-image img {

        height: 260px !important;

    }


    /*
       Floating icons smaller
    */

    .hero-content::before {

        left: -25px;

        width: 45px;

        height: 45px;

        font-size: 24px;

    }


    .hero-content::after {

        right: -25px;

        width: 45px;

        height: 45px;

        font-size: 23px;

    }

}


/* ============================================================
   17. VERY SMALL DEVICES
   ============================================================ */

@media (max-width: 400px) {

    .hero-content h1 {

        font-size: 28px !important;

    }


    .hero-content p {

        font-size: 16px !important;

    }


    .hero-content p.hero-msg {

        font-size: 14px !important;

    }


    .hero-content::before,
    .hero-content::after {

        opacity: .35;

    }


    .awards-grid {

        gap: 10px !important;

    }


    .award-image {

        height: 120px !important;

    }


    .award-content h3 {

        font-size: 11px !important;

    }

}


/* ============================================================
   18. ACCESSIBILITY
   ============================================================ */

/*
   Agar user ne browser/device me reduced motion select kiya hai,
   animation automatically disable ho jayegi.
*/

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

    }

}

.kartavyya-lottie-bg {
    position: fixed;
    right: -80px;
    bottom: -60px;
    width: 300px;
    height: 300px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
}

.kartavyya-lottie-bg lottie-player {
    width: 100%;
    height: 100%;
}

/* Keep website content above animation */
body > * {
    position: relative;
}

@media (max-width: 768px) {
    .kartavyya-lottie-bg {
        width: 190px;
        height: 190px;
        right: -45px;
        bottom: 10px;
        opacity: 0.10;
    }
}


