/*==================================================
  MAIN.CSS
  NGO Bootstrap 5 Design System
==================================================*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*==================================================
  ROOT VARIABLES
==================================================*/
:root{
    /* Colors */
    --bg-primary: #0B4DB8;
    --bg-secondary: #012A6B;
    --bg-third: #F5F8FF;

    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;

    --border-color: #E5E7EB;
    --white: #FFFFFF;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Hind', sans-serif;

    /* Spacing */
    --section-space: 100px;
    --card-padding: 24px;
    --radius: 12px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);

    /* Transition */
    --transition: all .3s ease;
}

/*==================================================
  GLOBAL RESET
==================================================*/
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font-primary);
    color:var(--text-primary);
    background:var(--white);
    line-height:1.7;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

ul,
ol{
    list-style:none;
    margin:0;
    padding:0;
}

button{
    border:none;
    outline:none;
}

::selection{
    background:var(--bg-primary);
    color:var(--white);
}

/*==================================================
  CUSTOM SCROLLBAR
==================================================*/
::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f3f4f6;
}

::-webkit-scrollbar-thumb{
    background:var(--bg-primary);
    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--bg-secondary);
}

/*==================================================
  FOCUS STATES
==================================================*/
:focus-visible{
    outline:2px solid var(--bg-primary);
    outline-offset:2px;
}

/*==================================================
  TYPOGRAPHY
==================================================*/
.heading-x7k29{
    font-family:var(--font-primary);
    font-size:clamp(1.50rem,3.5vw,3rem);
    font-weight:700;
    line-height:1.2;
    color:var(--bg-primary);
    margin-bottom:16px;
}

.subheading-x7k29{
    font-family:var(--font-primary);
    font-size:clamp(1.25rem,2vw,1.75rem);
    font-weight:600;
    line-height:1.4;
    color:var(--text-primary);
    margin-bottom:12px;
}

.text-x7k29{
    font-family:var(--font-secondary);
    font-size:16px;
    font-weight:400;
    color:var(--text-secondary);
    line-height:1.8;
}

.small-text-x7k29{
    font-family:var(--font-secondary);
    font-size:14px;
    font-weight:400;
    color:var(--text-secondary);
    line-height:1.7;
}

/*==================================================
  BUTTONS
==================================================*/
.btn-primary-x7k29,
.btn-secondary-x7k29,
.btn-outline-x7k29{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 28px;
    border-radius:var(--radius);
    font-weight:600;
    font-size:15px;
    transition:var(--transition);
    cursor:pointer;
}

.btn-primary-x7k29{
    background:var(--bg-primary);
    color:var(--white);
}

.btn-primary-x7k29:hover{
    background:var(--bg-secondary);
    color:var(--white);
    transform:translateY(-2px);
}

.btn-secondary-x7k29{
    background:var(--bg-secondary);
    color:var(--white);
}

.btn-secondary-x7k29:hover{
    background:var(--bg-primary);
    color:var(--white);
    transform:translateY(-2px);
}

.btn-third-x7k29{
    background-color: var(--white, #FFFFFF);
    color: var(--bg-secondary, #012A6B) !important;
    border: 2px solid transparent;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.btn-third-x7k29:hover{
    background-color: var(--bg-secondary, #012A6B);
    color: var(--white, #FFFFFF) !important;
    border-color: var(--white, #FFFFFF);
    transform: translateY(-3px);
}

.btn-outline-x7k29{
    background:transparent;
    border:1px solid var(--bg-primary);
    color:var(--bg-primary);
}

.btn-outline-x7k29:hover{
    background:var(--bg-primary);
    color:var(--white);
}

/*==================================================
  CARDS
==================================================*/
.card-x7k29{
    background:var(--white);
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    padding:var(--card-padding);
    box-shadow:var(--shadow-sm);
}

.card-hover-x7k29{
    transition:var(--transition);
}

.card-hover-x7k29:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

/*==================================================
  FORMS
==================================================*/
.label-x7k29{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:500;
    color:var(--text-primary);
}

.input-x7k29,
.textarea-x7k29{
    width:100%;
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    padding:14px 16px;
    font-size:15px;
    color:var(--text-primary);
    background:var(--white);
    transition:var(--transition);
}

.textarea-x7k29{
    resize:none;
    min-height:140px;
}

.input-x7k29:focus,
.textarea-x7k29:focus{
    border-color:var(--bg-primary);
    box-shadow:0 0 0 4px rgba(11,77,184,.12);
    outline:none;
}

/*==================================================
  BADGES
==================================================*/
.badge-x7k29{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(11,77,184,.1);
    color:var(--bg-primary);
    font-size:13px;
    font-weight:600;
}

/*==================================================
  SOCIAL ICONS
==================================================*/
.social-x7k29{
    display:flex;
    align-items:center;
    gap:12px;
}

.social-circle-x7k29{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--bg-primary);
    color:var(--white);
    transition:var(--transition);
}

.social-circle-x7k29:hover{
    background:var(--bg-secondary);
    transform:translateY(-3px);
}

/*==================================================
  UTILITY CLASSES
==================================================*/
.bg-primary-x7k29{
    background:var(--bg-primary);
}

.bg-secondary-x7k29{
    background:var(--bg-secondary);
}

.bg-third-x7k29{
    background:var(--bg-third);
}

.text-primary-x7k29{
    color:var(--text-primary);
}

.text-secondary-x7k29{
    color:var(--text-secondary);
}

.radius-x7k29{
    border-radius:var(--radius);
}

.shadow-x7k29{
    box-shadow:var(--shadow-md);
}

.overflow-hidden-x7k29{
    overflow:hidden;
}

.transition-x7k29{
    transition:var(--transition);
}

/*==================================================
  COMMON HELPERS
==================================================*/
.section-space-x7k29{
    padding-top:var(--section-space);
    padding-bottom:var(--section-space);
}

.hover-lift-x7k29{
    transition:var(--transition);
}

.hover-lift-x7k29:hover{
    transform:translateY(-5px);
}

.border-x7k29{
    border:1px solid var(--border-color);
}

.w-fit-x7k29{
    width:fit-content;
}

.h-100-x7k29{
    height:100%;
}

/*==================================================
  RESPONSIVE HELPERS
==================================================*/
@media (max-width: 991px){

    :root{
        --section-space:80px;
    }

    .heading-x7k29{
        line-height:1.3;
    }
}

@media (max-width: 767px){

    :root{
        --section-space:60px;
        --card-padding:20px;
    }

    .btn-primary-x7k29,
    .btn-secondary-x7k29,
    .btn-outline-x7k29{
        width:100%;
    }

    .social-x7k29{
        flex-wrap:wrap;
    }
}

@media (max-width: 575px){

    .heading-x7k29{
        font-size:2rem;
    }

    .subheading-x7k29{
        font-size:1.25rem;
    }

    .text-x7k29{
        font-size:15px;
    }
}