*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#fff;
    overflow-x: hidden;
}

/* =======================
NAVBAR
======================= */

header{

    position:absolute;
    width:100%;
    top:0;
    left:0;
    z-index:999;

}

.navbar{

    width:90%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 0;

}

.logo img{

    width:120px;

}

.nav-links{

    display:flex;
    list-style:none;
    gap:35px;

}

.nav-links a{

    color:#fff;
    text-decoration:none;
    font-size:18px;

}

.nav-links .active{

    border-bottom:2px solid white;
    padding-bottom:5px;

}

.right-side{

    display:flex;
    align-items:center;
    gap:25px;

}

.right-side a{

    color:white;
    text-decoration:none;

}

.btn{

    background:#77516f;
    padding:16px 35px;
    color:#fff;
    text-decoration:none;
    font-weight:bold;

}

/* =======================
Banner
======================= */

.banner{

    height:100vh;

    

    display:flex;
    justify-content:center;
    align-items:center;


}

.banner-img{
    width:100%;
    height:100%;
    object-fit:cover;
    background:url("../images/banner.jpg") center center/cover no-repeat;
    animation: zoomEffect 18s linear infinite;
}

@keyframes zoomEffect{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.08);
    }

    100%{
        transform: scale(1);
    }

}



/* =======================
Content
======================= */

.content{

    padding-top:120px;
    text-align:center;

}

/* =======================
Footer
======================= */

footer{

    background:#111;
    color:#fff;
    text-align:center;
    padding:20px;

}

/* =======================
Hamburger
======================= */

.hamburger{

    display:none;
    cursor:pointer;

}

.hamburger span{

    width:30px;
    height:3px;
    background:#fff;
    display:block;
    margin:6px 0;
    transition:.4s;

}

.hamburger.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

/* =======================
Responsive
======================= */

@media(max-width:992px){

.right-side{

    display:none;

}

.hamburger{

    display:block;

}

.nav-links{

    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:#24192d;

    flex-direction:column;

    justify-content:flex-start;

    align-items:center;

    padding-top:120px;

    transition:.4s;

}

.nav-links.show{

    right:0;

}

}




/* =========================
   Banner
========================= */

.banner{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: visible;

}

.banner-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.banner-content{
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 600px;
}

.banner-content h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.banner-content p{
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-btn{
    display: inline-block;
    padding: 15px 35px;
    background: #7b556d;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.banner-btn:hover{
    background: #94677f;
}

/* Responsive */

@media(max-width:768px){

    .banner{
        height: 80vh;
    }

    .banner-content{
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .banner-content h1{
        font-size: 36px;
    }

    .banner-content p{
        font-size: 18px;
    }

}


/* Logo Container */

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo Image */

.logo img{
    width: 130px;
    height: auto;
    display: block;
    animation: floatLogo 3s ease-in-out infinite;
}
@keyframes floatLogo{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0);
    }

}
/* Logo Text */

