﻿/*====================================================
            GOOGLE FONTS
====================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#3F0091;
    --secondary:#3f0091;

    --primary-light:#826EFF;
    --primary-dark:#2B0066;

    --bg-light:#F7F3FF;
    --bg-section:#F3EEFF;

    --heading:#2A1455;
    --text:#666;

}

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


body{

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    background: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

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

a{
    text-decoration:none !important;
    transition:0.3s ease;
}

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

p{
    margin-bottom:1rem;
    color:#666666;
}

h1,h2,h3,h4,h5,h6{
    color:#3f0091;
    font-weight:700;
    margin-bottom:15px;
}

/*====================================================
                TOP BAR
====================================================*/

.top-header{

    background:linear-gradient(90deg,#3f0091,#3f0091);
    color:#fff;

    padding:10px 0;

    font-size:14px;

}

.top-header span{

    font-weight:500;

}

.top-header a{

    color:#fff;

    margin:0 5px;

    transition:.3s;

}

.top-header a:hover{

    color:#6857ff;

}

.social-icons{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:8px;

}

.social-icons a{

    width:36px;

    height:36px;

    border-radius:50%;

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

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.social-icons a:hover{

    background:#fff;

    color:#4A148C;

    transform:translateY(-3px);

}


/*====================================================
                HEADER
====================================================*/

#header{

    position:absolute;

    left:0;

    top:62px;

    width:100%;

    z-index:999;

    transition:.35s;

}


/*====================================================
                NAVBAR
====================================================*/

.navbar{

      background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.05);

    backdrop-filter:blur(12px);

    border-radius:16px;

    padding:18px 20px;

    transition:.35s;

}

.navbar.scrolled{

     background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    border-radius:0;

}


/*====================================================
                LOGO
====================================================*/

.logo{

    height:82px;

    transition:.35s;

}

.navbar.scrolled .logo{

    height:90px;

}


/*====================================================
                MENU
====================================================*/

.navbar-nav{

    gap:6px;

}

.nav-link{

     color:#222;
   

    font-size:15px;

    font-weight:600;

    padding:18px 16px !important;

    position:relative;

    transition:.35s;

    text-transform:uppercase;

}

.navbar.scrolled .nav-link{

    color:#222;

}

.nav-link:hover{

       color:#4A148C !important;

}

.navbar.scrolled .nav-link:hover{

    color:var(--primary)!important;

}


/*====================================================
            ANIMATED UNDERLINE
====================================================*/

.nav-link::before{

content:"";

position:absolute;

left:50%;

bottom:10px;

width:0;

height:3px;

background:#4A148C;

transform:translateX(-50%);

transition:.35s;

border-radius:10px;

}

.nav-link:hover::before,

.nav-link.active::before{

width:65%;

}


/*====================================================
            RIGHT SIDE
====================================================*/

.header-right{

    gap:15px;

}


/*====================================================
            SEARCH BUTTON
====================================================*/

.search-btn{

    width:46px;

    height:46px;

    border-radius:50%;

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

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.35s;

}

.navbar.scrolled .search-btn{

    background:#F4F4F4;

    color:#222;

}

.search-btn:hover{

    background:#6857ff;

    color:#222;

}


/*====================================================
            DONATE BUTTON
====================================================*/

.donate-btn{

    padding:14px 28px;

    border-radius:50px;

    background:linear-gradient(135deg,#4A148C,#673AB7);

    color:#fff;

     border-radius:12px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

  

}

.donate-btn:hover{

    transform:translateY(-4px);
    background:linear-gradient(135deg,#673AB7,#4A148C);
    color:#fff;

}


/*====================================================
            MOBILE TOGGLE
====================================================*/

.navbar-toggler{

    border:none;

    color:#fff;

    font-size:26px;

    box-shadow:none!important;

}

.navbar.scrolled .navbar-toggler{

    color:#222;

}
/*=====================================================
                DROPDOWN MENU
=====================================================*/

.nav-item {
    position: relative;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: all .35s ease;
    /*border: none;*/
    border-radius: 15px;
    min-width: 280px;
    padding: 12px 0;
    background:#fff;

border:1px solid #ECE5FF;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    margin-top: 0;
    pointer-events: none;
}

@media(min-width:1200px){

.dropdown:hover>.dropdown-menu{

    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;

}

}

/*=====================================================
            DROPDOWN ITEMS
=====================================================*/

.dropdown-item{

    position:relative;
    padding:14px 24px;
    font-size:15px;
    font-weight:500;
    color:#555;
    transition:.35s;

}

.dropdown-item:hover{

    background:#F6F0FF;

    color:#4A148C;
    padding-left:38px;

}

.dropdown-item::before{

    content:"";
    position:absolute;
    left:18px;
    top:50%;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
    transform:translateY(-50%);

}

.dropdown-item:hover::before{

    width:10px;

}

/*=====================================================
        DROPDOWN ARROW
=====================================================*/

.dropdown-toggle::after{

    border:none;
    content:"\f107";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    font-size:12px;
    margin-left:8px;
    transition:.35s;

}

.dropdown:hover>.dropdown-toggle::after{

    transform:rotate(180deg);

}

/*=====================================================
        ACTIVE MENU
=====================================================*/

.nav-link.active{

   color:#4A148C !important;

}

.navbar.scrolled .nav-link.active{

    color:var(--primary)!important;

}

/*=====================================================
        DONATE BUTTON
=====================================================*/

.donate-btn{

    position:relative;
    overflow:hidden;
  
}

.donate-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:45%;

height:100%;

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

transform:skewX(-25deg);

transition:.8s;

}

.donate-btn:hover::before{

left:160%;

}

/*=====================================================
        SEARCH BUTTON
=====================================================*/

.search-btn{

position:relative;

overflow:hidden;

}

.search-btn::before{

content:"";

position:absolute;

top:-100%;

left:-100%;

width:220%;

height:220%;

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

transform:rotate(45deg);

transition:.6s;

}

.search-btn:hover::before{

top:100%;

left:100%;

}

/*=====================================================
        STICKY NAVBAR
=====================================================*/

.navbar.scrolled{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

animation:slideDown .4s ease;

}

@keyframes slideDown{

0%{

transform:translateY(-100%);

}

100%{

transform:translateY(0);

}

}

/*=====================================================
        MOBILE MENU
=====================================================*/

@media(max-width:1199px){

#header{

position:relative;

top:0;

}

.navbar{

background:#fff;

backdrop-filter:none;

border-radius:0;

padding:15px;

}

.navbar-collapse{

background:#fff;

margin-top:15px;

border-radius:15px;

padding:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

max-height:75vh;

overflow-y:auto;

}

.navbar-nav{

width:100%;

}

.nav-item{

width:100%;

border-bottom:1px solid #eee;

}

.nav-item:last-child{

border:none;

}

.nav-link{

padding:15px 5px!important;

color:#222!important;

display:flex;

justify-content:space-between;

align-items:center;

}

.dropdown-menu{

display:none;

position:static;

opacity:1;

visibility:visible;

transform:none;

box-shadow:none;

background:#fafafa;

padding:5px 0;

margin:5px 0 10px;

border-radius:10px;

pointer-events:auto;

}

.dropdown-menu.show{

display:block;

}

.dropdown-item{

padding:12px 20px;

}

.header-right{

display:none!important;

}

}

