﻿/* =========================================================
   SHAGUN SOCIAL WELFARE FOUNDATION
   MAIN WEBSITE STYLESHEET
   Bootstrap 5 + ASP.NET Web Forms
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {

    --orange: #f47a1f;
    --orange-dark: #df620c;
    --orange-light: #fff2e8;

    --blue: #123c5a;
    --blue-dark: #082a40;

    --gold: #f4b942;

    --dark: #17212b;
    --text: #53616d;

    --light: #f7f9fb;
    --white: #ffffff;

    --border: #e9eef2;

    --shadow:
        0 20px 50px rgba(23, 59, 87, 0.10);

    --shadow-small:
        0 8px 30px rgba(23, 59, 87, 0.08);
}


/* =========================================================
   2. GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;

    font-size: 16px;
    line-height: 1.7;

    color: var(--text);

    background: var(--white);

    overflow-x: hidden;
}


* {
    box-sizing: border-box;
}


img {
    max-width: 100%;
}


a {
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}


::selection {
    background: var(--orange);
    color: var(--white);
}


/* =========================================================
   3. TOP INFORMATION BAR
========================================================= */

.top-bar {

    width: 100%;

    min-height: 48px;

    display: flex;
    align-items: center;

    background: #092d43;

    color: var(--white);

    position: relative;

    z-index: 1050;
}


.top-bar-inner {

    width: 100%;

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    font-size: 13px;

    font-weight: 500;
}


/* Left contact area */

.top-contact {

    display: flex;

    align-items: center;

    gap: 17px;

    min-width: 0;
}


.top-contact span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;
}


.top-contact i {

    color: #ff9b51;

    font-size: 14px;
}


.top-separator {

    width: 1px;

    height: 18px;

    flex-shrink: 0;

    background: rgba(255,255,255,.25);
}


/* Social area */

.top-social {

    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}


.follow-us {

    margin-right: 6px;

    color: rgba(255,255,255,.85);

    font-size: 13px;

    font-weight: 600;
}


.top-social a {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: rgba(255,255,255,.90);

    background: rgba(255,255,255,.10);

    font-size: 12px;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.top-social a:hover {

    color: var(--white);

    background: var(--orange);

    transform: translateY(-2px);
}


/* =========================================================
   4. MAIN NAVBAR
========================================================= */

.main-navbar {

    width: 100%;

    min-height: 185px;

    padding: 12px 0;

    background: var(--white);

    position: relative;

    z-index: 1040;

    box-shadow:
        0 3px 20px rgba(0,0,0,.05);
}


/* =========================================================
   5. NGO LOGO / BRAND
========================================================= */

.ngo-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 0;

    margin: 0;

    text-decoration: none !important;

    flex-shrink: 0;
}


/*
    Your original logo is 4:3.

    The fixed width/height container allows the
    complete logo to remain visible without distortion.
*/

.ngo-logo {

    width: 330px;

    height: 125px;

    display: block;

    object-fit: contain;

    object-position: center;

    background: transparent;
}


/* Tagline below logo */

.ngo-tagline {

    width: 330px;

    margin-top: -3px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #23435b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-style: italic;

    line-height: 1.2;

    white-space: nowrap;
}


.ngo-tagline span {

    width: 23px;

    height: 1px;

    flex-shrink: 0;

    background: var(--orange);

    display: inline-block;
}


/* =========================================================
   6. NAVIGATION LINKS
========================================================= */

.main-navbar .navbar-nav {

    display: flex;

    align-items: center;

    gap: 3px;
}


.main-navbar .nav-link {

    position: relative;

    color: #273b4b !important;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.4;

    padding: 12px 14px !important;

    margin: 0;

    transition:
        color .25s ease;
}


.main-navbar .nav-link::after {

    content: "";

    position: absolute;

    left: 14px;

    right: 14px;

    bottom: 3px;

    height: 3px;

    border-radius: 10px;

    background: var(--orange);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform .25s ease;
}


.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {

    color: var(--orange) !important;
}


.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {

    transform: scaleX(1);
}


/* =========================================================
   7. DONATE BUTTON
========================================================= */

.donate-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 155px;

    padding: 14px 23px;

    border: 0;

    border-radius: 9px;

    background: var(--orange);

    color: var(--white) !important;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.2;

    box-shadow:
        0 8px 20px rgba(244,122,31,.24);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.donate-button i {

    font-size: 17px;
}