.logo-text h4{
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
   Tablet
========================= */

@media (max-width: 992px){

    .logo img{
        width: 60px;
    }

    .logo-text h4{
        font-size: 16px;
    }

}

/* =========================
   Mobile
========================= */

@media (max-width: 768px){

    .logo{
        gap: 8px;
    }

    .logo img{
        width: 110px;
    }

    .logo-text h4{
        font-size: 23px;
        line-height: 1.2;
        letter-spacing: 0.5px;
    }

}

/* Music Card */

.music-card{

    position:absolute;
    height: 285px;
    left:50%;
    bottom:-190px;

    transform:translateX(-50%);

    width:85%;
    max-width:1100px;

    background:#f8f1f4;

    display:flex;

    align-items:center;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

    z-index:100;

}

.music-image{

    width:300px;
    flex-shrink:0;

}

.music-image img{

    width:28%;
  
    object-fit:cover;
    display:block;

}

.music-content{

    flex:1;
    padding:5px;

}

.now-playing{

    display:inline-block;

    background:#2d2038;

    color:#fff;

    padding:10px 18px;

    font-size:14px;

    font-weight:bold;

    margin-bottom:25px;

}

.music-content h2{

    font-size:42px;

    color:#281d43;

    margin-bottom:10px;

}

.music-content p{

    color:#777;
    margin-bottom:35px;

}

.player{

    display:flex;

    align-items:center;

    gap:18px;

}

.play-btn{

    width:55px;
    height:55px;

    border:2px solid #2d2038;

    border-radius:50%;

    background:white;

    cursor:pointer;

    font-size:18px;

}

.player input[type="range"]{

    flex:1;

}

.volume{

    width:90px;
}


@media(max-width:768px){
    .content{
    padding-top:30px;
}
.music-card{
    width:80%;
    height: 30%;
    margin-bottom: 20%;
}
.music-image{
    width:138px;
    height:138px;
    overflow:hidden;
}
.music-image img{
    width: 33%;
    height: 95%;
    object-fit: cover;
    display: block;
}
.music-content{
   padding:1px;
}
#deityImage{
    width: 100%;
    height: 150px;
}
.music-content h2{
    font-size:26px;
}

.player{
    gap:8px;
}
.youtube-icon{
    margin-left: 16%;
        width:30px;
        height:30px;
    }

    .youtube-icon i{
        font-size:22px;
    }
}


.music-slide{

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    animation: imageSlider 9s infinite;

}
.slide1{
    animation-delay:0s;
}

.slide2{
    animation-delay:3s;
}

.slide3{
    animation-delay:6s;
}
@keyframes imageSlider{

    0%{
        opacity:0;
        transform:scale(1);
    }

    10%{
        opacity:1;
        transform:scale(1.05);
    }

    30%{
        opacity:1;
        transform:scale(1.08);
    }

    35%{
        opacity:0;
        transform:scale(1.1);
    }

    100%{
        opacity:0;
    }

}

.youtube-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;

    background: rgba(255,255,255,0.9);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: 0.3s;
}

.youtube-icon i{
    font-size: 38px;
    color: #ff0000;
}

.youtube-icon:hover{
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}
/*=========================
Services
=========================*/

.services{

    width:90%;
    max-width:1200px;
    margin:100px auto;

    display:flex;
    justify-content:space-between;
    gap:40px;

}

.service-box{

    flex:1;

    text-align:center;

    padding:20px;

    transition:.3s;

}

.service-box:hover{

    transform:translateY(-8px);

}

.service-icon{

    width:220px;
    height:220px;

    margin:0 auto 30px;

    background:url("../images/service/circle.png") center/contain no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    animation: rotateCircle 20s linear infinite;


}
@keyframes rotateCircle{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }

}
.service-img {
    margin-bottom: -60%;
    width: 50%;

}
.service-icon img{

    width:140px;
    transition:.4s;

}

.service-box:hover .service-icon img{

    transform:scale(1.1);

}

.service-subtitle{

    color:#8a7c8c;
    font-size:20px;
    margin-bottom:12px;

}

.service-box h3{

    font-size:46px;
    color:#241b45;
    margin-bottom:20px;

}

.service-text{

    color:#777;
    line-height:1.8;
    font-size:18px;

}

.service-btn{

    width:42px;
    height:42px;

    border:2px solid #4d2f62;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:35px auto 0;

    color:#4d2f62;
    text-decoration:none;

    transition:.3s;

}

.service-btn:hover,
.service-btn.active{

    background:#6d3f7d;
    color:#fff;

}
@media(max-width:992px){
.service-img {
    margin-bottom: -60%;
    width: 50%;

}
.services{

    flex-direction:column;
    gap:60px;

}

.service-box{

    max-width:500px;
    margin:auto;

}

.service-icon{

    width:250px;
    height:250px;

}

.service-icon img{

    width:60px;

}

.service-box h3{

    font-size:34px;

}

.service-subtitle{

    font-size:18px;

}

.service-text{

    font-size:16px;

}

}
/*==========================
About Section
==========================*/