/*=====================================================
        TABLET
=====================================================*/

@media(max-width:991px){

.top-header{

text-align:center;

padding:12px 0;

}

.top-header .row>div{

margin-bottom:8px;

}

.top-header .row>div:last-child{

margin-bottom:0;

}

.logo{

height:60px;

}

}

/*=====================================================
        MOBILE
=====================================================*/

@media(max-width:767px){

.logo{

height:52px;

}

.nav-link{

font-size:15px;

}

.dropdown-item{

font-size:14px;

}

.navbar-toggler{

font-size:24px;

}

.top-header{

font-size:13px;

}

.social-icons{

justify-content:center;

}

}

/*=====================================================
        SMALL MOBILE
=====================================================*/

@media(max-width:576px){

.logo{

height:90px;

}

.navbar{

padding:12px;

}

.top-header{

font-size:12px;

}

.top-header a{

display:inline-block;

margin:3px;

}

.social-icons a{

width:32px;

height:32px;

}

}
/*==========================
      Scroll Top
==========================*/

#scrollTop{

position:fixed;

right:25px;

bottom:25px;

width:52px;

height:52px;

border:none;

border-radius:50%;

background:#5C2D91;

color:#fff;

cursor:pointer;

font-size:18px;

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

z-index:99999;

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

}

#scrollTop.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}

#scrollTop:hover{

background:#7B4DDB;

transform:translateY(-5px);

}

/*----------------------------------------footer------------------------------------------------*/

/*==================================================
                PREMIUM FOOTER
==================================================*/

.main-footer{

    background:linear-gradient(180deg,#3B146D 0%,#2A0C53 100%);
    position:relative;
    padding:90px 0 0;
    color:#fff;
    overflow:hidden;

}

.main-footer .container{

    position:relative;
    z-index:2;

}

/*==================================
        FOOTER TOP
===================================*/

.footer-top{

    padding-bottom:60px;

}

/*==================================
        FOOTER WIDGET
===================================*/

.footer-widget{

    margin-bottom:40px;

}

.footer-widget h4{

    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:30px;
    position:relative;
    display:inline-block;

}

.footer-widget h4::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:50px;
    height:3px;
    background:#9589ff;
    border-radius:30px;

}

/*==================================
        LOGO
===================================*/

.footer-logo{

    width:100px;
    margin-bottom:25px;
    border-radius: 25px;
}

/*==================================
        ABOUT TEXT
===================================*/

.footer-widget p{

    color:rgba(255,255,255,.75);
    line-height:30px;
    font-size:15px;
    margin-bottom:30px;

}

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

.footer-widget ul{

    margin:0;
    padding:0;
    list-style:none;

}

.footer-widget ul li{

    margin-bottom:18px;

}

.footer-widget ul li:last-child{

    margin-bottom:0;

}

.footer-widget ul li a{

    color:rgba(255,255,255,.75);
    font-size:15px;
    transition:.35s;
    display:inline-flex;
    align-items:center;

}

.footer-widget ul li a::before{

    content:"\f105";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    margin-right:10px;
    color:#9589ff;
    transition:.35s;

}

.footer-widget ul li a:hover{

    color:#fff;
    padding-left:8px;

}

.footer-widget ul li a:hover::before{

    margin-right:14px;

}

/*==================================
        DIVIDER
===================================*/

.footer-divider{

    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:20px 0 50px;

}
/*==================================
        SOCIAL ICONS
===================================*/

.footer-social{

    display:flex;
    align-items:center;
    gap:12px;
    margin-top:30px;

}

.footer-social a{

    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

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

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

    transition:.35s;

}

.footer-social a:hover{

    background:white;

    color:#4A148C;

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(255,213,79,.35);

}

/*==================================
        CONTACT INFO
===================================*/

.footer-contact{

    margin-top:15px;

}

.footer-contact > div{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:24px;

}

.footer-contact > div:last-child{

    margin-bottom:0;

}

.footer-contact i{

    width:48px;

    height:48px;

    min-width:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

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

    color:#9589ff;

    font-size:18px;

    margin-top:2px;

    transition:.35s;

}

.footer-contact > div:hover i{

    background:#fff;

    color:#4A148C;

}

.footer-contact span,

.footer-contact a{

    flex:1;

    display:block;

    padding-top:10px;

    color:rgba(255,255,255,.78);

    text-decoration:none;

    line-height:28px;

    word-break:break-word;

    transition:.35s;

}

.footer-contact a:hover{

    color:#6857ff;

}

/*==================================
        NEWSLETTER
===================================*/

.newsletter{

    margin-top:35px;

}

