/* ==========================================
   GENERAL
========================================== */

body {
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    background: #ffffff;
    }

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* ==========================================
   NAVBAR
========================================== */

.main-navbar {
    background: #0d6efd;
}

.main-navbar .navbar-brand {
    font-weight: 700;
}

.main-navbar .nav-link {
    color: #ffffff;
    font-weight: 500;
}

.main-navbar .nav-link:hover {
    color: #dbeafe;
}


/* ==========================================
   HERO SECTION
========================================== */

.hero-slide {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-title {
     font-size:50px;
    line-height:1.2;
    font-weight:700;
    white-space:nowrap;
    color:#ffffff !important;
}

.hero-subtitle {
    margin-top: 20px;
    line-height: 1.7;
}

.hero-button {
    transition: 0.3s;
}

.hero-button:hover {
    transform: translateY(-3px);
}

.swiper-pagination-bullet {
    background: #ffffff;
}


/* ==========================================
   COUNTERS
========================================== */

.counter-section {
    background: #f8fafc;
}

.counter-card{
    background:#ffffff;
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
    width:100%;
}

.counter-card:hover {
    transform: translateY(-10px);
}

.counter-icon {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0d6efd;
     
}


.counter-value{
    display:flex;
    justify-content:center;
    align-items:flex-start;
}

.counter-number{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:5;
}

.counter-plus{
    font-size:16px !important;
    font-weight:600;
    color:#0d6efd;
    margin-left:2px;
    margin-top:8px;
    line-height:1;
}

/* ==========================================
   SECTION TITLES
========================================== */

.section-title {
    font-weight: 700;
    color: #0f172a;
}


/* ==========================================
   FOOTER
========================================== */

.main-footer {
    background: #0f172a;
    color: #ffffff;
}

.main-footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.main-footer p,
.main-footer a {
    color: #cbd5e1;
}

.main-footer a:hover {
    color: #ffffff;
}


/* ==========================================
   SOCIAL ICONS
========================================== */

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon:hover{
    background:#0d6efd;
    transform:translateY(-3px);
}

/* ==========================================
   WHY ACCEND
========================================== */

.why-card{
    background:#ffffff;
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-icon{
    font-size:50px;
    margin-bottom:20px;
    color:#0d6efd;
}

/* ==========================================
   FEATURED COURSES
========================================== */

.course-card{
    background:#ffffff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.course-card:hover{
    transform:translateY(-10px);
}

.course-image{
    width:100%;
    height:220px;
    object-fit:cover;
}

.course-body{
    padding:25px;
}

.course-fee{
    font-size:22px;
    font-weight:700;
    color:#0d6efd;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 992px) {

    .counter-number {
        font-size: 35px;
    }

}

@media (max-width: 768px) {

    .counter-card {
        padding: 30px 20px;
    }
}

.counter-plus{
    font-size:32px;
    font-weight:700;
    color:#0d6efd;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonial-card{
    background:#ffffff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-image{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.testimonial-designation{
    color:#6b7280;
    margin-bottom:15px;
}

.testimonial-stars{
    color:#f59e0b;
    margin-bottom:20px;
    font-size:18px;
}

/* ==========================================
   PARTNERS
========================================== */

.partner-card{
    background:#ffffff;
    border-radius:20px;
    padding:20px;
    height:150px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.partner-card:hover{
    transform:translateY(-5px);
}

.partner-logo{
    max-width:100%;
    max-height:88px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.3s;
}

.partner-logo:hover{
    transform:scale(1.05);
}

/* ==========================================
   BLOGS
========================================== */

.blog-card{
    background:#ffffff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-image{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-body{
    padding:25px;
}

.blog-date{
    color:#6b7280;
    margin-bottom:15px;
    font-size:14px;
}

/* ==========================================
   EVENTS
========================================== */

.event-card{
    background:#ffffff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.event-card:hover{
    transform:translateY(-10px);
}

.event-image{
    width:100%;
    height:240px;
    object-fit:cover;
}

.event-body{
    padding:25px;
}

.event-date{
    color:#0d6efd;
    font-weight:600;
    margin-bottom:15px;
}

/* ==========================================
   CTA SECTION
========================================== */

.cta-section{

padding:100px 0;

background-size:cover;

background-position:center;

background-repeat:no-repeat;

}

.cta-section h2{

font-size:48px;

font-weight:700;

margin-bottom:25px;

}

.cta-section p{

font-size:20px;

line-height:1.8;

}

/* ==========================================
   ABOUT PAGE rgb=85 insted of zero in both place to get the blue clour
========================================== */

.about-hero{
    background:linear-gradient(rgba(13,110,253,.85),rgba(13,110,253,.85)),
    url('../../uploads/about/about-banner.jpg');
    background-size:cover;
    background-position:center;
    padding: 40px 0;
}
/*
.about-hero{
    min-height:300px;
}*/


/* hiding about hero text 
.about-hero h1,
.about-hero h4,
.about-hero p{
    visibility: hidden; 
} */

.about-text{
    color:#64748b;
    line-height:1.9;
    text-align:justify;
}

/* ==========================================
   ABOUT CARD
========================================== */

.about-card{
    background:#ffffff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-icon{
    width:80px;
    height:80px;
    background:#e0edff;
    color:#0d6efd;
    font-size:32px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.about-card:hover .about-icon{
    background:#0d6efd;
    color:#ffffff;
}

/* ==========================================
   MOTTO SECTION
========================================== */

.motto-section{
    background:#0d6efd;
    color:#ffffff;
}

.motto-section h2{
    font-size:42px;
    font-weight:700;
}

/* ==========================================
   FOCUS AREA
========================================== */

.focus-card{
    background:#ffffff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.focus-card:hover{
    transform:translateY(-8px);
}

.focus-icon{
    font-size:36px;
    color:#0d6efd;
    margin-bottom:20px;
}

.focus-card h6{
    font-weight:600;
}

/* ==========================================
   ROADMAP
========================================== */

.roadmap-card{
    background:#ffffff;
    padding:40px 25px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.roadmap-card:hover{
    transform:translateY(-10px);
}

.roadmap-phase{
    color:#0d6efd;
    font-weight:700;
    margin-bottom:20px;
}

/* ==========================================
   COMMITMENT SECTION
========================================== */

.commitment-section{

    background:
    linear-gradient(rgba(15,23,42,.85),rgba(15,23,42,.85)),
    url('../images/commitment-bg.jpg');

    background-size:cover;
    background-position:center;
}

.commitment-section h2{
    font-size:42px;
    font-weight:700;
}

.commitment-section p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
}

/* ==========================================
   CLOSING SECTION
========================================== */

.closing-section{
    background:#f8fafc;
}

.closing-section h2{
    font-size:48px;
    font-weight:700;
    color:#0f172a;
}

.closing-section h4{
    color:#0d6efd;
    font-weight:700;
}

.closing-section p{
    color:#64748b;
    line-height:1.9;
    max-width:900px;
    margin:auto;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.about-hero{
    padding:80px 0;
}

.motto-section h2{
    font-size:30px;
}

.commitment-section h2{
    font-size:32px;
}

.closing-section h2{
    font-size:34px;
}

}

/* ===========================
   COMMUNITIES PAGE
=========================== */

/* HERO SECTION */

.community-hero{

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #0a58ca
    );

    background-image:
    linear-gradient(
    rgba(13,110,253,0.85),
    rgba(10,88,202,0.85)
    ),
    url('../../uploads/community/community-banner.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    color:#ffffff;

    padding: 40px 0;

}

.community-hero h1{

    font-weight:700;
    margin-bottom:20px;

}

.community-hero h4{

    font-weight:500;
    margin-bottom:10px;

}

.community-hero p{

    max-width:900px;
    margin:auto;
    line-height:1.8;

}

/* SECTION TITLES */

.section-title{

    font-size:2rem;
    font-weight:700;
    color:#0d6efd;

}

/* COMMUNITY CARDS */

.about-card{

    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

    transition:all .3s ease;

}

.about-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 30px rgba(0,0,0,0.12);

}

.about-card h4,
.about-card h5{

    margin-top:15px;
    margin-bottom:15px;

    font-weight:600;
    color:#212529;

}

.about-card p{

    color:#6c757d;

    line-height:1.8;

}

/* ICONS */

.about-icon{

    width:70px;
    height:70px;

    background:#e7f1ff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto;

}

.about-icon i{

    font-size:28px;

    color:#0d6efd;

}

/* ACTIVITIES */

.focus-card{

    background:#ffffff;

    padding:30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.focus-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.focus-icon{

    width:70px;
    height:70px;

    background:#e7f1ff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 15px;

}

.focus-icon i{

    font-size:28px;

    color:#0d6efd;

}

.focus-card h6{

    font-size:1rem;
    font-weight:600;

}

/* FUTURE VISION */

.future-vision{

    background:#f8f9fa;

}

.future-vision p{

    max-width:900px;
    margin:auto;

    line-height:1.9;

    color:#495057;

}

/* JOIN MOVEMENT */

.community-join{

    background:
    linear-gradient(
    135deg,
    #0d6efd,
    #0a58ca
    );

}

.community-join h2{

    font-weight:700;

}

.community-join p{

    max-width:900px;

    margin:auto;

    line-height:1.9;

}

.community-join .btn{

    padding:12px 35px;

    border-radius:50px;

    font-weight:600;

}

/* MOBILE */

@media(max-width:768px){

    .community-hero{

        padding:80px 20px;

    }

    .community-hero h1{

        font-size:2.2rem;

    }

    .community-hero h4{

        font-size:1.2rem;

    }

    .section-title{

        font-size:1.8rem;

    }

    .about-card{

        padding:25px;

    }

}

/* ===================================
   EXPERTS PAGE
=================================== */

.experts-hero{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

background-image:
linear-gradient(
rgba(13,110,253,.85),
rgba(10,88,202,.85)
),
url('../../uploads/experts/experts-banner.jpg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;

color:#fff;

padding: 40px 0;

}

.experts-hero h1{

font-weight:700;

}

.experts-hero p{

max-width:900px;
margin:auto;

line-height:1.8;

}

/* Expert Card */

.expert-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.expert-card:hover{

transform:translateY(-5px);

box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.expert-image{

width:100%;

height:300px;

object-fit:cover;

}

.expert-placeholder{

height:250px;

display:flex;

align-items:center;

justify-content:center;

background:#f8f9fa;

}

.expert-placeholder i{

font-size:80px;

color:#0d6efd;

}

.expert-content{

padding:25px;

}

.expert-content h4{

font-weight:600;

margin-bottom:10px;

}

.expert-content h6{

color:#0d6efd;

margin-bottom:15px;

}

.experts-join{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

}

.experts-join p{

max-width:900px;

margin:auto;

line-height:1.9;

}

@media(max-width:768px){

.experts-hero{

padding:80px 20px;

}

.experts-hero h1{

font-size:2.2rem;

}

}

/* ===================================
   MEMBERSHIP PAGE
=================================== */

.membership-hero{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

background-image:
linear-gradient(
rgba(13,110,253,.85),
rgba(10,88,202,.85)
),
url('../../uploads/membership/membership-banner.jpg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;

color:#fff;

padding: 40px 0;

}

.membership-card{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

height:100%;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.membership-card:hover{

transform:translateY(-5px);

box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.membership-icon{

width:80px;
height:80px;

margin:auto;

display:flex;

align-items:center;

justify-content:center;

background:#e7f1ff;

border-radius:50%;

margin-bottom:20px;

}

.membership-icon i{

font-size:35px;

color:#0d6efd;

}

.membership-fee{

margin-top:20px;

font-weight:700;

color:#0d6efd;

font-size:18px;

}

.membership-join{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

}

.membership-join p{

max-width:900px;

margin:auto;

line-height:1.9;

}

@media(max-width:768px){

.membership-hero{

padding:80px 20px;

}

.membership-hero h1{

font-size:2.2rem;

}

}

/* ===========================
   COURSES PAGE
=========================== */

.courses-hero{
    
background:linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

color:#fff;

padding: 40px 0;
}


.course-category-card{

cursor:pointer;

background:#fff;

padding:30px;

height:100%;

text-align:center;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

}

.course-category-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.15);

transition:.3s;

}

/* hide old category hover
.course-category-card:hover{

transform:translateY(-5px);

} */

.course-category-icon{

width:80px;

height:80px;

background:#e7f1ff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin:auto auto 20px;

}

.course-category-icon i{

font-size:35px;

color:#0d6efd;

}

.course-card{

background:#fff;

border-radius:20px;

overflow:hidden;

height:100%;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.course-placeholder{

height:220px;

display:flex;

align-items:center;

justify-content:center;

background:#f8f9fa;

}

.course-placeholder i{

font-size:70px;

color:#0d6efd;

}

.course-content{

padding:25px;

}

.course-meta{

list-style:none;

padding:0;

margin-top:20px;

}

.course-meta li{

margin-bottom:10px;

}

.courses-join{

background:linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

}

@media(max-width:768px){

.courses-hero{

padding:80px 20px;

}

}

#learning-programs{
    scroll-margin-top:100px;
}

html{
    scroll-behavior:smooth;
}

/* ===================================
   EVENTS PAGE
=================================== */

.events-hero{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

background-image:
linear-gradient(
rgba(13,110,253,.85),
rgba(10,88,202,.85)
),
url('../../uploads/events/events-banner.jpg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;

color:#fff;

padding:40px 0;

}

.event-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.event-card:hover{

transform:translateY(-5px);

box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.event-image{

width:100%;

height:240px;

object-fit:cover;

}

.event-placeholder{

height:240px;

display:flex;

align-items:center;

justify-content:center;

background:#f8f9fa;

}

.event-placeholder i{

font-size:80px;

color:#0d6efd;

}

.event-content{

padding:25px;

}

.event-meta{

list-style:none;

padding:0;

margin:20px 0;

}

.event-meta li{

margin-bottom:10px;

}

.events-join{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

}

.events-join p{

max-width:900px;

margin:auto;

line-height:1.8;

}

@media(max-width:768px){

.events-hero{

padding:80px 20px;

}

.events-hero h1{

font-size:2.2rem;

}

}

/* =====================================
   BLOGS PAGE
===================================== */

.blogs-hero{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

background-image:
linear-gradient(
rgba(13,110,253,.85),
rgba(10,88,202,.85)
),
url('../../uploads/blogs/blog-banner.jpg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;

padding:40px 0;

color:#fff;

}

.blog-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.blog-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.blog-image{

width:100%;

height:240px;

object-fit:cover;

}

.blog-placeholder{

height:240px;

display:flex;

align-items:center;

justify-content:center;

background:#f8f9fa;

}

.blog-placeholder i{

font-size:70px;

color:#0d6efd;

}

.blog-content{

padding:25px;

}

.blog-content h5{

font-weight:600;

margin-top:15px;

margin-bottom:15px;

min-height:55px;

}

.blog-content p{

color:#666;

line-height:1.7;

}

.sidebar-card{

background:#fff;

padding:25px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

margin-bottom:30px;

}

.sidebar-card a{

color:#222;

transition:.3s;

}

.sidebar-card a:hover{

color:#0d6efd;

}

.blog-content-full{

font-size:17px;

line-height:1.9;

color:#444;

}

.blog-content-full img{

max-width:100%;

height:auto;

border-radius:10px;

margin:20px 0;

}

.blog-content-full h2,
.blog-content-full h3{

margin-top:30px;

margin-bottom:20px;

}

.blog-content-full p{

margin-bottom:20px;

}

.blog-content-full ul{

margin-bottom:20px;

}

.blog-content-full li{

margin-bottom:10px;

}

.badge{

font-size:.85rem;

padding:8px 14px;

border-radius:20px;

}

@media(max-width:768px){

.blogs-hero{

padding:80px 20px;

}

.blogs-hero h1{

font-size:2.2rem;

}

.blog-image{

height:220px;

}

.blog-placeholder{

height:220px;

}

}

/* BLOG DETAILS */

.blog-content-full{

font-size:17px;

line-height:1.9;

color:#444;

}

.blog-content-full p{

margin-bottom:20px;

}

.sidebar-card{

background:#fff;

padding:25px;

border-radius:15px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/*=================================
CONTACT PAGE
=================================*/

.contact-hero{

background:
linear-gradient(
135deg,
#0d6efd,
#0a58ca
);

background-image:
linear-gradient(
rgba(13,110,253,.85),
rgba(10,88,202,.85)
),
url('../../uploads/contact/contact-banner.jpg');

background-size:cover;
background-position:center;
background-repeat:no-repeat;

padding:40px 0;

color:#fff;

}

.contact-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

height:100%;

transition:.3s;

box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.contact-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.contact-card i{

font-size:45px;

color:#0d6efd;

margin-bottom:20px;

}

.contact-info-box{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

height:100%;

}

.social-links a{

display:inline-flex;

justify-content:center;

align-items:center;

width:45px;

height:45px;

background:#0d6efd;

color:#fff;

border-radius:50%;

margin-right:10px;

text-decoration:none;

transition:.3s;

}

.social-links a:hover{

background:#0a58ca;

transform:translateY(-3px);

}

form input,
form select,
form textarea{

padding:12px;

border-radius:10px;

}

.alert{

border-radius:12px;

}

@media(max-width:768px){

.contact-hero{

padding:80px 20px;

}

.contact-hero h1{

font-size:2.3rem;

}

}

/*=================================
CONTACT FORM
=================================*/

.contact-info-box h3{

font-size:28px;

font-weight:700;

color:#0d6efd;

margin-bottom:20px;

}

.contact-info-box h5{

font-size:22px;

font-weight:600;

margin-top:30px;

margin-bottom:20px;

}

.contact-info-box p{

font-size:16px;

line-height:1.8;

color:#555;

margin-bottom:20px;

}

.contact-info-box strong{

color:#222;

font-weight:600;

}

.contact-info-box hr{

margin:20px 0;

opacity:.15;

}

.form-control,
.form-select{

border-radius:12px;

padding:14px 18px;

border:1px solid #d9d9d9;

box-shadow:none;

transition:.3s;

}

.form-control:focus,
.form-select:focus{

border-color:#0d6efd;

box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

textarea.form-control{

resize:none;

}

.form-label{

font-weight:600;

color:#333;

margin-bottom:8px;

}

.btn-primary{

padding:12px 30px;

border-radius:30px;

font-weight:600;

}

.btn-primary:hover{

transform:translateY(-2px);

transition:.3s;

}

.contact-info-box{

position:sticky;

top:110px;

}

@media(max-width:991px){

.contact-info-box{

position:relative;

top:auto;

margin-top:40px;

}

}

/*====================================================
ACCEND PROFESSIONAL NAVBAR
====================================================*/

.main-navbar{

background:#0b4f8a;

padding:12px 0;

transition:.3s;

z-index:9999;

}

.main-navbar .navbar-nav .nav-link{

color:#fff;

font-weight:500;

font-size:15px;

padding:12px 16px;

transition:.3s;

}

.main-navbar .navbar-nav .nav-link:hover{

color:#ffd54f;

}

.main-navbar .dropdown-menu{

border:none;

border-radius:15px;

padding:10px 0;

box-shadow:0 12px 35px rgba(0,0,0,.15);

margin-top:15px;

min-width:240px;

}

.main-navbar .dropdown-item{

padding:12px 22px;

font-size:15px;

font-weight:500;

transition:.3s;

}

.main-navbar .dropdown-item:hover{

background:#0d6efd;

color:#fff;

padding-left:28px;

}

.main-navbar .btn{

font-weight:600;

padding:10px 24px;

border-radius:30px;

transition:.3s;

}

.main-navbar .btn:hover{

transform:translateY(-2px);

box-shadow:0 10px 25px rgba(0,0,0,.20);

}

@media(min-width:992px){

.navbar .dropdown:hover>.dropdown-menu{

display:block;

animation:dropdownFade .25s ease;

}

}

@keyframes dropdownFade{

from{

opacity:0;

transform:translateY(8px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.main-navbar .nav-link.active{

color:#ffd54f !important;

font-weight:700;

}

/*==================================
GALLERY PAGE
==================================*/

.gallery-hero{

background:
linear-gradient(
135deg,
rgba(13,110,253,.88),
rgba(10,88,202,.88)
),
url('../../uploads/gallery/gallery-banner.jpg');

background-size:cover;

background-position:center;

padding:40px 0;

color:#fff;

}

.gallery-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.gallery-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.gallery-image{

width:100%;

height:250px;

object-fit:cover;

}

.gallery-placeholder{

height:250px;

display:flex;

align-items:center;

justify-content:center;

background:#f5f5f5;

}

.gallery-placeholder i{

font-size:70px;

color:#0d6efd;

}

.gallery-content{

padding:22px;

}

.gallery-feature-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.gallery-feature-image{

height:300px;

width:100%;

object-fit:cover;

}

.gallery-feature-content{

padding:25px;

}

.video-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

@media(max-width:768px){

.gallery-hero{

padding:80px 20px;

}

.gallery-image{

height:220px;

}

.gallery-feature-image{

height:220px;

}

}

.gallery-card{

position:relative;

overflow:hidden;

}

.gallery-card img{

transition:.45s;

}

.gallery-card:hover img{

transform:scale(1.08);

}

.gallery-card::after{

content:'\f00e';

font-family:"Font Awesome 6 Free";

font-weight:900;

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

width:70px;

height:70px;

border-radius:50%;

background:rgba(13,110,253,.85);

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:26px;

opacity:0;

transition:.35s;

}

.gallery-card:hover::after{

opacity:1;

}

/*==================================
PUBLICATIONS PAGE
==================================*/

.publications-hero{

background:
linear-gradient(
135deg,
rgba(13,110,253,.88),
rgba(10,88,202,.88)
),
url('../../uploads/publications/publications-banner.jpg');

background-size:cover;

background-position:center;

padding:40px 0;

color:#fff;

}

.publications-hero h1{

font-weight:700;

}

.publications-hero h4{

font-weight:500;

margin-top:15px;

}

.publications-hero p{

max-width:900px;

margin:auto;

margin-top:25px;

font-size:20px;

}

@media(max-width:768px){

.publications-hero{

padding:80px 20px;

}

.publications-hero h1{

font-size:42px;

}

}

/*==================================
PARTNERS PAGE
==================================*/

/* Hero */

.partners-hero{

background:
linear-gradient(
135deg,
rgba(13,110,253,.88),
rgba(10,88,202,.88)
);

padding:40px 0;

color:#fff;

}

.partners-hero h1{

font-size:52px;

font-weight:700;

margin-bottom:15px;

}

.partners-hero h4{

font-weight:500;

margin-bottom:20px;

}

.partners-hero p{

max-width:900px;

margin:auto;

font-size:20px;

line-height:1.8;

}

/*==================================
PARTNER CARD
==================================*/

.partner-card{

background:#fff;

border-radius:15px;

padding:25px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:all .35s ease;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}

.partner-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

/* Partner Logo */

.partner-logo{

height:90px;

max-width:100%;

object-fit:contain;

margin-bottom:18px;

}

/* Partner Icons */

.partner-card i{

display:block;

font-size:55px;

color:#0d6efd;

margin-bottom:18px;

}

/* Partner Name */

.partner-card h4{

font-size:22px;

font-weight:600;

line-height:1.35;

color:#0b1f44;

margin-bottom:15px;

min-height:60px;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

}

/* Partner Description */

.partner-card p{

font-size:17px;

line-height:1.7;

color:#666;

margin-bottom:18px;

}

/* Buttons */

.partner-card .btn{

margin-top:5px;

}

/*==================================
PARTNER DETAILS
==================================*/

.partner-content{

line-height:1.9;

font-size:17px;

color:#444;

}

/*==================================
SIDEBAR
==================================*/

.card{

border:none;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:768px){

.partners-hero{

padding:70px 20px;

}

.partners-hero h1{

font-size:36px;

}

.partners-hero h4{

font-size:22px;

}

.partners-hero p{

font-size:17px;

}

.partner-logo{

height:70px;

}

.partner-card{

padding:20px;

}

.partner-card i{

font-size:45px;

}

.partner-card h4{

font-size:20px;

min-height:auto;

}

.partner-card p{

font-size:16px;

}

}

/*==================================
TESTIMONIALS PAGE
==================================*/

.testimonials-hero{

background:
linear-gradient(
135deg,
rgba(13,110,253,.88),
rgba(10,88,202,.88)
);

padding:40px 0;

color:#fff;

}

.testimonials-hero h1{

font-size:52px;

font-weight:700;

}

.testimonials-hero h4{

font-weight:500;

margin-top:15px;

}

.testimonials-hero p{

max-width:850px;

margin:auto;

font-size:20px;

line-height:1.8;

}

/* Testimonial Card */

.testimonial-card{

background:#fff;

padding:30px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

height:100%;

}

.testimonial-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.testimonial-photo{

width:80px;

height:80px;

border-radius:50%;

object-fit:cover;

}

.testimonial-avatar{

width:80px;

height:80px;

border-radius:50%;

background:#0d6efd;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

}

.testimonial-content{

font-size:17px;

line-height:1.9;

color:#444;

}

@media(max-width:768px){

.testimonials-hero{

padding:70px 20px;

}

.testimonials-hero h1{

font-size:36px;

}

.testimonials-hero p{

font-size:17px;

}

}

/*==================================
FAQ PAGE
==================================*/

/* Hero */

.faq-hero{

background:
linear-gradient(
135deg,
rgba(13,110,253,.88),
rgba(10,88,202,.88)
);

padding:40px 0;

color:#fff;

}

.faq-hero h1{

font-size:52px;

font-weight:700;

margin-bottom:15px;

}

.faq-hero h4{

font-weight:500;

margin-bottom:20px;

}

.faq-hero p{

max-width:900px;

margin:auto;

font-size:20px;

line-height:1.8;

}

/* Search Box */

#faqSearch{

border-radius:50px;

padding:15px 25px;

font-size:18px;

border:2px solid #e5e5e5;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

#faqSearch:focus{

border-color:#0d6efd;

box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

/* Accordion */

.accordion-item{

border:none;

margin-bottom:15px;

border-radius:12px;

overflow:hidden;

box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.accordion-button{

font-size:19px;

font-weight:600;

padding:20px;

background:#fff;

color:#0b1f44;

}

.accordion-button:not(.collapsed){

background:#0d6efd;

color:#fff;

}

.accordion-button:focus{

box-shadow:none;

}

.accordion-body{

font-size:17px;

line-height:1.8;

background:#fff;

color:#555;

padding:25px;

}

/* Responsive */

@media(max-width:768px){

.faq-hero{

padding:70px 20px;

}

.faq-hero h1{

font-size:36px;

}

.faq-hero h4{

font-size:22px;

}

.faq-hero p{

font-size:17px;

}

.accordion-button{

font-size:17px;

}

}
/*==================================
POLICY PAGES
==================================*/

/* Hero */

.policy-hero{

background:
linear-gradient(
135deg,
rgba(13,110,253,.88),
rgba(10,88,202,.88)
);

padding:40px 0;

color:#fff;

}

.policy-hero h1{

font-size:52px;

font-weight:700;

margin-bottom:15px;

}

.policy-hero h4{

font-size:28px;

font-weight:500;

margin-bottom:20px;

}

.policy-hero p{

max-width:900px;

margin:auto;

font-size:20px;

line-height:1.8;

}

/* Main Policy Box */

.policy-box{

background:#fff;

padding:30px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

font-size:17px;

line-height:1.9;

color:#444;

}

/* Main Title */

.policy-box h1{

font-size:42px;

font-weight:700;

margin-bottom:15px;

color:#0b1f44;

}

/* Section Headings */

.policy-box h2{

font-size:30px;

font-weight:700;

color:#0b1f44;

margin-top:35px;

margin-bottom:15px;

line-height:1.4;

}

.policy-box h3{

font-size:24px;

font-weight:600;

color:#0b1f44;

margin-top:30px;

margin-bottom:12px;

line-height:1.4;

}

/* Paragraph */

.policy-box p{

margin-bottom:18px;

line-height:1.9;

}

/* Lists */

.policy-box ul{

padding-left:25px;

margin-bottom:20px;

}

.policy-box ol{

padding-left:25px;

margin-bottom:20px;

}

.policy-box li{

margin-bottom:10px;

line-height:1.8;

}

/* Links */

.policy-box a{

color:#0d6efd;

text-decoration:none;

}

.policy-box a:hover{

text-decoration:underline;

}

/* Horizontal Line */

.policy-box hr{

margin:25px 0;

border-color:#ddd;

}

/* Strong */

.policy-box strong{

color:#0b1f44;

font-weight:600;

}

/* Responsive */

@media(max-width:768px){

.policy-hero{

padding:70px 20px;

}

.policy-hero h1{

font-size:36px;

}

.policy-hero h4{

font-size:22px;

}

.policy-hero p{

font-size:17px;

}

.policy-box{

padding:20px;

}

.policy-box h1{

font-size:32px;

}

.policy-box h2{

font-size:24px;

margin-top:25px;

}

.policy-box h3{

font-size:20px;

}

.policy-box p{

font-size:16px;

}

}

/*==================================
VOLUNTEER PAGE
==================================*/

/* Hero */

.volunteer-hero{

background:
linear-gradient(
135deg,
rgba(13,110,253,.88),
rgba(10,88,202,.88)
);

padding:40px 0;

color:#fff;

}

.volunteer-hero h1{

font-size:52px;

font-weight:700;

margin-bottom:15px;

}

.volunteer-hero h4{

font-size:28px;

font-weight:500;

margin-bottom:20px;

}

.volunteer-hero p{

max-width:900px;

margin:auto;

font-size:20px;

line-height:1.8;

}

/*==================================
Volunteer Cards
==================================*/

.volunteer-card{

background:#fff;

border-radius:15px;

padding:25px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}

.volunteer-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.volunteer-card i{

font-size:55px;

color:#0d6efd;

margin-bottom:20px;

}

.volunteer-card h4{

font-size:22px;

font-weight:600;

margin-bottom:15px;

line-height:1.4;

color:#0b1f44;

}

.volunteer-card p{

font-size:17px;

line-height:1.8;

color:#666;

margin-bottom:0;

}

/*==================================
Volunteer Form
==================================*/

.volunteer-form{

background:#fff;

padding:35px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.volunteer-form h2{

font-weight:700;

margin-bottom:25px;

text-align:center;

color:#0b1f44;

}

.volunteer-form label{

font-weight:600;

margin-bottom:8px;

color:#0b1f44;

}

.volunteer-form .form-control,

.volunteer-form .form-select{

border-radius:10px;

padding:12px 15px;

border:1px solid #ddd;

}

.volunteer-form .form-control:focus,

.volunteer-form .form-select:focus{

border-color:#0d6efd;

box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}

.volunteer-form textarea{

resize:vertical;

}

.volunteer-form .btn{

padding:12px 35px;

font-size:18px;

border-radius:30px;

}

/*==================================
Section Headings
==================================*/

.volunteer-section-title{

font-size:40px;

font-weight:700;

margin-bottom:20px;

color:#0b1f44;

}

/*==================================
Responsive
==================================*/

@media(max-width:768px){

.volunteer-hero{

padding:70px 20px;

}

.volunteer-hero h1{

font-size:36px;

}

.volunteer-hero h4{

font-size:22px;

}

.volunteer-hero p{

font-size:17px;

}

.volunteer-card{

padding:20px;

}

.volunteer-card i{

font-size:45px;

}

.volunteer-card h4{

font-size:20px;

}

.volunteer-card p{

font-size:16px;

}

.volunteer-form{

padding:20px;

}

.volunteer-section-title{

font-size:30px;

}

}