/*=========================================================
    Village Welfare Society
    Global Styles
=========================================================*/

/*==============================
    RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--body-font);

    font-size:16px;

    color:var(--text-dark);

    background:var(--off-white);

    overflow-x:hidden;

    line-height:1.7;

}

/*==============================
    LINKS
==============================*/

a{

    text-decoration:none;

    transition:var(--transition-fast);

}

a:hover{

    text-decoration:none;

}

/*==============================
    IMAGES
==============================*/

img{

    max-width:100%;

    display:block;

}

/*==============================
    HEADINGS
==============================*/

h1,h2,h3,h4,h5,h6{

    font-family:var(--heading-font);

    font-weight:700;

    color:var(--secondary-color);

    margin-bottom:20px;

}

h1{

    font-size:60px;

}

h2{

    font-size:42px;

}

h3{

    font-size:32px;

}

h4{

    font-size:26px;

}

p{

    color:var(--text-light);

    margin-bottom:20px;

}

/*==============================
    SECTION
==============================*/

section{

    position:relative;

    padding:100px 0;

}

/*==============================
    CONTAINER
==============================*/

.container{

    max-width:1320px;

}

/*==============================
    BUTTONS
==============================*/

.btn-primary-custom{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );

    color:#fff;

    padding:16px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:var(--shadow-md);

}

.btn-primary-custom:hover{

    color:#fff;

    transform:translateY(-4px);

}

.btn-secondary-custom{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:transparent;

    color:#fff;

    border:2px solid #fff;

    padding:16px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-secondary-custom:hover{

    background:#fff;

    color:var(--primary-color);

}

/*==============================
    SECTION TITLE
==============================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--primary-color);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-title h2{

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

/*==============================
    HERO SECTION
==============================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

}

.hero video{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

   /* background:rgba(0,0,0,.35); */
   background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.00)
    );

}

.hero-content{

    position:relative;

    z-index:10;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:#fff;

}

.hero-content h1{

    color:#fff;

    font-size:72px;

    font-weight:800;

    margin-bottom:25px;

}

.hero-content p{

    color:#fff;

    font-size:22px;

    max-width:850px;

    margin:auto;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==============================
    SCROLL INDICATOR
==============================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    z-index:10;

}

.scroll-down span{

    display:block;

    width:30px;

    height:50px;

    border:2px solid #fff;

    border-radius:50px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    left:50%;

    top:8px;

    width:6px;

    height:6px;

    background:#fff;

    border-radius:50%;

    transform:translateX(-50%);

    animation:scrollMouse 2s infinite;

}

@keyframes scrollMouse{

0%{

    opacity:1;

    top:8px;

}

100%{

    opacity:0;

    top:30px;

}

}

/*==============================
    CARD
==============================*/

.card{

    border:none;

    border-radius:20px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

/*==============================
    UTILITIES
==============================*/

.text-primary{

    color:var(--primary-color)!important;

}

.text-white{

    color:#fff!important;

}

.bg-light-section{

    background:var(--section-bg);

}

/*==============================
    RESPONSIVE
==============================*/

@media(max-width:992px){

.hero-content h1{

    font-size:48px;

}

.hero-content p{

    font-size:18px;

}

section{

    padding:70px 0;

}

}

@media(max-width:768px){

.hero-content h1{

    font-size:36px;

}

.hero-content p{

    font-size:16px;

}

.btn-primary-custom,

.btn-secondary-custom{

    width:100%;

    justify-content:center;

}

.hero-buttons{

    flex-direction:column;

}

}

/*====================================================
                HERO TEXT
====================================================*/

.hero-text{

    max-width:900px;

    animation:heroFade 1.5s ease;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:12px 22px;

    border-radius:40px;

    color:#fff;

    margin-bottom:25px;

    font-weight:600;

    letter-spacing:.5px;

}

.hero-tag i{

    color:#FFD54F;

    margin-right:10px;

}

.hero-content h1{

    line-height:1.1;

    text-shadow:0 10px 30px rgba(0,0,0,.30);

}

.hero-content p{

    text-shadow:0 5px 20px rgba(0,0,0,.25);

}

.hero-buttons{

    margin-top:45px;

}

/*======================================
        HERO ANIMATION
======================================*/

@keyframes heroFade{

0%{

    opacity:0;

    transform:translateY(60px);

}

100%{

    opacity:1;

    transform:translateY(0);

}

}


/*==================================================
                IMPACT SECTION
==================================================*/

.impact-section{

    position:relative;

    z-index:50;

    margin-top:-30px;

    padding:0 0 80px;

}

.impact-wrapper{

    background:rgba(255,255,255,.97);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:25px;

    padding:55px 30px;

    box-shadow:

       0 30px 80px rgba(0,0,0,.12),

       0 10px 25px rgba(37,99,235,.08);

}

.impact-item{

    position:relative;

}

.impact-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;

    top:20px;

    width:1px;

    height:120px;

    background:#E8E8E8;

}

.impact-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #2563EB,
        #3B82F6
    );

    color:#fff;

    font-size:30px;

    margin-bottom:20px;

}

.impact-item h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:10px;

    color:#1E293B;

}

.impact-item p{

    color:#64748B;

    font-size:18px;

    margin:0;

}

/* Mobile */

@media(max-width:991px){

.impact-section{

    margin-top:40px;

}

.impact-item{

    margin-bottom:40px;

}

.impact-item::after{

    display:none;

}

}