.newsletter h5{

    color:#fff;

    font-size:20px;

    margin-bottom:18px;

    font-weight:600;

}

.newsletter-box{

    display:flex;

    align-items:center;

    background:#fff;

    border-radius:50px;

    overflow:hidden;

    height:58px;

}

.newsletter-box input{

    flex:1;

    border:none;

    outline:none;

    padding:0 22px;

    font-size:15px;

    color:#444;

}

.newsletter-box input::placeholder{

    color:#999;

}

.newsletter-box button{

    width:62px;

    height:58px;

    border:none;

    cursor:pointer;

    background:linear-gradient(135deg,#673AB7,#4A148C);

    color:#fff;

    transition:.35s;

}

.newsletter-box button:hover{

    background:#6857ff;

    color:#4A148C;

}

/*==================================
        SMALL DESCRIPTION
===================================*/

.newsletter p{

    margin-top:18px;

    margin-bottom:0;

    color:rgba(255,255,255,.65);

    font-size:14px;

    line-height:24px;

}

/*==================================
        HOVER EFFECTS
===================================*/

.footer-widget{

    transition:.35s;

}

.footer-widget:hover{

    transform:translateY(-5px);

}



/*==================================
        BUTTON EFFECT
===================================*/

.newsletter-box button i{

    transition:.35s;

}

.newsletter-box button:hover i{

    transform:translateX(3px);

}


/*=========================================
        FOOTER BOTTOM
=========================================*/

.footer-bottom{

    /*margin-top:60px;*/
    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom .row{

    align-items:center;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);

    font-size:15px;

}

.footer-bottom a{

    color:rgba(255,255,255,.65);

    transition:.35s;

    margin-left:18px;

}

.footer-bottom a:hover{

    color:#6857ff;

}

/*=========================================
        BOTTOM SOCIAL
=========================================*/

.footer-bottom-social{

    display:flex;

    justify-content:flex-end;

    gap:15px;

}

.footer-bottom-social a{

    color:rgba(255,255,255,.60);

    font-size:18px;

    transition:.35s;

}

.footer-bottom-social a:hover{

    color:#6857ff;

    transform:translateY(-3px);

}

/*=========================================
        BACK TO TOP
=========================================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:linear-gradient(135deg,#673AB7,#4A148C);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(74,20,140,.35);

    transition:.35s;

    z-index:999;

}

.back-top:hover{

    background:#6857ff;

    color:#4A148C;

    transform:translateY(-6px);

}

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

.footer-widget{

    opacity:0;

    animation:footerFade .8s forwards;

}

.footer-widget:nth-child(2){

    animation-delay:.15s;

}

.footer-widget:nth-child(3){

    animation-delay:.30s;

}

.footer-widget:nth-child(4){

    animation-delay:.45s;

}

@keyframes footerFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================================
        TABLET
=========================================*/

@media(max-width:991px){

.main-footer{

    padding-top:70px;

}

.footer-widget{

    margin-bottom:45px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom .text-end{

    text-align:center !important;

    margin-top:15px;

}

.footer-bottom-social{

    justify-content:center;

    margin-top:20px;

}

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:767px){

.main-footer{

    padding-top:60px;

}

.footer-logo{

    width:70px;

}

.footer-widget{

    margin-bottom:35px;

}

.footer-widget h4{

    font-size:21px;

}

.footer-widget p{

    font-size:14px;

    line-height:28px;

}

.footer-widget ul li{

    margin-bottom:14px;

}

/*.footer-social{

    justify-content:center;

}*/

.footer-contact li{

    gap:12px;

}

.newsletter-box{

    flex-direction:column;

    height:auto;

    border-radius:16px;

    background:transparent;

}

.newsletter-box input{

    width:100%;

    height:52px;

    border-radius:10px;

    margin-bottom:12px;

}

.newsletter-box button{

    width:100%;

    height:52px;

    border-radius:10px;

}

.footer-bottom p{

    margin-bottom:15px;

}

.footer-bottom a{

    display:inline-block;

    margin:8px;

}

.back-top{

    width:46px;

    height:46px;

    right:15px;

    bottom:15px;

}

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media(max-width:480px){

.footer-widget h4{

    font-size:20px;

}

.footer-social a{

    width:42px;

    height:42px;

}

.footer-contact i{

    width:38px;

    height:38px;

}

.newsletter h5{

    font-size:18px;

}

}

/*=========================================
        SELECTION
=========================================*/

::selection{

    background:#4A148C;

    color:#fff;

}

::-moz-selection{

    background:#4A148C;

    color:#fff;

}

/*-----------------------------------------------hero----------------------------------------*/

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

.hero-section{
    position: relative;
    overflow: hidden;
    background: #fff;
}

.heroSlider{
    width: 100%;
    height: 680px;
    position: relative;
}

.heroSlider .swiper-slide{
    position: relative;
    overflow: hidden;
}

/*==================================================
                HERO IMAGE
==================================================*/

.hero-bg{
    position: absolute;
    inset: 0;
}

.hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transition: transform 8s linear;
}

.swiper-slide-active .hero-bg img{
    transform: scale(1.08);
}

/*==================================================
                LEFT WHITE GRADIENT
==================================================*/

.hero-overlay{
    position: absolute;
    inset: 0;
   background: linear-gradient(
    90deg,
    rgba(247,243,255,.98) 0%,
    rgba(247,243,255,.92) 25%,
    rgba(247,243,255,.75) 45%,
    rgba(247,243,255,.40) 65%,
    rgba(247,243,255,0) 100%
);
}

/*==================================================
                CONTENT AREA
==================================================*/

.hero-content{
    position: relative;
    z-index: 5;
    max-width: 560px;
    /*padding-top: 110px;*/
    margin-top: -170px;
}

/*==================================================
                SUB TITLE
==================================================*/

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:#F4EEFF;

    color:#4A148C;

    font-size:15px;

    font-weight:600;

    margin-bottom:20px;
    margin-right: 228px;
    margin-top: 145px;
}

.hero-subtitle i{

    color:#4A148C;

}

/*==================================================
                MAIN TITLE
==================================================*/
.hero-content h1{

    font-size:54px;

    font-weight:800;

    line-height:1.15;

    letter-spacing:-1px;

    color:#3f0091;

    margin-bottom:20px;

}

.hero-content h1 span{

    color:#6857ff;

    position:relative;

    display:inline-block;

}

.hero-content h1 span::after{

    /*content:"";*/

    position:absolute;

    left:0;

    bottom:6px;

    width:100%;

    height:10px;

    background:#E8DDF8;

    border-radius:30px;

    z-index:-1;

}
/*==================================================
                DESCRIPTION
==================================================*/

.hero-content p{

    font-size:16px;

    color:#555;

    line-height:30px;

    margin-bottom:35px;

    max-width:480px;

}

/*==================================================
                BUTTON AREA
==================================================*/

.hero-btns{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

/* Primary Button */

.theme-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 30px;

    border-radius:10px;

    background:#4A148C;

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.theme-btn:hover{

    background:#673AB7;

    color:#fff;

    transform:translateY(-3px);

}

/* Outline Button */

.outline-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 30px;

    border-radius:10px;

    border:2px solid #4A148C;

    color:#4A148C;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.outline-btn:hover{

    background:#4A148C;

    color:#fff;

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

.hero-content>*{

    opacity:0;

    transform:translateY(40px);

}

.swiper-slide-active .hero-subtitle{

    animation:fadeUp .8s .2s forwards;

}

.swiper-slide-active h1{

    animation:fadeUp .8s .5s forwards;

}

.swiper-slide-active p{

    animation:fadeUp .8s .8s forwards;

}

.swiper-slide-active .hero-btns{

    animation:fadeUp .8s 1.1s forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*==================================================
            SWIPER NAVIGATION
==================================================*/

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    color:#4A148C;

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

    transition:.35s;

}

.heroSlider .swiper-button-next{

    right:30px;

}

.heroSlider .swiper-button-prev{

    left:30px;

}

.heroSlider .swiper-button-next::after,
.heroSlider .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}

.heroSlider .swiper-button-next:hover,
.heroSlider .swiper-button-prev:hover{

    background:#4A148C;

}

.heroSlider .swiper-button-next:hover::after,
.heroSlider .swiper-button-prev:hover::after{

    color:#fff;

}

/*==================================================
            PAGINATION
==================================================*/

.heroSlider .swiper-pagination{

    bottom:25px !important;

}

.heroSlider .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.6;

    transition:.35s;

}

