/* =========================
   UYSC WEBSITE CSS
========================= */

:root{
    --primary:#212529;
    --secondary:#6c757d;
    --light:#f8f9fa;
    --white:#ffffff;
    --accent:#f39c12;
}

/* =========================
   BODY
========================= */

body{
    font-family:'Noto Sans Devanagari',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#333;
    line-height:1.8;
}

/* =========================
   TOP BAR
========================= */

.top-bar{
    background:#212529;
    padding:8px 0;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    margin-right:20px;
    font-size:14px;
}

.social-icons a{
    margin-left:15px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#fff !important;
    padding:12px 0;
}

.navbar-brand img{
    max-height:70px;
}

.nav-link{
    font-weight:600;
    color:#333 !important;
    margin-left:12px;
    transition:.3s;
}

.nav-link:hover{
    color:#f39c12 !important;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    padding:10px;
}

.dropdown-item{
    padding:10px 15px;
    border-radius:8px;
    transition:.3s;
}

.dropdown-item:hover{
    background:#f8f9fa;
}

/* =========================
   BUTTONS
========================= */

.register-btn{
    background:#f39c12;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.register-btn:hover{
    background:#e67e22;
    color:#fff;
}

.btn-orange{
    background:#f39c12;
    color:#fff;
    border:none;
}

.btn-orange:hover{
    background:#e67e22;
    color:#fff;
}

/* =========================
   HERO SECTION
========================= */

.hero-slide{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.hero-img{
    width:100%;
    height:90vh;
    object-fit:cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:100%;
    z-index:5;
}

.hero-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:25px;
}

.swiper-pagination-bullet-active{
    background:#fff !important;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    font-size:40px;
    font-weight:700;
    color:#212529;
    margin-bottom:20px;
}

.section-subtitle{
    color:#6c757d;
}

/* =========================
   ABOUT SECTION
========================= */

.about-img{
    border-radius:20px;
    overflow:hidden;
}

.about-img img{
    width:100%;
    border-radius:20px;
}

/* =========================
   PROGRAM CARDS
========================= */


.program-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:all .4s ease;
    height:100%;
    border:1px solid #eee;
}

.program-card i{
    color:#f39c12;
    transition:.4s;
}

.program-card h4{
    color:#212529;
    transition:.4s;
}

.program-card p{
    color:#6c757d;
    transition:.4s;
}

.program-card:hover{

    transform:translateY(-10px);

    background:linear-gradient(
    135deg,
    #f39c12,
    #e67e22
    );

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.program-card:hover i,
.program-card:hover h4,
.program-card:hover p{

    color:#fff !important;

}

/* =========================
   COUNTER SECTION
========================= */

.counter-section{
    background:#f8f9fa;
}

.counter-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.counter-box h2{
    font-size:45px;
    font-weight:700;
    color:#212529;
}

.counter-box p{
    margin:0;
    font-weight:600;
}

/* =========================
   GALLERY
========================= */

.gallery img{
    width:100%;
    border-radius:15px;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.04);
}

/* =========================
   FOUNDER SECTION
========================= */

.founder-img{
    width:300px;
    height:300px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* =========================
   DONATION SECTION
========================= */

.donation-box{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* =========================
   CONTACT SECTION
========================= */

.contact-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#212529;
    color:#fff;
    padding:60px 0 30px;
}

.footer h5{
    margin-bottom:20px;
}

.footer a{
    color:#fff;
    text-decoration:none;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    z-index:9999;
    text-decoration:none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.hero-slide{
    height:70vh;
}

.hero-img{
    height:70vh;
}

.hero-content h1{
    font-size:32px;
}

.hero-content p{
    font-size:16px;
}

.section-title{
    font-size:28px;
}

.navbar-brand img{
    max-height:55px;
}

.top-bar{
    text-align:center;
}

.social-icons{
    text-align:center !important;
    margin-top:10px;
}

.register-btn{
    display:block;
    text-align:center;
    margin-top:15px;
}

.founder-img{
    width:220px;
    height:220px;
    margin-bottom:20px;
}

}