/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #9e009d;
    --lightpurple: #fdeefe;
    --pink: #eb98d7;
    --lightpink: #ffc6f1;
    --blue-100: #e7edff;
    --blue-200: #d0d9f5;
    --blue-300: #adc0f7;
    --red-100: #ffeeee;
    --red-200: #ffd2d2;
    --red-300: #dfbbe1;
    --transition: all 0.3s ease-in-out;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Anek Devanagari", sans-serif;
    font-size: 20px;
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.4;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 26px;
}

/* global */
.centered { padding-right: calc((100% - 1000px)/ 2); padding-left: calc((100% - 1000px)/ 2); }
.btn { padding: 10px 50px; border: 0; cursor: pointer; border-radius: 25px; color: var(--white); font-size: 18px; font-weight: 600; min-height: 50px; background-color: #c62902; }

/* wrapper */
.wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* header */
.header {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    background-color: #fef3ff;
}

.header .logo {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.header .logo li {
    display: flex;
    align-items: flex-end;
}

.header .logo li:after {
    margin: 0 18px;
    content: '';
    width: 1px;
    height: 24px;
    background-color: #f0c9d7;
}

.header .logo li:last-child:after {
    margin-right: 0;
    display: none;
}

.header .back {
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
}
.header a .homeIcon{width: 30px;}

.header .org_logo{display: flex; flex-direction: column; align-items: center; gap: 5px;}
.header .org_logo img{width: 70px;}
.header .org_logo strong{display: block; font-size: 11px; color: #944548;}

/* hero */
.hero { padding-top: 100px; padding-bottom: 35px; width: 100%; background-image: linear-gradient(to bottom, #fdedfb 0%, #fbf1fc 100%); }
.hero .container { width: 100%; position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; z-index: 1; }
.hero .left { position: relative; width: 48%; text-align: center; }
.hero .right { width: 48%; }
.hero .hindi { position: relative; overflow: hidden; }
.hero .hindi:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 70px;
    height: 100%;
    background: rgba(255,255,255, 0.3);
    transform: skewX(-30deg);
    animation-name: slide;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-delay: .3s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.13) 77%,
        rgba(255, 255, 255, 0.5) 92%,
        rgba(255, 255, 255, 0.0) 100%
      );
    }

.hero .title { font-size: 30px; text-align: center; font-weight: 700; }
.hero .rotate { position: absolute; }
.hero .rotate.top { left: 20%; top: -50px; opacity: 0.5; max-width: 320px; width: 100%; }
.hero .rotate.bottom { right: 10%; bottom: -30px; opacity: 0.5; max-width: 260px; width: 100%; }
.hero .rotate img { width: 100%; position: relative; top: unset; animation: rotate 8s normal linear infinite; }
.hero .bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero .textContent { position: relative; z-index: 1; text-align: center; }
.hero .textContent h3 { margin-bottom: 20px; color: #e84901; }
.hero .button { display: flex; justify-content: center; flex-wrap: wrap; width: 100%; }
.hero .joinBtn {color: white; padding: 18px 40px; border-radius: 30px; font-size: 20px; font-weight: 700; text-align: center; border: none; cursor: pointer; z-index: 9999999999; position: relative; background-color: #5b0274; }
.hero .joinBtn:hover { background-color: var(--black); }
.hero .form { padding: 20px; width: 100%; position: relative; z-index: 1; border-radius: 15px; display: none; background-color: var(--white); }
.hero .form h3 { margin-bottom: 15px; text-align: center; }
.hero .input { margin-bottom: 20px; width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; }
.hero .half { width: 48%; }
.hero input[type="text"],
.hero input[type="email"],
.hero input[type="tel"],
.hero select,
.hero textarea, #phoneInput { padding: 5px 15px; font-size: 13px; width: 100%; height: 50px; box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.1); border-radius: 5px; border: 1px solid #e5e5e5; }
.hero textarea { height: 100px; }


.error { padding: 5px 0; font-size: 10px; color: #c62902;}
#registation_div { display: none; padding: 80px 0; font-size: 26px; text-align: center;}

@keyframes rotate {
    0% { transform: rotate3d(0, 0, 1, 0deg); }
    25% { transform: rotate3d(0, 0, 1, 90deg); }
    50% { transform: rotate3d(0, 0, 1, 180deg); }
    75% { transform: rotate3d(0, 0, 1, 270deg); }
    100% { transform: rotate3d(0, 0, 1, 360deg); }
}

@keyframes slide {
    0% {
      left: -100;
      top: 0;
    }
    50% {
      left: 200px;
      top: 0px;
    }
    100% {
      left: 390px;
      top: 0;
    }
}

/* quote side */
.quoteSide {
    padding-top: 50px;
    padding-bottom: 100px;
    width: 100%;
    text-align: center;
    font-size: 26px;
    line-height: 45px;
    font-weight: 500;
    background-color: var(--lightpurple);
}

.quoteSide blockquote {
    font-style: normal;
    position: relative;
    z-index: 1;
    margin: auto;
    width: calc(100% - 200px);
    /* margin-left: 300px;
    margin-right: 300px; */
}

.quoteSide blockquote:before {
    position: absolute;
    left: -70px;
    top: -40px;
    z-index: -1;
    font-size: 300px;
    content: '"';
    line-height: 280px;
    background-image: linear-gradient(to bottom, #000000 0%, #decedf 100%);
    background-clip: text;
    -webkit-background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
}

.quoteSide a {
    font-weight: 700;
    color: #b61e01;
}

.quoteSide a:hover {
    color: var(--black);
}

.quoteSide p{
    margin-top: 35px;
    font-size: 20px;
    line-height: 33px;
}

/* program side */
.programSide {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    z-index: 1;
}
.programSide h2 {
    margin-bottom: 50px;
    text-align: center;
}
.programSide .block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.programSide .item { width: 45%; position: relative; }
.programSide .program {
    padding: 40px 100px 40px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    font-size: 19px;
    position: relative;
    min-height: 280px;
    align-content: center;
}
.programSide .bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: -1; }
.programSide .bg img { width: 100%; height: 100%; object-fit: fill; }
.programSide .program h3 { margin-bottom: 15px; width: 100%; font-size: 36px; }
.programSide .img { width: 100px; position: absolute; top: 30px; right: 40px; }
.programSide .img img { opacity: 1; }
.programSide .leaf {position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.programSide .leaf img { width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: grayscale(1); }

/* footer side */
.footerSide {
    padding-top: 80px;
    padding-bottom: 200px;
    width: 100%;
    background-image: linear-gradient(to bottom, #fdedfb 0%, #fbf1fc 100%); ;
}

.footerSide .title {
    margin-bottom: 25px;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: var(--black);
}

.footerSide .detail {
    text-align: center;
    font-size: 23px;
    font-weight: 500;
    color: var(--black);
    
}
.borderDiv{border-top: 1px dashed black; padding-top: 30px;width: 60%;margin: auto;}
.footerSide .footerLogos{display: flex; gap: 30px; align-items: center;justify-content: center;margin-top: 20px;}
.footerLogos .instaLogo{border-right: 2px solid black; padding-right: 30px;}
.shapeBottom{ position: absolute; left: 0; bottom: 0; width: 100%; height: 200px; }
.shapeBottom img{width: 100%; height: 100%; object-fit: fill; object-position: right center; }
.right { position: relative; z-index: 999999;}
@media screen and (max-width: 1040px) {
    .centered {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 35px;
    }

    .hero .title { font-size: 25px; }
    .hero .rotate.top { left: 10%; max-width: 250px; }
    .hero .rotate.bottom { max-width: 200px; }
    .hero img {
        top: -10px;
    }
    
    .quoteSide {
        font-size: 24px;
        line-height: 40px;
    }
    .quoteSide blockquote { width: calc(100% - 100px); }
    .quoteSide blockquote:before {
        top: -60px;
        left: -50px;
        font-size: 230px;
    }

    .programSide .program h3 { font-size: 26px; }
    .programSide .item {
        width: 48%;
    }
    .programSide .program {
        padding: 30px 40px;
    }
    .programSide .text {
        width: calc(100% - 100px);
    }
    .programSide .img {
        width: 90px;
    }
    .shapeBottom img { object-fit: cover; }
    .footerSide .detail { font-size: 20px; }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 16px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    .header .logo li:after {
        margin: 0 10px;
    }
    .header .back {
        margin-top: 10px;
    }

    .hero .left { margin-bottom: 40px; width: 100%; }
    .hero .right { width: 100%; }
    .hero .hindi { margin: 0 auto 15px auto; position: relative; z-index: 1; max-width: 300px; width: 100%; }
    .hero .rotate.top { left: 0; max-width: 200px; }
    .hero .bg { left: -20px; width: calc(100% + 40px); }


    .quoteSide {
        padding-bottom: 50px;
        font-size: 20px;
        line-height: 40px;
    }
    .quoteSide blockquote{width: 100%;margin: 0px 10px;}

    .quoteSide blockquote:before {
        top: -30px;
        left: -20px;
        font-size: 200px;
        line-height: 200px;
    }

    .programSide .item {
        margin-bottom: 40px;
        width: 100%;
    }
    .programSide .img{top: 25px;}
    .programSide .item:last-child { margin-bottom: 0; }

    .footerSide { padding-top: 50px; padding-bottom: 130px; }
    .footerSide .title { font-size: 24px; }
    .footerSide .detail { font-size: 18px; }
    .shapeBottom { height: 120px; }
}

@media screen and (max-width: 479px) {
    .header .logo li:after {
        height: 16px;
    }

    .programSide h2 { margin-bottom: 30px; }
    .programSide .program h3 {
        font-size: 30px;
    }
    .programSide .program {
        font-size: 16px;
    }
    .programSide .text {
        width: calc(100% - 80px);
    }
    .programSide .img { width: 70px; }

    .footerSide .title { font-size: 20px; }
    .footerSide .detail { font-size: 16px; }
}