.heroSlider .swiper-pagination-bullet-active{

    width:36px;

    border-radius:30px;

    opacity:1;

    background:#4A148C;

}

/*==================================================
            HERO SHADOW
==================================================*/

.hero-content{

    text-shadow:0 1px 2px rgba(0,0,0,.05);

}

/*==================================================
            IMPACT STRIP
==================================================*/

.hero-counter{
    position: relative;
    margin-top: -55px;
    z-index: 10;
}

.hero-counter .container{
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.hero-counter .row{
    align-items: center;
}

/* Counter Box */

.counter-box{
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 100px;
}

/* Divider */

.hero-counter .col-lg-3{
    position: relative;
}

.hero-counter .col-lg-3:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 65px;
    background: #ececec;
}

/* Number */

.hero-counter h3{
    margin: 0;
    font-size:37px;
    font-weight: 700;
    line-height: 1;
    color: #4A148C;
}

/* Text */

.hero-counter p{
    margin: 12px 0 0;
    font-size: 17px;
    color: #666;
    line-height: 1.4;
}

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

@media(max-width:1200px){

.heroSlider{

height:620px;

}

.hero-content{

padding-top:90px;

}

.hero-content h1{

font-size:50px;

}

}

@media(max-width:991px){

.heroSlider{

height:580px;

}

.hero-content{

text-align:center;

max-width:100%;

padding-top:70px;

}

.hero-content p{

margin:0 auto 30px;

}

.hero-btns{

justify-content:center;

}

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev{

display:none;

}

.hero-counter{

margin-top:30px;

}

.hero-counter .col-md-3::after{

display:none;

}

}

@media(max-width:767px){

.heroSlider{

height:520px;

}

.hero-overlay{

background:linear-gradient(

180deg,

rgba(255,255,255,.90),

rgba(255,255,255,.60),

rgba(255,255,255,.10)

);

}

.hero-content{

padding-top:60px;

}

.hero-content h1{

font-size:34px;

line-height:1.2;

}

.hero-content p{

font-size:15px;

line-height:26px;

}

.hero-subtitle{

font-size:13px;

padding:8px 16px;

}

.theme-btn,
.outline-btn{

width:100%;

}

.hero-counter .container{

padding:20px;

}

.hero-counter h3{

font-size:28px;

}

.hero-counter .col-6{

margin-bottom:20px;

}

}

@media(max-width:480px){

.heroSlider{

height:470px;

}

.hero-content{

padding-top:50px;

}

.hero-content h1{

font-size:28px;

}

.hero-content p{

display:none;

}

.hero-btns{

gap:10px;

}

}
/*=========================================
        SLIDE CONTENT POSITION
=========================================*/

.hero-section .container{

    position:relative;
    height:100%;

}

.hero-content{

    display:flex;
    flex-direction:column;
    justify-content:center;
    height:680px;
    max-width:560px;
    position:relative;
    z-index:10;

}

/*=========================================
        BUTTON EFFECT
=========================================*/

.theme-btn,
.outline-btn{

    overflow:hidden;
    position:relative;

}

.theme-btn::before,
.outline-btn::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:100%;

    height:100%;

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

    transform:skewX(-25deg);

    transition:.6s;

}

.theme-btn:hover::before,
.outline-btn:hover::before{

    left:130%;

}

/*=========================================
        HERO IMAGE
=========================================*/

.hero-bg img{

    filter:brightness(.95);

}