.donate-button:hover {

    color: var(--white) !important;

    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(244,122,31,.32);
}


/* =========================================================
   8. HERO SECTION
========================================================= */

.hero-section {

    position: relative;

    min-height:
        calc(100vh - 233px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image:
        url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=2200&q=90");

    background-size: cover;

    background-position: center right;

    background-repeat: no-repeat;
}


/* Dark overlay */

.hero-dark-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,

            rgba(9,37,55,.97) 0%,

            rgba(9,37,55,.93) 28%,

            rgba(9,37,55,.72) 49%,

            rgba(9,37,55,.30) 72%,

            rgba(9,37,55,.10) 100%
        );
}


/* =========================================================
   9. HERO CONTENT
========================================================= */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

    padding: 30px 0;
}


/* Badge */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 11px 20px;

    margin-bottom: 30px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.40);

    background: rgba(255,255,255,.10);

    color: var(--white);

    font-size: 15px;

    font-weight: 600;

    line-height: 1.4;

    backdrop-filter: blur(6px);
}


.hero-badge i {

    color: var(--white);

    font-size: 14px;
}


/* Hero heading */

.hero-content h1 {

    margin: 0 0 30px;

    color: var(--white);

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(55px, 6.2vw, 92px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: -3px;
}


.hero-content h1 span {

    display: block;

    margin-top: 8px;

    color: #ff9a4d;
}


/* Hero description */

.hero-description {

    max-width: 650px;

    margin-bottom: 38px;

    color: rgba(255,255,255,.90);

    font-size: 19px;

    line-height: 1.8;
}


/* =========================================================
   10. HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;
}


.hero-primary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 0;

    padding: 15px 28px;

    border: 2px solid var(--orange);

    border-radius: 9px;

    background: var(--orange);

    color: var(--white) !important;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.hero-primary-btn i {

    margin-left: 12px;

    transition:
        margin-left .3s ease;
}


.hero-primary-btn:hover {

    background: var(--orange-dark);

    border-color: var(--orange-dark);

    color: var(--white) !important;

    transform: translateY(-3px);
}


.hero-primary-btn:hover i {

    margin-left: 17px;
}


.hero-secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 28px;

    border: 2px solid rgba(255,255,255,.75);

    border-radius: 9px;

    background: transparent;

    color: var(--white) !important;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.hero-secondary-btn:hover {

    background: var(--white);

    border-color: var(--white);

    color: var(--blue) !important;

    transform: translateY(-3px);
}


/* =========================================================
   11. HERO TRUST
========================================================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 45px;
}


.trust-avatars {

    display: flex;

    align-items: center;
}


.trust-avatars span {

    width: 36px;

    height: 36px;

    margin-right: -7px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px solid var(--white);

    border-radius: 50%;

    background: var(--orange);

    color: var(--white);

    font-size: 10px;

    font-weight: 800;
}


.trust-avatars span:nth-child(2) {

    background: var(--gold);
}


.trust-avatars span:nth-child(3) {

    background: var(--blue);
}


.hero-trust strong {

    display: block;

    color: var(--white);

    font-size: 13px;
}


.hero-trust small {

    display: block;

    color: rgba(255,255,255,.60);

    font-size: 12px;
}


/* =========================================================
   12. HERO SCROLL
========================================================= */

.hero-scroll {

    position: absolute;

    z-index: 3;

    right: 5%;

    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.70);

    font-size: 12px;
}


.hero-scroll i {

    color: var(--orange);
}


/* =========================================================
   13. IMPACT COUNTERS
========================================================= */

.impact-strip {

    position: relative;

    z-index: 3;

    background: var(--white);

    box-shadow:
        0 10px 35px rgba(0,0,0,.08);
}


.counter-box {

    min-height: 145px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    border-right: 1px solid #edf0f2;
}


.counter-box:last-child {

    border-right: 0;
}


.counter-box i {

    margin-bottom: 8px;

    color: var(--orange);

    font-size: 24px;
}


.counter-box h2 {

    margin: 0;

    color: var(--dark);

    font-size: 32px;

    font-weight: 800;

    line-height: 1.2;
}