.about-section{

    width:90%;
    max-width:1200px;

    margin:120px auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:80px;

}

/* Left Images */

.about-left{

    flex:1;
    position:relative;
    min-height:600px;

}

.img-large{

    width:70%;

}

.img-large img{

    width:100%;
    display:block;

}

.img-small{

    position:absolute;

    width:60%;

    left:35%;
    bottom:0;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.img-small img{

    width:100%;
    display:block;

}

/* Right Content */
.right-image{
    position:absolute;
    margin-left: 60%;
}
.about-right{

    flex:1;
    position:relative;

}

.section-subtitle{

    font-size:15px;
    font-weight:700;
    color:#5d4c64;
    letter-spacing:2px;

}

.about-right h2{

    font-size:58px;
    line-height:1.15;

    color:#241b45;

    margin:25px 0;

}

.about-right p{

    color:#777;
    font-size:18px;
    line-height:1.8;

    margin-bottom:35px;

}

.timing{

    margin-bottom:40px;

}

.timing h4{

    color:#999;
    margin:10px 0;
    font-size:20px;
    font-weight:700;

}

.about-btn{

    display:inline-block;

    padding:18px 45px;

    background:#6b3f79;

    color:#fff;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.about-btn:hover{

    background:#814d90;

}
@media(max-width:991px){
    .right-image{
    position:absolute;
    margin-left: 60%;
    height: 120px;
    z-index: -99;
}

.about-section{

    flex-direction:column;

    gap:60px;

}

.about-left{

    width:100%;
    min-height:auto;
    padding-bottom:120px;

}

.img-large{

    width:80%;

}

.img-small{

    width:60%;
    left:35%;
    bottom:0;

}

.about-right{

    text-align:center;

}

.about-right h2{

    font-size:38px;

}

.about-right p{

    font-size:16px;

}

.timing h4{

    font-size:18px;

}

.about-btn{

    padding:15px 35px;

}

}
/*==============================
Daily Activities
==============================*/

.activities{

    width:100%;
    max-width:1400px;

    /*margin:120px auto;*/

    display:flex;
    justify-content:space-between;
    align-items:stretch;

    /*gap:40px;*/

}

/* Left Side */
.left-image{
        position: absolute;
    margin-top: -15%;
}
.activities-left{

    flex:2;

}

.section-tag{
    margin-left: 15%;
    font-size:14px;
    font-weight:bold;
    color:#6c5870;
    letter-spacing:2px;

}

.activities-left h2{
    margin-left: 15%;
    font-size:40px;
    color:#261c46;

    /*margin:20px 0;*/

    line-height:1.15;

}

.activities-left>p{

    width:70%;
    margin-left: 30%;
    color:#777;

    line-height:1.8;

    margin-bottom:25px;

}

.read-more{

    color:#261c46;
    font-weight:bold;
    margin-left: 30%;
    text-decoration:none;

    border-bottom:2px solid #261c46;

}

/* Bottom */

.activity-bottom{

    margin-top:80px;

    display:flex;

}

.activity-image{

    width:60%;

}

.activity-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}

.activity-info{

    width:60%;

    background:#2d0838;

    color:#fff;

    padding:50px;

}

.info-box{

    margin-bottom:40px;

}

.info-box h3{

    margin-bottom:15px;

    font-size:30px;

}

.info-box p{

    line-height:1.8;

    color:#ddd;

}

/* Right Side */

.activities-right{

    flex:1;

    position:relative;

}

.activities-right img{

    width:100%;
    height:100%;

    object-fit:cover;
    display:block;

}

.play-btn{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:80px;
    height:80px;

    border-radius:50%;

    background:#fff;

    color:#261c46;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:28px;

    transition:.3s;

}