/*=========================================
        IMAGE ZOOM
=========================================*/

.swiper-slide-active .hero-bg img{

    animation:zoomHero 8s linear forwards;

}

@keyframes zoomHero{

0%{

transform:scale(1);

}

100%{

transform:scale(1.08);

}

}

/*=========================================
        NAVIGATION
=========================================*/

.heroSlider:hover .swiper-button-next{

    right:40px;

}

.heroSlider:hover .swiper-button-prev{

    left:40px;

}

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev{

    opacity:0;

    transition:.35s;

}

.heroSlider:hover .swiper-button-next,
.heroSlider:hover .swiper-button-prev{

    opacity:1;

}

/*=========================================
        PAGINATION
=========================================*/

.heroSlider .swiper-pagination{

    bottom:35px !important;

}

.heroSlider .swiper-pagination-bullet{

    margin:0 7px !important;

}

/*=========================================
        CONTENT WIDTH
=========================================*/

.hero-content{

    padding-left:15px;

}

.hero-content h1{

    max-width:620px;

}

.hero-content p{

    max-width:520px;

}

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

.hero-section{

    margin-top:0;

}

.hero-counter{

    margin-bottom:90px;

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:991px){

.hero-content{

height:auto;

padding-top:140px;

padding-bottom:90px;

}

.hero-content h1{

font-size:42px;

}

}

@media(max-width:767px){

.heroSlider{

height:540px;

}

.hero-content{

padding-top:110px;

text-align:center;

}

.hero-content h1{

font-size:30px;

line-height:1.3;

}

.hero-content p{

display:block;

font-size:15px;

line-height:28px;

}

.hero-btns{

justify-content:center;

}

.hero-subtitle{

margin:auto auto 20px;

}

}

@media(max-width:576px){

.heroSlider{

height:500px;

}

.hero-content{

padding-top:90px;

}

.hero-content h1{

font-size:37px;

}

.hero-content p{

display:none;

}

.theme-btn,
.outline-btn{

height:48px;

font-size:14px;

padding:0 24px;
width: 50%;

}

}
.hero-content{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.hero-content.hero-active{

    opacity:1;

    transform:translateY(0);
    margin-top: -302px;

}
.hero-row{

    height:680px;

}

/*-----------------------------------------about-------------------------------------------------*/

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

.about-section{

    padding:30px 0;

    background:#fff;

    overflow:hidden;

    position:relative;

}

/*=========================================
        IMAGE COLLAGE
=========================================*/

.about-images{

    position:relative;

    width:100%;

    max-width:470px;

    margin:auto;

    height:500px;

}

.about-images img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:22px;

    transition:.4s;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.about-images img:hover{

    transform:translateY(-8px);

}

/* Image 1 */

.img-one{

    position:absolute;

    left:0;

    top:0;

    width:230px;

    height:300px;

    z-index:3;

}

/* Image 2 */

.img-two{

    position:absolute;

    right:0;

    top:40px;

    width:210px;

    height:220px;

    z-index:2;

}

/* Image 3 */

.img-three{

    position:absolute;

    right:30px;

    bottom:0;

    width:260px;

    height:190px;

    z-index:2;

}

/*=========================================
        EXPERIENCE BOX
=========================================*/

.experience-box{

    position:absolute;

    left:10px;

    bottom:45px;

    width:140px;

    height:140px;

    background:#4A148C;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    box-shadow:0 20px 40px rgba(74,20,140,.30);

    z-index:5;

}

.experience-box h3{

    font-size:42px;

    font-weight:700;

    margin-bottom:5px;

}

.experience-box span{

    font-size:15px;

    text-align:center;

    line-height:22px;

}

/*=========================================
        CONTENT
=========================================*/

.about-content{

    padding-left:35px;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#F3EDFF;

    color:#4A148C;

    border-radius:30px;

    font-size:15px;

    font-weight:600;

    margin-bottom:25px;

}

.section-tag i{

    color:#4A148C;

}

/*=========================================
        HEADING
=========================================*/

.about-content h2{

    font-size:50px;

    font-weight:800;

    line-height:1.15;

    color:#3f0091;

    margin-bottom:25px;

}

.about-content h2 span{

    color:#3f0091;

}

/*=========================================
        DESCRIPTION
=========================================*/

.about-content p{

    color:#666;

    font-size:16px;

    line-height:30px;

    margin-bottom:35px;

}

/*=========================================
        LIST
=========================================*/

.about-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin-bottom:35px;

}

.about-list div{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:16px;

    color:#333;

    font-weight:500;

}

.about-list i{

    color:#6857ff;

    font-size:18px;

}

/*=========================================
        BUTTON
=========================================*/

.about-btn .theme-btn{

    height:52px;

    padding:0 30px;

    border-radius:6px;

}

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

@media(max-width:991px){

.about-content{

padding-left:0;

margin-top:50px;

}

.about-images{

height:460px;

}

.about-content h2{

font-size:42px;

}

}

@media(max-width:767px){

.about-section{

padding:70px 0;

}

.about-images{

height:420px;

max-width:340px;

}

.img-one{

width:170px;

height:220px;

}

.img-two{

width:150px;

height:170px;

}

.img-three{

width:180px;

height:140px;

right:0;

}

.experience-box{

width: 117px;
    height: 117px;
    left: 19px;
    bottom: 30px;

}

.experience-box h3{

font-size:28px;

}

.about-content{

text-align:center;

}

.about-content h2{

font-size:34px;

}

.about-list{

grid-template-columns:1fr;

}

.about-btn{

display:flex;

justify-content:center;

}

}
.about-images,
.about-content{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.about-images.show{

    opacity:1;

    transform:translateX(0);

}

.about-content.show{

    opacity:1;

    transform:translateY(0);
    

}




/*----------------------------------------------Our Focus Areas-----------------------------*/

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

.focus-section{

    padding:50px 0;

    background:#F8F9FC;

    position:relative;

    overflow:hidden;

}


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

.section-title{

    font-size:50px;

    font-weight:800;

    color:#3f0091;

    margin-bottom:15px;

    line-height:1.2;

}

.section-title span{

    color:#3f0091;

}

.section-desc{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:30px;

}

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

.focus-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:470px;

    cursor:pointer;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.45s;

}