.counter-box p {

    margin: 3px 0 0;

    color: #7a8790;

    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   14. GENERAL SECTION
========================================================= */

.section-padding {

    padding: 110px 0;
}


.section-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--orange);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2.5px;

    line-height: 1.4;
}


.section-title {

    margin-bottom: 22px;

    color: var(--dark);

    font-size:
        clamp(40px, 4.5vw, 60px);

    font-weight: 800;

    line-height: 1.12;

    letter-spacing: -1.8px;
}


.section-title span {

    color: var(--orange);
}


.section-text {

    margin-bottom: 18px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.85;
}


/* =========================================================
   15. ABOUT
========================================================= */

.about-section {

    background: var(--white);
}


.about-image-wrapper {

    position: relative;

    padding: 25px;
}


.about-image-main {

    height: 520px;

    overflow: hidden;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(23,59,87,.20),
            rgba(232,117,36,.18)
        ),
        url("../images/About_us.jpeg");

    background-position: center;

    background-size: cover;
}


.image-placeholder {

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 35px;

    background:
        linear-gradient(
            transparent 50%,
            rgba(16,44,66,.85)
        );

    color: var(--white);
}


.image-placeholder i {

    margin-bottom: 10px;

    font-size: 35px;
}


.image-placeholder span {

    font-size: 17px;

    font-weight: 700;
}


.experience-card {

    position: absolute;

    right: 0;

    bottom: 0;

    width: 245px;

    padding: 25px;

    border-radius: 18px;

    background: var(--orange);

    color: var(--white);

    box-shadow: var(--shadow);
}


.experience-card strong {

    font-family: "Montserrat", sans-serif;

    font-size: 18px;
}


.experience-card p {

    margin: 8px 0 0;

    font-size: 13px;

    line-height: 1.6;
}


.about-points {

    margin: 30px 0;
}


.about-point {

    display: flex;

    gap: 14px;

    margin-bottom: 18px;
}


.point-icon {

    width: 30px;

    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--orange);
}


.about-point h5 {

    margin: 0 0 4px;

    font-size: 17px;
}


.about-point p {

    margin: 0;

    font-size: 14px;
}


.text-link {

    color: var(--orange);

    font-weight: 700;
}


.text-link i {

    margin-left: 7px;

    transition:
        margin-left .3s ease;
}


.text-link:hover i {

    margin-left: 12px;
}


/* =========================================================
   16. CAUSES
========================================================= */

.causes-section {

    background: var(--light);
}


.section-heading {

    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}


.section-heading p {

    margin-bottom: 0;

    font-size: 16px;

    line-height: 1.8;
}


.cause-card {

    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: var(--white);

    box-shadow:
        0 8px 35px rgba(23,59,87,.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.cause-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(23,59,87,.13);
}


.cause-image {

    height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--white);

    font-size: 55px;

    background-position: center;

    background-size: cover;
}


.education-image {

    background:
        linear-gradient(
            rgba(23,59,87,.50),
            rgba(23,59,87,.70)
        ),
        url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=900&q=80");
}


.healthcare-image {

    background:
        linear-gradient(
            rgba(23,59,87,.45),
            rgba(23,59,87,.70)
        ),
        url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=900&q=80");
}


.women-image {

    background:
        linear-gradient(
            rgba(23,59,87,.45),
            rgba(23,59,87,.70)
        ),
        url("https://images.unsplash.com/photo-1542810634-71277d95dcbb?auto=format&fit=crop&w=900&q=80");
}


.child-image {

    background:
        linear-gradient(
            rgba(23,59,87,.45),
            rgba(23,59,87,.70)
        ),
        url("https://images.unsplash.com/photo-1489493585363-d69421e0edd3?auto=format&fit=crop&w=900&q=80");
}


.community-image {

    background:
        linear-gradient(
            rgba(23,59,87,.45),
            rgba(23,59,87,.70)
        ),
        url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=900&q=80");
}


.cause-content {

    padding: 28px;
}