.play-btn:hover{

    background:#6d3f7d;
    color:#fff;

}
@media(max-width:991px){

.activities{

    flex-direction:column;

}

.activities-left h2{

    font-size:38px;

}

.activities-left>p{

    width:100%;

}

.activity-bottom{

    flex-direction:column;

}

.activity-image{

    width:100%;

}

.activity-info{

    width:100%;
    padding:30px;

}

.activities-right{

    height:500px;

}

.play-btn{

    width:65px;
    height:65px;

    font-size:22px;

}

}

@media(max-width:576px){

.activities{

    width:95%;

}

.activities-left h2{

    font-size:30px;

}

.activity-info{

    padding:25px;

}

.info-box h3{

    font-size:24px;

}

.play-btn{

    width:55px;
    height:55px;

    font-size:18px;

}

}
/*====================================
EVENT SCHEDULE
====================================*/

.events-section{

    background:#5d2e72;
    padding:100px 0;

}

.events-section .container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.section-title{

    display:block;

    color:#ddd;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

}

.events-section h2{

    color:#fff;

    font-size:52px;

    margin-bottom:50px;

}

/*========================
Month Tabs
========================*/

.month-tabs{

    display:flex;

    gap:30px;

    margin-bottom:40px;

    border-bottom:1px solid rgba(255,255,255,.3);

}

.tab-btn{

    background:none;

    border:none;

    color:#d4c8db;

    font-size:18px;

    padding:15px 0;

    cursor:pointer;

    position:relative;

    transition:.3s;

}

.tab-btn:hover{

    color:#fff;

}

.tab-btn.active{

    color:#fff;

    font-weight:bold;

}

.tab-btn.active::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-1px;

    width:100%;
    height:3px;

    background:#fff;

}

/*========================
Event List
========================*/

.event-list{

    display:none;

    animation:fade .5s ease;

}

.event-list.active{

    display:block;

}

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*========================
Event Row
========================*/

.event-row{

    display:grid;

    grid-template-columns:170px 1fr 220px 220px 60px;

    align-items:center;

    gap:20px;

    padding:28px 0;

    border-bottom:1px solid rgba(255,255,255,.25);

}

/* Date */

.event-date h4{

    color:#fff;

    font-size:22px;

    margin-bottom:8px;

}

.event-date span{

    color:#d7cde0;

    font-size:15px;

}

/* Event Name */

.event-name h4{

    color:#fff;

    font-size:28px;

}

/* Speaker */

.event-speaker h4{

    color:#fff;

    font-size:22px;

    margin-bottom:8px;

}

.event-speaker span{

    color:#d7cde0;

}

/* Location */

.event-location h4{

    color:#fff;

    font-size:22px;

    margin-bottom:8px;

}

.event-location span{

    color:#d7cde0;

}

/* Arrow */

.event-arrow{

    text-align:right;

}

