@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --green: #0ca72d;
    --grey: #f2f5fb;
    --white: #ffffff;
    --black: #242423;
    --blue: #007aff;
    --purple: #7336c8;
    --pink: #CA13C5;
    --red: #ff4954;
    --blue2: #0186B5;
    --orange: #fd5902;
    --green2: #00cca5;
    --red2: #bf2713;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    scroll-behavior: smooth;
}
body{
    background-color: #eef2f5;
    background-position: center, 0% 0%, center;
    background-repeat: repeat, repeat, no-repeat;
    background-attachment: fixed;
}
.container-fluid{
    display: flex;
    align-items: center;
    justify-content: center;

}
.container{
    width: 90%;
    max-width: 600px;
}
.col{
    width: 50%;
}
hr{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #dadde0;
    margin: 1em 0;
    padding: 0;
}
body{
    margin: 30px 0;
}

/* ------------about section start----------- */

.pro{
    overflow: hidden;

}
.p-img{
    margin-top: -70px;
    margin-bottom: 15px;
}
.p-img img{
    width: 140px;
    border-radius: 50%;
    border: 5px solid #fff;
}
.pro h1{
    color: var(--black);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}
.p-text p{
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5;
}
.p-bg img{
    border-radius: 40px 40px 0 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.p-text{
    padding: 0 70px;
    background-size: cover;
    text-align: center;
}
.d-icon i{
    font-size: 25px;
    color: #fff;
}
.social{
    padding: 20px 50px;
}
.social ul{
    justify-content: center;
    display: flex;
    list-style: none;
}
.social ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e1e1e1;
    padding: 8px;
    border-radius: 50%;
    margin: 0 5px;
    transition: .4s ease-in-out;
}
.social ul li a i{
    font-size: 20px;
}
.social ul li a:hover{
    transform: translateY(-5px);
}
.social ul li a{
    color: #fff;
    text-decoration: none;
}
.l-1 a{
    background-image: linear-gradient(45deg, #149db9, #51d2ac);
}
.l-2 a{
    background-image: linear-gradient(45deg, #3d41a0, #594bb7);
}
.l-3 a{
    background-image: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}
.l-4 a{
    background-image: linear-gradient(45deg, #fc00ff, #00dbde);
}
.l-5 a{
    background-image: linear-gradient(45deg, #22c1c3, #fdbb2d);
}
.l-6 a{
    background-image: linear-gradient(45deg, #f2709c, #ff9472);
}

/* ------------about section end----------- */

/* ------------link section start----------- */

.link-head{
    padding: 0 30px;
    padding-top: 20px;
}
.links-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}
.link-wrap{
    margin: 6px 0;
    padding: 22px;
    text-decoration: none;
    color: var(--purple);
    font-size: 25px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    background-color: var(--white);
    transition: .3s ease-in-out;
}
.link-wrap h4{
    color: rgba(0, 0, 0, 0.761);
    font-weight: 600;
    font-size: 16px;
    transition: .3s ease-in-out;
}
.link-wrap:hover{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
    color: #FF5C5C;
}
.link-wrap:hover h4{
    color: #FF5C5C;
}
.link{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ------------link section end----------- */

/* ------------subscribe section start----------- */

.subscribe{
    padding: 15px 30px;
}
.form-input{
    display: flex;
}
.form-input input{
    width: 100%;
    padding: 18px 15px;
    border-radius: 15px;
    background-color: #dee2e5;
    border: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: .6s ease-in-out;
}
.form-input textarea{
    width: 100%;
    height: 140px;
    padding: 18px 15px;
    border-radius: 15px;
    background-color: #dee2e5;
    border: none;
    margin-bottom: 12px;
    font-size: 15px;
    resize: none;
    transition: .6s ease-in-out;
}
.form-input input:hover{
    background-color: #c7c7c7;
}
.form-input textarea:hover{
    background-color: #c7c7c7;
}
.form-input input:focus{
    background-color: #fff;
}
.form-input textarea:focus{
    background-color: #fff;
}
.form-input .in-wrap1{
    width: 100%;
    padding-right: 5px;
}
.form-input .in-wrap{
    width: 100%;
}
.form-input .in-wrap2{
    width: 100%;
    padding-left: 5px;
}
.subscribe form{
    margin-top: 30px;
}
input[type=submit]{
    width: 100%;
    background-color: var(--purple);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease-in-out;
    cursor: pointer;
}
input[type=submit]:hover{
    background-color: var(--black);
}
.subscribe h5{
    margin-top: 10px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

/* ------------subscribe section end----------- */

/* ------------post section start----------- */

.post{
    padding: 20px 30px;
}
.post a{
    text-decoration: none;
}
.post a:hover .posts{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.20);
}
.post .p-img{
    display: flex;
    align-items: stretch;
}
.post .po-img img{
    width: 130px;
    min-height: auto;
    max-height: 100%;
    object-fit: cover;
    margin-right: 15px;
}
.p-wrap{
    display: flex;
}
.posts{
    border-radius: 15px;
    background-color: #fff;
    padding: 20px;
    transition: .3s ease-in-out;
}
.posts {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 0 10px;
    border-radius: 15px;
    background-color: #fff;
    padding: 20px;
    height: 100%;
}
.p-body{
    padding: 5px 0;
}
.p-body p{
    font-size: 13px;
    color: #585858;
    font-weight: 600;
    margin-bottom: 8px;
}
.p-body h4{
    color: #000;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 8px;
    line-height: 28px;
}
.p-body h5{
    color: #585858;
    font-weight: 400;
    font-size: 13px;
}
.p-btn{
    margin: 0 10px;
    margin-top: 30px;
    text-align: center;
}
.p-btn a{
    display: block;
    background-color: #fff;
    border: none;
    color: #000;
    padding: 16px 32px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .3s ease-in-out;
}
.p-btn a:hover{
    background-color: #000;
    color: #fff;
}




.posts-2{
    overflow: hidden;
    margin: 0 10px;
    border-radius: 15px;
    background-color: #fff;
    height: 100%;
    transition: .3s ease-in-out;
}
.posts-2 .po-img img{
    width: 100% !important;
    height: 110px;
    object-fit: cover;
    margin-right: 15px;
}
.posts-2 .p-body{
    padding: 10px 15px 20px 15px;
}
.posts-2 h4{
    font-size: 18px;
    margin-bottom: 10px;
}
.posts-2 h5{
    color: #585858;
    font-weight: 400;
    font-size: 13px;
}
.post a:hover .posts-2{
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.20);
}

/* ------------post section end----------- */

/* ------------event section start----------- */

.event{
    padding: 20px 30px;
}
.events{
    padding: 0 30px;
}
.event-body{
    border-radius: 30px;
    background-image: linear-gradient(180deg, transparent, #0a1b1a), url(./img/event.png);
    background-size: cover;
    padding: 20px;
    background-position: bottom center;
}
.date-wrap{
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}
.date{
    text-align: center;
    background-color: var(--purple);
    color: var(--white);
    border-radius: 20px;
    padding: 20px;
}
.date h2{
    font-size: 35px;
}
.date h4{
    font-size: 16px;
    font-weight: 500;
}
.details{
    padding-left: 10px;
    max-width: 380px;
    color: #fff;
}
.details h1{
    font-size: 40px;
    margin-bottom: 10px;
}
.details h5{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 500;
    color: #cccccc;
}
.r-btn{
    margin-top: 30px;
    margin-bottom: 20px;
}
.r-btn a{
    background-color: var(--purple);
    border: none;
    color: #fff;
    padding: 16px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .3s ease-in-out;
}
.r-btn a i{
    margin-right: 10px;
}
.r-btn a:hover{
    background-color: #fff;
    color: #000;
}
.event-foot{
    margin-top: 15px;
    background-color: #f4dfe2;
    padding: 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ef-left{
    display: flex;
    align-items: center;
}
.ef-left img{
    margin-right: 15px;
    border-radius: 20px;
    width: 60px;
    height: 70px;
    object-fit: cover;
}
.e-text h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.e-text h6{
    font-weight: 500;
    font-size: 14px;
}
.e-text h6 i{
   margin-right: 4px;
}
.e-text h6 span{
    margin-left: 8px;
 }
.ef-btn a{
    padding: 12px 25px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    border-radius: 15px;
    transition: .3s ease-in-out;
}
.ef-btn a:hover{
    background-color: #000;
    color: #fff;
}

/* ------------event section end----------- */

/* ------------product section start----------- */

#pros-2{
    padding-bottom: 20px;
}
.pros-2{
    padding: 20px 30px;
}
.pro-2{
    background-color: #f4dfe2;
    padding: 20px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pr-left{
    display: flex;
    align-items: center;
}
.pr-left img{
    margin-right: 18px;
    border-radius: 10px;
    width: 90px;
    height: 100px;
    object-fit: cover;
}
.pr-text h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pr-text h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pr-text h5{
    font-weight: 400;
    font-size: 16px;
    color: #585858;
}
.pr-btn a{
    padding: 12px 25px;
    border: 1px solid #000;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    border-radius: 15px;
    transition: .3s ease-in-out;
}
.pr-btn a:hover{
    background-color: #000;
    color: #fff;
}
#products{
    padding-bottom: 20px;
}
.product-wrap{
    display: flex;
    padding: 20px 30px;
}
.product-wraps{
    padding: 10px 30px;
}
.product-wrap img{
    height: 100%;
    width: 100%;
    border-radius: 30px;
    transition: .3s ease-in-out;
}
.product-wrap .product-1{
    margin: 0 10px;
    padding: 10px;
    border-radius: 30px;
    transition: .4s ease-in-out;
}
.pro-body{
    padding: 20px 10px 10px 10px;
}
.pro-body h4{
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.pro-body h5{
    font-size: 16px;
    font-weight: 500;
    color: #585858;
}
.product a{
    text-decoration: none;
}
.product a:hover .product-1{
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.20);
}
.product a:hover img{
    transform: scale(1.1);
}
.pro-img{
    overflow: hidden;
    border-radius: 30px;
}
.p-btn-2{
    margin-top: 10px;
}
.p-btn-3{
   margin: 30px 0 0 0;
}

/* ------------product section end----------- */

/* ------------gallery section start----------- */

.fancybox-caption__body{
    font-size: 25px;
    font-weight: 700;
}
.gallery{
    padding: 20px 30px;
}

.gallery-section h3 {
    text-align: left;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 15px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item a {
    display: block;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-caption h2 {
    font-size: 14px;
    margin: 0;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ------------gallery section end----------- */

/* ------------video section start----------- */

.video-wrap{
    padding: 20px 30px;
}
.video{
    text-align: center;
    padding: 0 30px;
    margin-bottom: 20px;
}
.video iframe{
    width: 100%;
    height: 285px;
    border-radius: 25px;
}

/* ------------video section end----------- */

/* ------------faq section start----------- */

.faq-wrap{
    padding: 20px 30px;
}
.faq {
    max-width: 600px;
    margin: auto;
    padding: 0 30px;
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item label {
    display: block;
    padding: 20px;
    background: #dee2e5;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}

.faq-item label::after {
    content: "+";
    float: right;
    font-size: 18px;
}

.faq-item input {
    display: none;
}

.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    background: #fff;
    padding: 0 12px;
}
.faq-item .answer p{
    padding: 20px;
}

.faq-item input:checked + label + .answer {
    max-height: 200px;
}

.faq-item input:checked + label::after {
    content: "-";
    font-size: 25px;
    margin-top: -5px;
}

/* ------------faq section end----------- */

/* ------------media query start----------- */

@media only screen and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .gallery-section h2 {
        font-size: 1.5rem;
    }
    .p-text{
        padding: 20px 0;
        z-index: 4;
    }
    .links{
        padding: 0;
    }
    .col{
        width: 100%;
    }
    .links-wrapper{
        padding: 20px 0;
       flex-direction: column;
    }
    .social{
        padding: 20px 0;
    }
    .link-head{
        text-align: center;
    }
    .subscribe{
        padding: 20px 0;
    }
    .subscribe h3{
        text-align: center;
    }
    .post{
        padding: 20px 0;
    }
    .event{
        padding: 20px 0;
    }
    .events{
        padding: 20px 0;
    }
    .event h3{
        text-align: center;
    }
    .event-foot{
        flex-direction: column;
    }
    .ef-right{
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .product-wrap{
        padding: 20px 0;
    }
    .product-wraps h3{
        text-align: center;
    }
    .pros-2{
        padding: 20px 0;
    }
    .pro-2{
        flex-direction: column;
    }
    .pr-right{
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .gallery{
        padding: 20px 0;
    }
    .video-wrap{
        padding: 20px 0;
        text-align: center;
    }
    .video{
        padding: 0;
    }
    .faq-wrap{
        padding: 20px 0;
        text-align: center;
    }
    .faq{
        padding: 0;
    }
    .gallery h3 {
        text-align: center;
    }
}
@media (max-width:480px) { 
    .p-wrap{
        flex-direction: column;
    }
    .post-1{
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .product-wrap{
        flex-direction: column;
    }
    .pr-left{
        flex-direction: column;
        text-align: center;
    }
    .ef-left{
        flex-direction: column;
        text-align: center;
    }
    .posts{
        flex-direction: column;
    }
    .post .po-img img{
        width: 100%;
    }
    .p-body h4{
        text-align: center;
        margin-bottom: 0;
    }
    input[type=submit]{
        font-size: 16px;
        padding: 16px 25px;
    }
}

/* ------------media query end----------- */