.cause-number {

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.cause-content h3 {

    margin: 8px 0 12px;

    font-size: 25px;

    line-height: 1.3;
}


.cause-content p {

    margin-bottom: 20px;

    font-size: 15px;

    line-height: 1.8;
}


.cause-content a {

    color: var(--orange);

    font-size: 14px;

    font-weight: 700;
}


.cause-content a i {

    margin-left: 7px;
}


/* Featured cause */

.cause-featured {

    min-height: 100%;

    background: var(--blue);
}


.featured-content {

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    color: var(--white);
}


.featured-icon {

    width: 60px;

    height: 60px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: var(--orange);
}


.featured-content h3 {

    color: var(--white);
}


.featured-content p {

    color: rgba(255,255,255,.70);
}


.btn-light {

    align-self: flex-start;

    padding: 11px 18px;

    border-radius: 8px;

    color: var(--blue);

    font-weight: 700;
}


/* =========================================================
   17. IMPACT SECTION
========================================================= */

.impact-section {

    background:
        linear-gradient(
            120deg,
            rgba(16,44,66,.98),
            rgba(23,59,87,.95)
        );
}


.impact-section .section-title {

    color: var(--white);
}


.impact-description {

    margin-bottom: 30px;

    color: rgba(255,255,255,.70);

    line-height: 1.8;
}


.impact-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}


.impact-item {

    padding: 30px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 15px;

    background: rgba(255,255,255,.05);

    transition:
        background .3s ease,
        transform .3s ease;
}


.impact-item:hover {

    background: rgba(255,255,255,.09);

    transform: translateY(-4px);
}


.impact-item i {

    color: #ff9b51;

    font-size: 30px;
}


.impact-item h4 {

    margin: 15px 0 8px;

    color: var(--white);

    font-size: 19px;
}


.impact-item p {

    margin: 0;

    color: rgba(255,255,255,.60);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   18. HELP / GET INVOLVED
========================================================= */

.help-section {

    background: var(--white);
}


.help-card {

    height: 100%;

    padding: 38px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: var(--white);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.help-card:hover {

    border-color: transparent;

    transform: translateY(-7px);

    box-shadow: var(--shadow);
}


.help-icon {

    width: 65px;

    height: 65px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    font-size: 25px;
}


.help-icon.orange {

    background: var(--orange-light);

    color: var(--orange);
}


.help-icon.blue {

    background: #eaf2f8;

    color: var(--blue);
}


.help-icon.gold {

    background: #fff7df;

    color: #c99100;
}


.help-card h3 {

    font-size: 24px;
}


.help-card p {

    margin: 12px 0 20px;

    font-size: 15px;

    line-height: 1.8;
}


.help-card a {

    color: var(--orange);

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   19. CTA SECTION
========================================================= */

.cta-section {

    padding: 75px 0;

    background: var(--orange);
}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.cta-small {

    color: rgba(255,255,255,.75);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.cta-inner h2 {

    margin: 8px 0;

    color: var(--white);

    font-size:
        clamp(32px, 4vw, 50px);

    font-weight: 800;

    line-height: 1.15;
}


.cta-inner h2 span {

    color: #ffe0c5;
}


.cta-inner p {

    margin: 0;

    color: rgba(255,255,255,.75);

    font-size: 16px;
}


.btn-white {

    padding: 14px 25px;

    border-radius: 8px;

    background: var(--white);

    color: var(--orange);

    font-weight: 700;

    transition:
        transform .25s ease;
}


.btn-white:hover {

    color: var(--orange-dark);

    transform: translateY(-2px);
}


/* =========================================================
   20. CONTACT
========================================================= */

.contact-section {

    background: var(--light);
}


.contact-info {

    margin-top: 35px;
}


.contact-item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;
}


.contact-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--orange-light);

    color: var(--orange);
}


.contact-item small,
.contact-item strong {

    display: block;
}


.contact-item small {

    margin-bottom: 3px;

    color: #89939b;

    font-size: 11px;
}


.contact-item strong {

    color: var(--dark);

    font-size: 14px;
}


.contact-form-card {

    padding: 40px;

    border-radius: 20px;

    background: var(--white);

    box-shadow: var(--shadow);
}


.contact-form-card h3 {

    margin-bottom: 5px;

    font-size: 27px;
}


.contact-form-card > p {

    margin-bottom: 25px;

    font-size: 15px;
}


.form-label {

    color: var(--dark);

    font-size: 13px;

    font-weight: 700;
}


.custom-input {

    padding: 14px 16px;

    border: 1px solid #e4e9ed;

    border-radius: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 15px;
}


.custom-input:focus {

    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(232,117,36,.10);
}


/* =========================================================
   21. FOOTER
========================================================= */

.footer {

    padding: 75px 0 25px;

    background: var(--blue-dark);

    color: rgba(255,255,255,.65);
}


.footer-brand {

    display: flex;

    align-items: center;

    margin-bottom: 20px;
}


.footer .brand-text strong {

    color: var(--white);
}


.footer .brand-text span {

    color: #ff9b51;
}


.footer-description {

    max-width: 420px;

    font-size: 14px;

    line-height: 1.8;
}


.footer h5 {

    margin-bottom: 20px;

    color: var(--white);

    font-size: 16px;
}


.footer-links {

    padding: 0;

    margin: 0;

    list-style: none;
}


.footer-links li {

    margin-bottom: 11px;
}


.footer-links a {

    color: rgba(255,255,255,.60);

    font-size: 14px;

    transition:
        color .25s ease;
}


.footer-links a:hover {

    color: #ff9b51;
}


.footer-newsletter {

    font-size: 14px;

    line-height: 1.7;
}


.footer-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 15px;

    border-radius: 7px;

    background: var(--orange);

    color: var(--white);

    font-size: 12px;

    font-weight: 700;
}