.focus-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

/*=========================================
            IMAGE
=========================================*/

.focus-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.focus-card:hover img{

    transform:scale(1.12);

}

/*=========================================
            OVERLAY
=========================================*/

.focus-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(

    to top,

    rgba(35,20,75,.95),

    rgba(35,20,75,.55),

    rgba(35,20,75,.10)

    );

    transition:.45s;

}

/*=========================================
            NUMBER
=========================================*/

.focus-overlay span{

    font-size:52px;

    font-weight:800;

    color:rgba(255,255,255,.18);

    line-height:1;

    margin-bottom:15px;

}

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

.focus-overlay h4{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

}

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

.focus-overlay p{

    color:rgba(255,255,255,.85);

    line-height:28px;

    margin-bottom:25px;

}

/*=========================================
            BUTTON
=========================================*/

.focus-overlay a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#9589ff;

    font-weight:600;

    transition:.35s;

}

.focus-overlay a i{

    transition:.35s;

}

.focus-card:hover a i{

    transform:translateX(8px);

}
/*=========================================
        TOP BORDER ANIMATION
=========================================*/

.focus-card::before{

    /*content:"";*/

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:5px;

    background:linear-gradient(90deg,#4A148C,#7E57C2);

    transition:.45s;

    z-index:5;

}

.focus-card:hover::before{

    width:100%;

}

/*=========================================
        SHINE EFFECT
=========================================*/

.focus-card::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-70%;

    width:55%;

    height:260%;

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

    transform:rotate(25deg);

    transition:.8s;

}

.focus-card:hover::after{

    left:150%;

}

/*=========================================
        OVERLAY ANIMATION
=========================================*/

.focus-overlay{

    transform:translateY(120px);

    transition:.45s;

}

.focus-card:hover .focus-overlay{

    transform:translateY(0);

}

/*=========================================
        DESCRIPTION
=========================================*/

.focus-overlay p{

    opacity:0;

    transform:translateY(20px);

    transition:.35s;

}

.focus-card:hover .focus-overlay p{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
        BUTTON
=========================================*/

.focus-overlay a{

    opacity:0;

    transform:translateY(20px);

    transition:.4s;

}

.focus-card:hover .focus-overlay a{

    opacity:1;

    transform:translateY(0);

}

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

.focus-overlay h4{

    transition:.35s;

}

.focus-card:hover h4{

    color:#9589ff;

}

/*=========================================
        NUMBER
=========================================*/

.focus-card:hover .focus-overlay span{

    color:rgba(255,255,255,.30);

}

/*=========================================
        IMAGE EFFECT
=========================================*/

.focus-card:hover img{

    filter:brightness(.85);

}

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

@media(max-width:1200px){

.focus-card{

height:430px;

}

.section-title{

font-size:44px;

}

}

@media(max-width:991px){

.focus-section{

padding:80px 0;

}

.focus-card{

height:400px;

}

.section-title{

font-size:40px;

}

}

@media(max-width:767px){

.focus-section{

padding:40px 0;

}

.focus-card{

height:360px;

}

.focus-overlay{

padding:22px;

transform:none;

}

.focus-overlay span{

font-size:38px;

}

.focus-overlay h4{

font-size:22px;

}

.focus-overlay p{

font-size:15px;

line-height:26px;

opacity:1;

transform:none;

}

.focus-overlay a{

opacity:1;

transform:none;

}

.section-title{

font-size:32px;

}

.section-desc{

font-size:15px;

line-height:28px;

}

}

@media(max-width:576px){

.focus-card{

height:340px;

border-radius:18px;

}

.focus-overlay{

padding:20px;

}

.focus-overlay h4{

font-size:20px;

}

.focus-overlay span{

font-size:34px;

}

.section-title{

font-size:28px;

}

}

/*=========================================
        SCROLL ANIMATION
=========================================*/

.focus-card{

    opacity:0;

    transform:translateY(50px);

    transition:
        opacity .7s ease,
        transform .7s ease,
        box-shadow .35s;

}

.focus-card.show{

    opacity:1;

    transform:translateY(0);

}

/*-------------------------------------------------impact----------------------------------------------*/

/*=========================================
        PREMIUM CTA PARALLAX SECTION
=========================================*/

.cta-parallax{
    position:relative;
    padding:35px 0;
    overflow:hidden;
    background:url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
    background-attachment:fixed;
}

/* Overlay */

.cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(35,20,75,.95), rgba(35,20,75,.55), rgba(35,20,75,.95) );
}

/* Container */

.cta-content{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
    text-align:center;
}

/* Tag */

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    margin-bottom:25px;

     background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);

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

    border-radius:50px;

 color:#ffffff;

    font-size:15px;
    font-weight:600;

}
.cta-content{

    position:relative;
    z-index:2;

}

.cta-content::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    background:radial-gradient(
        rgba(255,255,255,.08),
        transparent 70%
    );

    z-index:-1;

    filter:blur(40px);

}
.cta-tag i{
     color:#C9A9FF;
}

/* Heading */

.cta-content h2{
    color:#fff;
    font-size:60px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.cta-content h2 span{
    color:#9589ff;
}

/* Paragraph */

.cta-content p{
    max-width:700px;
    margin:auto auto 45px;
    color:rgba(255,255,255,.88);
    font-size:18px;
    line-height:32px;
}

/* Button Wrapper */

.cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

/* Primary Button */

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:220px;
    height:58px;

    padding:0 35px;

    background:#9589ff;
    color:#3f0091;

    font-size:16px;
    font-weight:700;

    border-radius:60px;

    transition:.35s;
}

.cta-btn:hover{
    background:#fff;
    color:#3f0091;
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(255,255,255,.25);
}