.event-arrow a{

    width:40px;

    height:40px;

    border:2px solid #fff;

    border-radius:50%;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.event-arrow a:hover{

    background:#fff;

    color:#5d2e72;

}

/*====================================
Tablet
====================================*/

@media(max-width:992px){

.event-row{

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.event-arrow{

    text-align:left;

}

}

/*====================================
Mobile
====================================*/

@media(max-width:768px){

.events-section{

    padding:70px 0;

}

.events-section h2{

    font-size:36px;

}

.month-tabs{

    overflow-x:auto;

    gap:20px;

    white-space:nowrap;

}

.month-tabs::-webkit-scrollbar{

    display:none;

}

.event-row{

    display:block;

    padding:25px 20px;

}

.event-date,
.event-name,
.event-speaker,
.event-location,
.event-arrow{

    margin-bottom:18px;

}

.event-name h4{

    font-size:24px;

}

.event-arrow{

    text-align:left;

}

}
/*====================================
Donation Section
====================================*/

.donation-section{

    padding:100px 0;
    background:#fdf8fb;

}

.donation-container{

    width:90%;
    max-width:1200px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:80px;

}

/*=========================
Left Image
=========================*/

.donation-image{

    flex:1;

}

.donation-image img{

    width:100%;
    display:block;

}

/*=========================
Right Content
=========================*/

.donation-content{

    flex:1;

}

.donation-top{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:15px;

    color:#2c1d45;
    font-size:18px;
    font-weight:600;

}

/*=========================
Progress Bar
=========================*/

.progress-bar{

    width:100%;
    height:6px;

    background:#e8dfe7;

    margin-bottom:35px;

    overflow:hidden;

}

.progress{

    width:78%;
    height:100%;

    background:#61326f;

}

/*=========================
Description
=========================*/

.donation-content p{

    color:#777;
    line-height:1.9;
    font-size:17px;

    margin-bottom:35px;

}

/*=========================
Input
=========================*/

.donation-input{

    width:100px;
    height:55px;

    display:flex;
    align-items:center;

    border:1px solid #ddd;

    margin-bottom:25px;

}

.donation-input span{

    width:40px;
    text-align:center;
    font-weight:bold;

    color:#2c1d45;

}

.donation-input input{

    flex:1;

    border:none;
    outline:none;

    font-size:18px;

    color:#777;

}

/*=========================
Buttons
=========================*/

.amount-buttons{

    display:flex;
    flex-wrap:wrap;

    gap:12px;

    margin-bottom:35px;

}

.amount-btn{

    padding:15px 22px;

    background:#fff;

    border:1px solid #ddd;

    cursor:pointer;

    font-weight:bold;

    color:#2c1d45;

    transition:.3s;

}

.amount-btn:hover{

    background:#61326f;
    color:#fff;
    border-color:#61326f;

}

.amount-btn.active{

    border:2px solid #2c1d45;

}

/*=========================
Donate Button
=========================*/

.donate-btn{

    display:inline-block;

    background:#61326f;

    color:#fff;

    text-decoration:none;

    padding:18px 38px;

    font-weight:bold;

    transition:.3s;

}

.donate-btn:hover{

    background:#7d488d;

}

/*====================================
Tablet
====================================*/

@media(max-width:992px){

.donation-container{

    gap:40px;

}

.amount-btn{

    padding:14px 18px;

}

}

/*====================================
Mobile
====================================*/

@media(max-width:768px){

.donation-container{

    flex-direction:column;

}

.donation-image{

    width:100%;

}

.donation-content{

    width:100%;

}

.donation-top{

    flex-direction:column;
    align-items:flex-start;

    gap:10px;

}

.donation-content p{

    font-size:16px;

}

.donation-input{

    width:120px;

}

.amount-buttons{

    gap:10px;

}

.amount-btn{

    flex:1 1 calc(50% - 10px);

    text-align:center;

}

.custom-btn{

    flex:1 1 100%;

}

.donate-btn{

    width:100%;

    text-align:center;

}

}

/*====================================
Small Mobile
====================================*/

@media(max-width:480px){

.donation-section{

    padding:70px 0;

}

.amount-btn{

    flex:1 1 100%;

}

.donation-input{

    width:100%;

}

.donation-input input{

    text-align:center;

}

}
/*==================================
Programs Section
==================================*/

.programs-section{

    padding:100px 0;
    background:#fcf8fb;

}

.programs-section .container{

    width:90%;
    max-width:1200px;
    margin:auto;

    text-align:center;

}

/* Subtitle */

.program-subtitle{

    display:block;

    color:#6d5b73;

    font-size:14px;

    font-weight:bold;

    letter-spacing:2px;

    margin-bottom:15px;

}

/* Heading */

.programs-section h2{

    font-size:58px;

    color:#261c46;

    line-height:1.15;

    margin-bottom:25px;

}

/* Description */

.program-desc{

    width:650px;

    max-width:100%;

    margin:0 auto 70px;

    color:#777;

    line-height:1.8;

}

/*==================================
Cards
==================================*/

.program-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.program-card{

    position:relative;

    overflow:hidden;

    cursor:pointer;

}

.program-card img{

    width:100%;

    height:600px;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.program-card:hover img{

    transform:scale(1.08);

}

/* Overlay */

.program-overlay{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:30px;

    background:linear-gradient(to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,0));

}

.program-overlay h3{

    color:#fff;

    font-size:38px;

    text-align:left;

}

/*==================================
Button
==================================*/

.program-btn{

    margin-top:50px;

}

.program-btn a{

    display:inline-block;

    background:#6d3f7d;

    color:#fff;

    text-decoration:none;

    padding:18px 45px;

    font-weight:bold;

    transition:.3s;

}

.program-btn a:hover{

    background:#855096;

}

/*==================================
Tablet
==================================*/

@media(max-width:992px){

.programs-section h2{

    font-size:42px;

}

.program-grid{

    grid-template-columns:repeat(2,1fr);

}

.program-card img{

    height:450px;

}

.program-overlay h3{

    font-size:30px;

}

}

/*==================================
Mobile
==================================*/

@media(max-width:768px){

.programs-section{

    padding:70px 0;

}

.programs-section h2{

    font-size:32px;

}

.program-desc{

    margin-bottom:40px;

    font-size:16px;

}

.program-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.program-card img{

    height:350px;

}

.program-overlay{

    padding:20px;

}

.program-overlay h3{

    font-size:28px;

}

.program-btn a{

    width:100%;

    text-align:center;

}

}
/*====================================
Latest Blog
====================================*/

.blog-section{

    padding:100px 0;
    background:#fff;

}

.blog-section .container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.blog-subtitle{

    display:block;

    color:#6b5b72;

    font-size:14px;

    font-weight:bold;

    letter-spacing:2px;

    margin-bottom:15px;

}

.blog-section h2{

    font-size:58px;

    color:#261b45;

    margin-bottom:60px;

}

/*==========================
Wrapper
==========================*/

.blog-wrapper{

    display:flex;

    gap:40px;

}

/*==========================
Featured Blog
==========================*/

.featured-blog{

    flex:1.4;

}

.featured-image{

    position:relative;

}

.featured-image img{

    width:100%;
    display:block;

}

.blog-tag{

    position:absolute;

    top:20px;
    left:20px;

    background:#6b3f7d;

    color:#fff;

    padding:8px 15px;

    font-size:12px;

    font-weight:bold;

}

.featured-content{

    display:flex;

    margin-top:25px;

    gap:25px;

}

.blog-date{

    min-width:70px;

    text-align:center;

}

.blog-date h3{

    font-size:60px;

    color:#261b45;

    line-height:1;

}

.blog-date span{

    font-weight:bold;

    color:#555;

}

.blog-info h3{

    font-size:40px;

    color:#261b45;

    margin-bottom:15px;

}

.blog-info p{

    color:#777;

    line-height:1.8;

}

.blog-meta{

    display:flex;

    gap:25px;

    margin-top:20px;

    color:#999;

    font-size:14px;

}

/*==========================
Blog List
==========================*/

.blog-list{

    flex:1;

}

.blog-item{

    display:flex;

    gap:20px;

    margin-bottom:22px;

    align-items:center;

}

.blog-item img{

    width:140px;
    height:140px;

    object-fit:cover;

}

.blog-item small{

    color:#999;

}

.blog-item strong{

    color:#261b45;

}

.blog-item h4{

    font-size:32px;

    color:#261b45;

    margin-top:12px;

    line-height:1.3;

}

/*==========================
Hover
==========================*/

.featured-image img,
.blog-item img{

    transition:.4s;

}

.featured-image:hover img,
.blog-item:hover img{

    transform:scale(1.05);

}

/*==========================
Tablet
==========================*/

@media(max-width:992px){

.blog-wrapper{

    flex-direction:column;

}

.blog-section h2{

    font-size:42px;

}

.blog-info h3{

    font-size:30px;

}

.blog-item h4{

    font-size:24px;

}

}

/*==========================
Mobile
==========================*/

@media(max-width:768px){

.blog-section{

    padding:70px 0;

}

.blog-section h2{

    font-size:34px;

}

.featured-content{

    flex-direction:column;

}

.blog-date{

    text-align:left;

}

.blog-date h3{

    font-size:42px;

}

.blog-info h3{

    font-size:28px;

}

.blog-item{

    flex-direction:column;

    align-items:flex-start;

}

.blog-item img{

    width:100%;
    height:220px;

}

.blog-item h4{

    font-size:24px;

}

.blog-meta{

    flex-wrap:wrap;

}

}
/*====================================
Newsletter Section
====================================*/

.newsletter-section{

    padding:100px 20px;

    background:#fcf8fb;

    position:relative;

    overflow:hidden;

}

/* Background Pattern */

.newsletter-section::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:320px;
    height:320px;

    background:url("../images/pattern.png") no-repeat;

    background-size:contain;

    opacity:.15;

}

/* Container */

.newsletter-container{

    width:90%;
    max-width:900px;

    margin:auto;

    position:relative;
    z-index:2;

    text-align:center;

}

/* Heading */

.newsletter-container h2{

    font-size:30px;

    color:#241b45;

    line-height:1.2;

    margin-bottom:45px;

}

/* Form */

.newsletter-form{

    display:flex;

    justify-content:center;

    align-items:center;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    overflow:hidden;

}

.newsletter-form input{

    flex:1;

    border:none;

    outline:none;

    padding:22px;

    font-size:17px;

}

.newsletter-form button{

    border:none;

    background:#fff;

    border-left:1px solid #ddd;

    padding:22px 35px;

    font-weight:bold;

    color:#241b45;

    cursor:pointer;

    transition:.3s;

}

.newsletter-form button i{

    margin-right:8px;

}

.newsletter-form button:hover{

    background:#6d3f7d;

    color:#fff;

}

/* Policy */

.newsletter-policy{

    margin-top:30px;

    color:#777;

    font-size:15px;

}

.newsletter-policy label{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

}

.newsletter-policy input{

    width:16px;
    height:16px;

}

.newsletter-policy a{

    color:#6d3f7d;

    text-decoration:underline;

}

/*====================================
Tablet
====================================*/

@media(max-width:992px){

.newsletter-container h2{

    font-size:40px;

}

}

/*====================================
Mobile
====================================*/

@media(max-width:768px){

.newsletter-section{

    padding:70px 15px;

}

.newsletter-container h2{

    font-size:30px;

}

.newsletter-form{

    flex-direction:column;

    background:none;

    box-shadow:none;

    gap:15px;

}

.newsletter-form input{

    width:100%;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.newsletter-form button{

    width:100%;

    border:none;

    background:#6d3f7d;

    color:#fff;

}

.newsletter-policy{

    font-size:14px;

}

}
/*=========================
Footer
=========================*/

.footer{

    background:#22062d;
    padding:35px 0;

}

.footer .container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.footer-container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* Left */

.footer-left{

    color:#d7d1da;
    font-size:15px;

}

/* Center Logo */

.footer-logo img{

    width:90px;
    height:auto;
    transition:.4s;

}

.footer-logo img:hover{

    transform:scale(1.08);

}

/* Right Social */

.footer-social{

    display:flex;
    gap:12px;

}

.footer-social a{

    width:42px;
    height:42px;

    border:1px solid rgba(255,255,255,.25);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#6d3f7d;
    border-color:#6d3f7d;
    transform:translateY(-3px);

}

/*=========================
Responsive
=========================*/

@media(max-width:768px){

.footer{

    padding:40px 20px;

}

.footer-container{

    flex-direction:column;
    gap:25px;
    text-align:center;

}

.footer-left{

    order:3;
    font-size:14px;

}

.footer-logo{

    order:1;

}

.footer-social{

    order:2;

}

.footer-logo img{

    width:80px;

}

}