.social-links {

    display: flex;

    gap: 9px;

    margin-top: 25px;
}


.social-links a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: rgba(255,255,255,.08);

    color: var(--white);

    transition:
        background .25s ease,
        transform .25s ease;
}


.social-links a:hover {

    background: var(--orange);

    transform: translateY(-3px);
}


.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.08);
}


.footer-bottom p {

    margin: 0;

    font-size: 11px;
}


.footer-bottom i {

    color: var(--orange);
}


/* =========================================================
   22. TABLET / LAPTOP
========================================================= */

@media (max-width: 1399px) {

    .ngo-logo {

        width: 290px;

        height: 115px;
    }


    .ngo-tagline {

        width: 290px;

        font-size: 13px;
    }


    .main-navbar .nav-link {

        padding-left: 11px !important;

        padding-right: 11px !important;

        font-size: 15px;
    }


    .donate-button {

        min-width: 140px;

        padding: 12px 20px;

        font-size: 15px;
    }
}


/* =========================================================
   23. SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .top-contact {

        gap: 10px;

        font-size: 12px;
    }


    .top-social {

        gap: 5px;
    }


    .ngo-logo {

        width: 245px;

        height: 100px;
    }


    .ngo-tagline {

        width: 245px;

        font-size: 11px;
    }


    .main-navbar {

        min-height: 160px;
    }


    .main-navbar .nav-link {

        padding-left: 8px !important;

        padding-right: 8px !important;

        font-size: 14px;
    }


    .donate-button {

        min-width: 125px;

        padding: 11px 15px;

        font-size: 14px;
    }


    .hero-content {

        max-width: 650px;
    }
}


/* =========================================================
   24. TABLET
========================================================= */