/* Outline Button */

.cta-btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:220px;
    height:58px;

    padding:0 35px;

    border:2px solid rgba(255,255,255,.35);

   color:#ffffff;

    border-radius:60px;

    font-size:16px;
    font-weight:700;

    transition:.35s;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

}

.cta-btn-outline:hover{
    background:#ffffff;
     color:#4A148C;
     border-color:#ffffff;
    transform:translateY(-5px);
}

/* Shine Effect */

.cta-btn,
.cta-btn-outline{
    position:relative;
    overflow:hidden;
}

.cta-btn::before,
.cta-btn-outline::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:40%;
    height:100%;
    background:rgba(255,255,255,.35);
    transform:skewX(-25deg);
    transition:.8s;
}

.cta-btn:hover::before,
.cta-btn-outline:hover::before{
    left:150%;
}

/*=========================================
            TABLET
=========================================*/

@media(max-width:991px){

.cta-parallax{
    padding:100px 20px;
    background-attachment:scroll;
}

.cta-content h2{
    font-size:44px;
}

.cta-content p{
    font-size:16px;
    line-height:30px;
}

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:767px){

.cta-parallax{
    padding:80px 15px;
}

.cta-tag{
    font-size:13px;
    padding:10px 18px;
}

.cta-content h2{
    font-size:32px;
    line-height:1.3;
}

.cta-content p{
    font-size:15px;
    line-height:28px;
    margin-bottom:35px;
}

.cta-buttons{
    flex-direction:column;
    gap:15px;
}

.cta-btn,
.cta-btn-outline{
    width: 58%;
    min-width: 74%;
}

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media(max-width:480px){

.cta-parallax{
    padding:40px 15px;
}

.cta-content h2{
    font-size:28px;
}

.cta-content p{
    font-size:14px;
    line-height:26px;
}

.cta-tag{
    font-size:12px;
}

.cta-btn,
.cta-btn-outline{
    height:52px;
    font-size:15px;
}

}


/*-----------------------------------------------coomunity----------------------------------------------------*/

/*=========================================
        COMMUNITY IN ACTION
=========================================*/

.community-action{
    padding:90px 0;
    background:#fff;
    overflow:hidden;
    position:relative;
}

.community-action .section-heading{
    max-width:720px;
    margin:0 auto 60px;
}

.community-action .section-heading p{
    margin-top:18px;
    color:#666;
    line-height:30px;
}

/*=========================================
        IMAGE
=========================================*/

.community-image{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.community-image img{

    width:100%;

    height:480px;

    object-fit:cover;

    display:block;

    transition:opacity .8s ease,
               transform 6s ease;

}

.community-image:hover img{

    transform:scale(1.05);

}

/* Overlay */

.community-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
                rgba(45,25,80,.35),
                rgba(45,25,80,.05));

    z-index:1;

}

/* Badge */

.image-badge{

    position:absolute;

    left:25px;

    bottom:25px;

    z-index:2;

    display:flex;

    align-items:center;

    gap:12px;

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

    padding:14px 22px;

    border-radius:40px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.image-badge i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#F3EDFF;

    color:#4A148C;

    display:flex;

    align-items:center;

    justify-content:center;

}

.image-badge span{

    font-weight:600;

    color:#3f0091;

}

/*=========================================
        RIGHT CONTENT
=========================================*/

.community-content{

    position:relative;

    min-height:460px;

    padding-left:35px;

}

/* Slides */

.community-item{

    position:absolute;

    left:35px;

    right:0;

    top:0;

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:all .7s ease;

}

.community-item.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* Icon */

.community-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:#F3EDFF;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.community-icon i{

    font-size:30px;

    color:#4A148C;

}

/* Heading */

.community-item h3{

    font-size:34px;

    font-weight:700;

    color:#3f0091;

    margin-bottom:18px;

}

/* Paragraph */

.community-item p{

    color:#666;

    line-height:30px;

    margin-bottom:28px;

}

/*=========================================
        LIST
=========================================*/

.community-item ul{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.community-item ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

    color:#333;

    font-weight:500;

}

.community-item ul li i{

    color:#6857ff;

    font-size:18px;

}

/*=========================================
        BUTTON
=========================================*/

.community-item .theme-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    background:#4A148C;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    transition:.35s;

}

.community-item .theme-btn:hover{

    background:#6857ff;

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================
        DOTS
=========================================*/

.community-dots{

    position:absolute;

    left:35px;

    bottom:0;

    display:flex;

    gap:10px;

}

.community-dots .dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#d5c8ef;

    cursor:pointer;

    transition:.35s;

}

.community-dots .dot.active{

    width:34px;

    border-radius:20px;

    background:#4A148C;

}

/*=========================================
        FADE IMAGE
=========================================*/

.community-image img.fade{

    opacity:0;

}

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

@media(max-width:991px){

.community-content{

    padding-left:0;

    min-height:520px;

    margin-top:40px;

}

.community-item{

    left:0;

}

.community-dots{

    left:0;

}

}

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

@media (max-width:767px){

.community-action{
    padding:60px 0;
}

.community-action .section-heading{
    margin-bottom:35px;
    text-align:center;
}

.community-image{
    margin-bottom:30px;
    border-radius:18px;
}

.community-image img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* Badge */

.image-badge{

    left:15px;
    right:15px;
    bottom:15px;

    padding:12px 16px;

    gap:10px;

    border-radius:14px;

}

.image-badge i{

    width:38px;
    height:38px;
    font-size:15px;

}

.image-badge span{

    font-size:14px;

}

/* Right Content */

.community-content{

    min-height:auto;

    padding-left:0;

}

/* Remove absolute positioning */

.community-item{

    position:relative;

    left:auto;

    right:auto;

    top:auto;

    opacity:1;

    visibility:visible;

    transform:none;

    display:none;

}

.community-item.active{

    display:block;

}

/* Icon */

.community-icon{

    width:60px;
    height:60px;

    margin-bottom:18px;

}

.community-icon i{

    font-size:24px;

}

/* Heading */

.community-item h3{

    font-size:26px;

    line-height:1.3;

    margin-bottom:15px;

}

/* Paragraph */

.community-item p{

    font-size:15px;

    line-height:28px;

    margin-bottom:22px;

}

/* List */

.community-item ul{

    margin-bottom:25px;

}

.community-item ul li{

    font-size:15px;

    gap:10px;

    margin-bottom:12px;

}

.community-item ul li i{

    font-size:16px;

}

/* Button */

.community-item .theme-btn{

    width:100%;

    justify-content:center;

    padding:14px;

}

/* Dots */

.community-dots{

    position:relative;

    left:0;

    bottom:0;

    justify-content:center;

    margin-top:25px;

}

.community-dots .dot{

    width:10px;

    height:10px;

}

.community-dots .dot.active{

    width:28px;

}

}


