:root {
        --primary-green: #388e3c;
        --white: #ffffff;
    }

    /* SLIDER CONTAINER */
    .hero-slider {
        width: 100%;
        height: 550px;
        position: relative;
        overflow: hidden;
    }

    .swiper-slide {
        position: relative;
        display: flex;
        align-items: center;
        background-size: cover;
        background-position: center;
    }

    /* OVERLAY FOR TEXT READABILITY */
    .swiper-slide::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
        z-index: 1;
    }

    /* CONTENT BOX */
    .slider-content {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        color: var(--white);
    }

    .badge {
        background: var(--primary-green);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .slider-content h1 {
        font-size: 60px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: uppercase;
        max-width: 700px;
    }

    .slider-content p {
        font-size: 18px;
        max-width: 600px;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    /* BUTTONS */
    .btn-group {
        display: flex;
        gap: 15px;
    }

    .btn-main {
        background: var(--primary-green);
        color: white;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-outline {
        border: 2px solid white;
        color: white;
        padding: 13px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-main:hover { background: #2e7d32; transform: translateY(-3px); }
    .btn-outline:hover { background: white; color: black; }

    /* NAVIGATION CUSTOMIZATION */
    .swiper-button-next, .swiper-button-prev {
        color: white !important;
        background: rgba(255,255,255,0.1);
        width: 50px; height: 50px;
        border-radius: 50%;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-green) !important;
        width: 30px; border-radius: 5px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .hero-slider { height: 450px; }
        .slider-content h1 { font-size: 35px; }
        .slider-content p { font-size: 15px; }
        .btn-group { flex-direction: column; width: fit-content; }
    }


    .about-section {
        padding: 80px 0;
        background: #fdfdfd;
        overflow: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .about-flex {
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    /* IMAGE BOX */
    .about-image {
        flex: 1;
        position: relative;
        min-width: 300px;
    }

    .about-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 20px 20px 0px var(--brand-green);
        transition: transform 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.02);
    }

    .experience-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--brand-orange);
        color: white;
        padding: 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .experience-badge h2 { margin: 0; font-size: 30px; }
    .experience-badge p { margin: 0; font-size: 14px; font-weight: 600; }

    /* CONTENT BOX */
    .about-content {
        flex: 1.2;
        min-width: 300px;
    }

    .sub-heading {
        color: var(--brand-orange);
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 10px;
    }

    .about-content h1 {
        font-size: 42px;
        color: var(--brand-green);
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .about-content p {
        color: #666;
        line-height: 1.8;
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* INTERACTIVE FEATURES LIST */
    .about-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .feature-item i {
        background: rgba(31, 61, 42, 0.1);
        color: var(--brand-green);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 18px;
        transition: 0.3s;
    }

    .feature-item:hover i {
        background: var(--brand-green);
        color: white;
    }

    .feature-item span {
        font-weight: 600;
        color: var(--brand-green);
    }

    .btn-about {
        background: var(--brand-green);
        color: white;
        padding: 15px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(31, 61, 42, 0.3);
    }

    .btn-about:hover {
        background: var(--brand-orange);
        transform: translateY(-3px);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .about-flex { gap: 40px; text-align: center; }
        .about-content h1 { font-size: 32px; }
        .about-image img { box-shadow: 10px 10px 0px var(--brand-green); }
        .feature-item { justify-content: center; }
        .about-features { grid-template-columns: 1fr; }
        .experience-badge { right: 50%; transform: translateX(50%); bottom: -30px; }
    }

    .intro-section {
        padding: 80px 0;
        background: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* HEADER & VISION */
    .intro-flex {
        display: flex;
        gap: 50px;
        align-items: flex-start;
        margin-bottom: 60px;
    }

    .vision-box {
        flex: 1.5;
    }

    .vision-box span {
        color: var(--brand-orange);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 14px;
    }

    .vision-box h2 {
        font-size: 34px;
        color: var(--brand-green);
        margin: 15px 0;
        line-height: 1.3;
    }

    .vision-box p {
        font-size: 16px;
        color: #555;
        line-height: 1.8;
        border-left: 4px solid var(--brand-yellow);
        padding-left: 20px;
    }

    .geography-tag {
        margin-top: 20px;
        display: inline-flex;
        align-items: center;
        background: rgba(31, 61, 42, 0.05);
        padding: 8px 15px;
        border-radius: 5px;
        color: var(--brand-green);
        font-weight: 600;
        font-size: 14px;
    }

    .geography-tag i {
        margin-right: 8px;
        color: var(--brand-orange);
    }

    /* IMPACT GRID */
    .impact-grid {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .impact-card {
        background: var(--bg-light);
        padding: 25px 20px;
        border-radius: 15px;
        text-align: center;
        transition: 0.3s;
        border: 1px solid #e0e0e0;
    }

    .impact-card:hover {
        background: var(--brand-green);
        transform: translateY(-5px);
    }

    .impact-card i {
        font-size: 28px;
        color: var(--brand-orange);
        margin-bottom: 10px;
    }

    .impact-card h3 {
        font-size: 24px;
        margin: 5px 0;
        color: var(--brand-green);
    }

    .impact-card p {
        font-size: 13px;
        color: #666;
        text-transform: uppercase;
        font-weight: 600;
        margin: 0;
    }

    /* Hover Text Color Change */
    .impact-card:hover h3, 
    .impact-card:hover p, 
    .impact-card:hover i {
        color: var(--white);
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .intro-flex { flex-direction: column; }
        .impact-grid { width: 100%; }
    }

    @media (max-width: 600px) {
        .impact-grid { grid-template-columns: 1fr; }
        .vision-box h2 { font-size: 26px; }
    }

    .objectives-section {
        padding: 80px 0;
        background-color: var(--bg-light);
        font-family: 'Poppins', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 36px;
        color: var(--brand-green);
        position: relative;
        padding-bottom: 15px;
        text-transform: uppercase;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--brand-orange);
        border-radius: 2px;
    }

    /* GRID LAYOUT */
    .objectives-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .objective-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        transition: all 0.4s ease;
        border-bottom: 4px solid transparent;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .objective-card:hover {
        transform: translateY(-10px);
        border-color: var(--brand-orange);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .obj-icon {
        width: 70px;
        height: 70px;
        background: rgba(31, 61, 42, 0.1);
        color: var(--brand-green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin: 0 auto 20px;
        border-radius: 50%;
        transition: 0.3s;
    }

    .objective-card:hover .obj-icon {
        background: var(--brand-green);
        color: #fff;
    }

    .objective-card p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-color);
        margin: 0;
    }

    .objective-card strong {
        color: var(--brand-green);
        font-weight: 600;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .objectives-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .section-title h2 { font-size: 28px; }
        .objectives-grid {
            grid-template-columns: 1fr;
        }
    }


    .sdg-section {
        padding: 80px 0;
        background-color: var(--white);
        font-family: 'Poppins', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .header-text {
        text-align: center;
        margin-bottom: 50px;
    }

    .header-text span {
        color: var(--brand-orange);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .header-text h2 {
        font-size: 34px;
        color: var(--brand-green);
        margin-top: 10px;
    }

    /* SDG GRID */
    .sdg-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .sdg-card {
        padding: 25px 15px;
        border-radius: 12px;
        text-align: center;
        color: white;
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sdg-card:hover {
        transform: scale(1.05);
        z-index: 2;
    }

    /* SDG Specific Colors (UN Standards) */
    .sdg-4 { background-color: #C2192C; } /* Quality Education */
    .sdg-6 { background-color: #26BDE2; } /* Clean Water */
    .sdg-7 { background-color: #FCC30B; } /* Clean Energy */
    .sdg-10 { background-color: #DD1367; } /* Reduced Inequalities */
    .sdg-17 { background-color: #19486A; } /* Partnerships */

    .sdg-number {
        font-size: 14px;
        font-weight: 800;
        position: absolute;
        top: 10px;
        left: 15px;
        opacity: 0.8;
    }

    .sdg-card i {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .sdg-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 700;
        line-height: 1.2;
    }

    .sdg-card p {
        font-size: 12px;
        line-height: 1.4;
        opacity: 0.9;
        display: none; /* Desktop पर सिर्फ होवर पर दिखेगा या छोटा दिखेगा */
    }

    .sdg-card:hover p {
        display: block;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .sdg-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 768px) {
        .sdg-grid { grid-template-columns: repeat(2, 1fr); }
        .sdg-card p { display: block; font-size: 11px; }
    }

    @media (max-width: 480px) {
        .sdg-grid { grid-template-columns: 1fr; }
    }


    .gallery-section {
        padding: 60px 0;
        background-color: #f9f9f9;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 32px;
        color: #1f3d2a; /* आपका ब्रांड ग्रीन */
        position: relative;
        padding-bottom: 10px;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: 0; left: 50%; transform: translateX(-50%);
        width: 60px; height: 3px;
        background: #ff8c00; /* आपका ब्रांड ऑरेंज */
    }

    /* Simple Grid Layout */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        display: block;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        aspect-ratio: 1 / 1;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* Search/Plus Overlay */
    .gallery-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(31, 61, 42, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.3s;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay i {
        font-size: 24px;
        color: #fff;
        border: 2px solid #fff;
        width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
    }

    @media (max-width: 768px) {
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
        .gallery-grid { grid-template-columns: 1fr; }
    }

    .events-section{
    padding:60px 5%;
    background:#f5f9f6;
}

.events-title{
    text-align:center;
    font-size:28px;
    font-weight:700;
    color:#1f5f3a;
    margin-bottom:40px;
}

.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD */
.event-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:0.3s;
}

.event-card:hover{
    transform:translateY(-5px);
}

/* IMAGE */
.event-img img{
    width:100%;
    height:200px;
    object-fit:cover;
}

/* CONTENT */
.event-content{
    padding:15px;
}

.event-content h3{
    font-size:18px;
    color:#1f5f3a;
    margin-bottom:10px;
}

.event-content p{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
}

/* ADDRESS */
.event-address{
    font-size:13px;
    color:#888;
    margin-bottom:12px;
}

/* BUTTON */
.read-btn{
    display:inline-block;
    background:#ff8c00;
    color:#fff;
    padding:8px 15px;
    border-radius:20px;
    text-decoration:none;
    font-size:13px;
    transition:0.3s;
}

.read-btn:hover{
    background:#e67600;
}

/* RESPONSIVE */
@media(max-width:992px){
    .events-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .events-grid{
        grid-template-columns:1fr;
    }
}


.cta-section {
        padding: 90px 0;
        background: linear-gradient(rgba(31, 61, 42, 0.92), rgba(31, 61, 42, 0.92)), 
                    url('https://images.unsplash.com/photo-1524069290683-0457abfe42c3?auto=format&fit=crop&q=80&w=1500');
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        color: var(--white);
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* FLEX LAYOUT */
    .cta-flex {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    /* IMAGE PART (LEFT) */
    .cta-image-box {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .cta-image-box img {
        width: 100%;
        max-width: 380px; /* आपके लोगों के हिसाब से साइज */
        height: auto;
        border-radius: 25px; /* मॉडर्न लुक के लिए */
        border: 10px solid var(--white); /* लोगों को अलग दिखाने के लिए */
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        transition: var(--transition);
        background: var(--white); /* लोगों का वाइट बैकग्राउंड रखने के लिए */
        padding: 20px; /* लोगों को साँस लेने की जगह देने के लिए */
    }

    .cta-image-box img:hover {
        transform: scale(1.03) rotate(-2deg);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    /* CONTENT PART (RIGHT) */
    .cta-content {
        flex: 1.5;
        text-align: left;
    }

    .cta-content span {
        color: var(--brand-yellow);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 17px;
        opacity: 0.9;
        margin-bottom: 45px;
        line-height: 1.8;
        color: rgba(255,255,255,0.85);
    }

    /* BUTTONS */
    .cta-btns {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-join {
        background: var(--brand-orange);
        color: white;
        padding: 16px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 2px solid var(--brand-orange);
    }

    .btn-join:hover {
        background: transparent;
        color: var(--brand-orange);
        transform: translateY(-5px);
    }

    .btn-donate-alt {
        background: transparent;
        color: white;
        padding: 16px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        transition: var(--transition);
        border: 2px solid rgba(255,255,255,0.5);
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .btn-donate-alt:hover {
        background: var(--white);
        color: var(--brand-green);
        transform: translateY(-5px);
        border-color: var(--white);
    }

    /* RESPONSIVENESS */
    @media (max-width: 992px) {
        .cta-flex { gap: 40px; }
        .cta-content h2 { font-size: 34px; }
        .cta-image-box img { max-width: 300px; }
    }

    @media (max-width: 768px) {
        .cta-section { padding: 60px 0 80px; }
        .cta-flex { flex-direction: column-reverse; text-align: center; } /* मोबाइल पर टेक्स्ट ऊपर, इमेज नीचे */
        .cta-content { text-align: center; }
        .cta-content h2 { font-size: 28px; }
        .cta-content p { font-size: 15px; }
        .cta-btns { justify-content: center; flex-direction: column; align-items: center; }
        .btn-join, .btn-donate-alt { width: 100%; max-width: 320px; justify-content: center; }
        .cta-image-box img { max-width: 250px; border-width: 7px; margin-top: 50px; }
    }

    /* SECTION */
.testimonial-section{
    padding:70px 5%;
    background:#ffffff;   /* ✅ white background */
    color:#222;           /* dark text */
    text-align:center;
}

/* TITLE */
.testimonial-title{
    font-size:30px;
    font-weight:700;
    margin-bottom:40px;
    color:#1f5f3a; /* green heading */
}

/* GRID */
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD */
.testimonial-card{
    background:#fff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    position:relative;
}

/* CENTER CARD HIGHLIGHT */
.testimonial-card:nth-child(2){
    background:#1f5f3a;
    color:#fff;
    transform:scale(1.05);
}

/* HOVER */
.testimonial-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */
.testimonial-img img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
    border:3px solid #fff;
}

/* TEXT */
.testimonial-text{
    font-size:14px;
    margin-bottom:12px;
    line-height:1.6;
    color:#555;
}

/* CENTER CARD TEXT WHITE */
.testimonial-card:nth-child(2) .testimonial-text{
    color:#eee;
}

/* NAME */
.testimonial-name{
    font-weight:700;
    font-size:16px;
}

/* DESIGNATION */
.testimonial-desg{
    font-size:13px;
    color:#888;
    margin-bottom:8px;
}

/* CENTER DESIGNATION */
.testimonial-card:nth-child(2) .testimonial-desg{
    color:#ddd;
}

/* STARS */
.stars{
    color:#ffcc00;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card:nth-child(2){
        transform:none;
    }
  }

/* SECTION */
.csr-connect-section{
    padding:80px 5%;
    background:linear-gradient(135deg,#1f5f3a,orange);
    color:#fff;
}

/* CONTAINER */
.csr-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

/* LEFT CONTENT */
.csr-content{
    flex:1;
    min-width:300px;
}

.csr-content h2{
    font-size:30px;
    line-height:1.5;
    margin-bottom:15px;
    font-weight:700;
}

.csr-content h3{
    font-size:20px;
    color:#ffcc00;
    margin-bottom:10px;
}

.csr-content p{
    font-size:15px;
    margin-bottom:20px;
    color:#eee;
}

/* FORM */
.csr-form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

/* INPUT */
.csr-input{
    flex:1;
    padding:12px 15px;
    border:none;
    border-radius:30px;
    outline:none;
    font-size:14px;
}

/* BUTTON */
.csr-btn{
    background:#ff8c00;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:0.3s;
}

.csr-btn:hover{
    background:#e67600;
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* RIGHT LOGO BOX */
.csr-logo-box{
    flex:1;
    min-width:250px;
    text-align:center;
}

/* LOGO */
.csr-logo-box img{
    width:220px;
    border-radius:50%;
    background:#fff;
    padding:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
    transition:0.4s;
}

/* HOVER EFFECT */
.csr-logo-box img:hover{
    transform:scale(1.08) rotate(3deg);
}

/* RESPONSIVE */
@media(max-width:992px){
    .csr-flex{
        flex-direction:column;
        text-align:center;
    }

    .csr-form{
        justify-content:center;
    }
}

@media(max-width:600px){

    .csr-content h2{
        font-size:22px;
    }

    .csr-content h3{
        font-size:18px;
    }

    .csr-input{
        width:100%;
    }

    .csr-btn{
        width:100%;
    }

    .csr-logo-box img{
        width:160px;
    }
}