@media (max-width: 991px) {

    /*
       Hide top information bar on tablet/mobile.
       This prevents the header from becoming too tall.
    */

    .top-bar {

        display: none;
    }


    .main-navbar {

        min-height: auto;

        padding: 10px 0;
    }


    .ngo-logo {

        width: 220px;

        height: 90px;
    }


    .ngo-tagline {

        width: 220px;

        font-size: 10px;
    }


    .navbar-collapse {

        margin-top: 15px;

        padding: 15px;

        border-radius: 12px;

        background: var(--white);

        box-shadow:
            0 10px 35px rgba(0,0,0,.08);
    }


    .main-navbar .navbar-nav {

        display: block;
    }


    .main-navbar .nav-link {

        padding: 12px 10px !important;

        font-size: 15px;
    }


    .main-navbar .nav-link::after {

        display: none;
    }


    .donate-button {

        display: inline-flex;

        margin-top: 5px;
    }


    .hero-section {

        min-height: 750px;

        background-position: 65% center;
    }


    .hero-dark-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(9,37,55,.94),
                rgba(9,37,55,.60)
            );
    }


    .hero-content {

        padding-top: 60px;
    }


    .about-image-main {

        height: 450px;
    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   25. MOBILE
========================================================= */

@media (max-width: 767px) {

    body {

        font-size: 15px;
    }


    .section-padding {

        padding: 75px 0;
    }


    /* Logo */

    .ngo-logo {

        width: 190px;

        height: 78px;
    }


    .ngo-tagline {

        width: 190px;

        gap: 4px;

        font-size: 8px;
    }


    .ngo-tagline span {

        width: 12px;
    }


    /* Hero */

    .hero-section {

        min-height: 700px;

        background-position: 68% center;
    }


    .hero-content {

        padding:
            80px 10px 50px;
    }


    .hero-badge {

        padding: 9px 15px;

        margin-bottom: 22px;

        font-size: 12px;
    }


    .hero-content h1 {

        margin-bottom: 25px;

        font-size: 47px;

        line-height: 1.02;

        letter-spacing: -1.5px;
    }


    .hero-description {

        margin-bottom: 30px;

        font-size: 16px;

        line-height: 1.7;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }


    .hero-primary-btn,
    .hero-secondary-btn {

        width: 100%;

        text-align: center;
    }


    .hero-scroll {

        display: none;
    }


    /* Counters */

    .counter-box {

        min-height: 125px;

        border-bottom: 1px solid #edf0f2;
    }


    .counter-box:nth-child(2) {

        border-right: 0;
    }


    .counter-box h2 {

        font-size: 25px;
    }


    /* Sections */

    .section-title {

        font-size: 38px;

        letter-spacing: -1px;
    }


    .section-text {

        font-size: 15px;
    }


    /* About */

    .about-image-wrapper {

        padding:
            0 0 40px;
    }


    .about-image-main {

        height: 400px;
    }


    .experience-card {

        right: 15px;

        bottom: 0;
    }


    /* Causes */

    .cause-content h3 {

        font-size: 23px;
    }


    /* Impact */

    .impact-grid {

        grid-template-columns: 1fr;
    }


    /* Help */

    .help-card h3 {

        font-size: 22px;
    }


    /* Contact */

    .contact-form-card {

        padding: 25px;
    }


    /* Footer */

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   26. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ngo-logo {

        width: 170px;

        height: 70px;
    }


    .ngo-tagline {

        width: 170px;

        font-size: 7px;
    }


    .hero-content h1 {

        font-size: 40px;

        letter-spacing: -1px;
    }


    .hero-description {

        font-size: 15px;
    }


    .section-title {

        font-size: 34px;
    }


    .about-image-main {

        height: 350px;
    }


    .experience-card {

        width: 210px;

        padding: 20px;
    }
}


/* =========================================================
   27. EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .ngo-logo {

        width: 155px;

        height: 64px;
    }


    .ngo-tagline {

        width: 155px;

        font-size: 6.5px;
    }


    .hero-content h1 {

        font-size: 36px;
    }


    .hero-badge {

        font-size: 11px;
    }
}

/* =========================================================
   LOGO
========================================================= */

.logo-wrapper {

    width: 300px;
    height: 125px;

    overflow: hidden;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.ngo-logo {

    width: 360px;
    height: auto;

    max-width: none;

    display: block;

    flex-shrink: 0;

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);
}

.ngo-brand {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 0;

    margin: 0;

    text-decoration: none !important;

    flex-shrink: 0;
}


.ngo-tagline {

    width: 300px;

    margin-top: -2px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color: #23435b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 14px;

    font-style: italic;

    line-height: 1.2;

    white-space: nowrap;
}


.ngo-tagline span {

    width: 22px;

    height: 1px;

    background: #f47a1f;
}

/* =========================================================
   COMPACT MAIN NAVBAR
========================================================= */

.main-navbar {
    width: 100%;
    height: 110px;
    min-height: 110px;

    padding: 5px 0;

    background: #ffffff;

    position: relative;
    z-index: 1040;

    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   LOGO AREA
========================================================= */

.ngo-brand {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 310px;
    height: 135px;

    padding: 0;
    margin: 0;

    text-decoration: none !important;

    flex-shrink: 0;
}


/* Logo container */

.logo-wrapper {
    width: 300px;
    height: 105px;

    overflow: hidden;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Actual logo */

.ngo-logo {
    width: 330px;
    height: auto;

    max-width: none;

    display: block;

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}


/* =========================================================
   TAGLINE
========================================================= */

.ngo-tagline {
    width: 300px;

    margin-top: -3px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #23435b;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;

    font-style: italic;

    line-height: 1;

    white-space: nowrap;
}


.ngo-tagline span {
    width: 20px;
    height: 1px;

    flex-shrink: 0;

    background: #f47a1f;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navbar .navbar-nav {
    display: flex;

    align-items: center;

    gap: 3px;
}


.main-navbar .nav-link {
    position: relative;

    color: #273b4b !important;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.3;

    padding: 10px 14px !important;

    transition: color .25s ease;
}


.main-navbar .nav-link::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 1px;

    height: 3px;

    border-radius: 10px;

    background: #f47a1f;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .25s ease;
}


.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #f47a1f !important;
}


.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.donate-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 155px;

    padding: 13px 22px;

    border: 0;

    border-radius: 9px;

    background: #f47a1f;

    color: #ffffff !important;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.2;

    box-shadow:
        0 7px 18px rgba(244, 122, 31, .22);

    transition: all .25s ease;
}