/*--------------------------------------------------gallery----------------------------*/

/*=========================================
        FLOATING GALLERY
=========================================*/

.floating-gallery{

    position:relative;

    padding:25px 0 0;

    margin-bottom:-90px;

    z-index:20;

    overflow:hidden;

    background:transparent;

}

/*=========================================
        HEADING
=========================================*/

.gallery-title{

    margin-bottom:45px;

}

.gallery-title .section-title{

    margin-bottom:0;

}

/*=========================================
        SLIDER
=========================================*/

.gallery-slider{

    width:100%;

    overflow:hidden;

    position:relative;

    padding:20px 0;

}

/* Gradient Fade */

.gallery-slider::before,
.gallery-slider::after{

    /*content:"";*/

    position:absolute;

    top:0;

    width:140px;

    height:100%;

    z-index:5;

    pointer-events:none;

}

.gallery-slider::before{

    left:0;

    background:linear-gradient(to right,#fff,transparent);

}

.gallery-slider::after{

    right:0;

    background:linear-gradient(to left,#fff,transparent);

}

/*=========================================
        TRACK
=========================================*/

.gallery-track{

    display:flex;

    align-items:center;

    gap:25px;

    width:max-content;

    animation:galleryScroll 35s linear infinite;

}

.gallery-slider:hover .gallery-track{

    animation-play-state:paused;

}

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

.gallery-item{

    flex:none;

    width:260px;

    height:180px;

    border-radius:22px;

    overflow:hidden;

    position:relative;

    background:#fff;

    border:8px solid #fff;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    transition:.4s;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-item:hover{

    transform:translateY(-10px);

}

.gallery-item:hover img{

    transform:scale(1.12);

}

/*=========================================
        OVERLAY
=========================================*/

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
        rgba(74,20,140,.70),
        rgba(74,20,140,.10));

    opacity:0;

    transition:.4s;

    z-index:1;

}

.gallery-item:hover::before{

    opacity:1;

}

/*=========================================
        ICON
=========================================*/

.gallery-item::after{

    content:"\f030";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%) scale(.5);

    width:60px;

    height:60px;

    border-radius:50%;

    background:#fff;

    color:#4A148C;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    opacity:0;

    transition:.4s;

    z-index:2;

}

.gallery-item:hover::after{

    opacity:1;

    transform:translate(-50%,-50%) scale(1);

}

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

@keyframes galleryScroll{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}

/*=========================================
        FOOTER
=========================================*/

.footer{

    position:relative;

    z-index:1;

    padding-top:140px;

}

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

@media(max-width:991px){

.gallery-item{

    width:220px;

    height:150px;

}

.gallery-slider::before,
.gallery-slider::after{

    width:70px;

}

}

@media(max-width:767px){

.floating-gallery{

    margin-bottom: -52px;
    padding-top: 0px;

}

.gallery-item{

    width:170px;

    height:120px;

    border-width:5px;

}

.gallery-track{

    gap:15px;

    animation-duration:25s;

}

.footer{

    padding-top:100px;

}

.gallery-slider::before,
.gallery-slider::after{

    display:none;

}

}

/*--------------------------------------------------------------------------------------------*/

/*===============================
      OUR PROGRAMS
================================*/

.programs-section{

    padding:40px 0;

    background:#FFF;

}

.section-subtitle{

    max-width:650px;

    margin:18px auto 0;

    color:#666;

    font-size:16px;

    line-height:28px;

}

/*===============================
      LIST
================================*/

.program-list{

    max-width:950px;

    margin:50px auto 0;

    display:flex;

    flex-direction:column;

    gap:18px;

}

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

.program-card{

    display:flex;

    align-items:center;

    gap:25px;

    background:#fff;

    padding:22px 28px;

    border-radius:18px;

    text-decoration:none;

    box-shadow:0 12px 35px rgba(74,20,140,.08);

    transition:.35s;

    border:1px solid rgba(74,20,140,.08);

}

.program-card:hover{

    transform:translateY(-5px);

    box-shadow:0 22px 45px rgba(74,20,140,.15);

}

/*===============================
      ICON
================================*/

.program-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#4A148C;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    transition:.35s;

    flex-shrink:0;

}

.program-card:hover .program-icon{

    transform: scale(1.08);

    background:#6857ff;

}

/*===============================
      CONTENT
================================*/

.program-content{

    flex:1;

}

.program-content h4{

    margin:0;

    color:#3f0091;

    font-size:22px;

    font-weight:700;

}

.program-content p{

    margin:8px 0 0;

    color:#666;

    line-height:26px;

    font-size:15px;

}

/*===============================
      ARROW
================================*/

.program-arrow{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#F3EDFF;

    color:#4A148C;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:.35s;

    flex-shrink:0;

}

.program-card:hover .program-arrow{

    background:#6857FF;

    color:#fff;

    transform:translateX(6px);

}

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

@media(max-width:768px){

.program-card{

    flex-direction:column;

    align-items:flex-start;

    text-align:left;

    gap:18px;

}

.program-arrow{

    align-self:flex-end;

}

.program-content h4{

    font-size:20px;

}

}