.donate-button:hover {
    background: #df620c;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(244, 122, 31, .30);
}

/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #092d43;
}


.hero-slide {

    position: relative;

    min-height: calc(100vh - 233px);

    display: flex;

    align-items: center;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* =========================================================
   SLIDE IMAGES
========================================================= */

.hero-slide-1 {
    background-image: url("../images/Slider/slider-india-children.jpeg");
}

.hero-slide-2 {
    background-image: url("../images/Slider/slider-india-education.jpeg");
}

.hero-slide-3 {
    background-image: url("../images/Slider/slider-india-community.jpeg");
}
/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(9,37,55,.97) 0%,
            rgba(9,37,55,.92) 30%,
            rgba(9,37,55,.70) 52%,
            rgba(9,37,55,.30) 75%,
            rgba(9,37,55,.10) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-slide .hero-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

    padding:
        70px 0 90px;

    color: #ffffff;
}


.hero-slide .hero-content h1 {

    margin: 0 0 30px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size:
        clamp(55px, 6.2vw, 92px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: -3px;
}


.hero-slide .hero-content h1 span {

    display: block;

    margin-top: 8px;

    color: #ff9a4d;
}


.hero-slide .hero-description {

    max-width: 650px;

    margin-bottom: 38px;

    color: rgba(255,255,255,.90);

    font-size: 19px;

    line-height: 1.8;
}


/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {

    z-index: 5;

    width: 70px;

    opacity: .75;

    transition: opacity .25s ease;
}


.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {

    opacity: 1;
}


.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {

    width: 45px;

    height: 45px;

    padding: 10px;

    border-radius: 50%;

    background-color:
        rgba(255,255,255,.15);

    backdrop-filter: blur(5px);
}


/* =========================================================
   CAROUSEL INDICATORS
========================================================= */

.hero-slider .carousel-indicators {

    z-index: 5;

    bottom: 25px;

    margin-bottom: 0;
}


.hero-slider .carousel-indicators button {

    width: 35px;

    height: 4px;

    margin: 0 5px;

    border: 0;

    border-radius: 10px;

    background-color:
        rgba(255,255,255,.45);

    opacity: 1;

    transition:
        width .3s ease,
        background .3s ease;
}


.hero-slider .carousel-indicators button.active {

    width: 55px;

    background: var(--orange);
}


/* =========================================================
   MOBILE HERO
========================================================= */

@media (max-width: 991px) {

    .hero-slide {

        min-height: 750px;

        background-position: 65% center;
    }


    .hero-slide .hero-content {

        padding:
            70px 0 80px;
    }


    .hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(9,37,55,.95),
                rgba(9,37,55,.65)
            );
    }
}


@media (max-width: 767px) {

    .hero-slide {

        min-height: 700px;

        background-position: 68% center;
    }


    .hero-slide .hero-content {

        padding:
            70px 10px 80px;
    }


    .hero-slide .hero-content h1 {

        font-size: 47px;

        line-height: 1.02;

        letter-spacing: -1.5px;
    }


    .hero-slide .hero-description {

        font-size: 16px;

        line-height: 1.7;
    }


    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {

        display: none;
    }


    .hero-slider .carousel-indicators {

        bottom: 18px;
    }
}


@media (max-width: 480px) {

    .hero-slide .hero-content h1 {

        font-size: 40px;
    }
}

/* =========================================================
   BRAND / FOOTER LOGO
========================================================= */

.brand-text {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 210px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

.developer-name {
    color: #ff9b51;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.developer-name:hover {
    color: #ffffff;
    text-decoration: underline;
}