@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

:root {
    --text-dark: #000;
    --color-dark-grey: #29323c;
    --color-light-grey: #485563;
    --text-light: #fff;
    --text-para: #AC7DD0;
    --text-para-dark: #67325A;
}

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

html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

a:active,
a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

button:focus {
    border: none;
    outline: none;
}

p {
    font-size: 1.5rem;
    line-height: 1.3em;
    color: var(--secondary-black);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'sans-serif';
    letter-spacing: 0.1rem;
    background: linear-gradient(180deg, #AC7DD0 0%, #FFC6F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade 0.3s ease-in forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* Navbar section */
#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}

#header .header {
    min-height: 8vh;
}

.header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
}

#header .brand {
    width: 100px;
    height: 100px;
}

#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: var(--text-light);
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: 0.5s ease left;
}

#header .nav-list ul.active {
    left: 0%;
}

#header .nav-list ul a {
    font-size: 1.6rem !important;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-decoration: none;
    color: var(--text-para);
    padding: 10px;
    display: block;
}

.login-btn {
    padding: 15px 45px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to right, #C2C3C5 0%, #07ABB2 100%);
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.07rem;
    cursor: pointer;
    margin-top: 10px;
}

#header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 13rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: 0.3s ease letter-spacing;
}

#header .nav-list ul li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}

#header .nav-list ul li:hover a {
    color: var(--color-dark-grey);
}

#header .nav-list ul li a:active {
    color: var(--text-para-dark) !important;
}

#header .hamburger {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid var(--text-dark);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(0.8);
    margin-right: 20px;
}

#header .hamburger:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1px solid var(--text-dark);
    animation: hamburger_puls 1s ease infinite;
}

#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: var(--text-dark);
    z-index: -1;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: var(--text-dark);
    transition: 0.3s ease;
    transition-property: top, bottom;
}

#header .hamburger .bar::after {
    top: 8px;
}

#header .hamburger .bar::before {
    bottom: 8px;
}

#header .hamburger.active .bar::before {
    bottom: 0;
}

#header .hamburger.active .bar::after {
    top: 0;
}



/* Navbar section ends */

/* hero section */

#hero {
    background: url(./img/bg.png) no-repeat center center / cover;
    position: relative;
    height: 100vh;
    /* z-index: 1; */
}

#hero .hero {
    height: 100%;
    width: 90%;
    margin: auto;
}

.hero__wrapper {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 5rem;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

#hero .hero__left .hero__left__wrapper {
    max-width: 350px;
}

#hero .hero__left .heading {
    text-align: center;
    font-size: 3rem;
    font-family: 'Montserrat';
    font-weight: 900;
    overflow: hidden;
}

#hero .hero__left__wrapper button {
    padding: 15px 45px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: linear-gradient(90deg, #AC7DD0 0%, #FFC6F1 98.44%);
    border-radius: 30px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

#hero .hero__left .heading .wrapper {
    display: inline-block;
    overflow: hidden;

}

#hero .hero__left .heading .wrapper span {
    position: relative;
    bottom: -70px;
    color: var(--text-dark);
    animation: reveal 1s ease-in-out forwards;
}


.section-info {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark-grey);
    animation: fade 0.3s ease-in forwards;
    animation-delay: 1.1s;
    opacity: 0;
}


#hero .hero__imgWrapper {
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    animation: fade 0.3s ease-in forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

#hero .hero__imgWrapper img {
    width: 100% !important;
}

#casestudies {
    position: relative;
    z-index: 1;
    margin-top: 130px;
}

#casestudies .casestudies {
    flex-direction: column;
    max-width: 80%;
    margin: 0 auto;
    padding: 50px 0;
    min-height: auto;
}

#casestudies .casestudies-top {
    width: 100%;
    padding: 10px 50px 30px 50px;
    margin: 0 auto;
    text-align: center;
}

#casestudies .casestudies-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 20px;
}

#casestudies .casestudies-box {
    width: 90%;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    padding: 60px;
    margin: auto;
    background-color: var(--text-light);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 0px 50px;
    text-align: center;
}

#casestudies .casestudies-box .heading {
    margin-bottom: 50px;
    color: var(--text-para-dark);
    font-weight: 600;
    letter-spacing: 0.06rem;
}

#casestudies .casestudies-box .price-heading {
    color: var(--text-para-dark);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 15px;
}

#casestudies .casestudies-box .info {
    font-size: 1rem;
    letter-spacing: 0.06rem;
}

#casestudies .casestudies-box button {
    background: linear-gradient(90deg, #AC7DD0 0%, #FFC6F1 98.44%);
    border-radius: 30px;
    border: none;
    width: 100%;
    padding: 10px;
    color: var(--text-light);
    letter-spacing: 0.06rem;
    font-weight: 600;
    margin-bottom: 30px;
    cursor: pointer;
}

#casestudies .casestudies-item {
    z-index: 1;
    overflow: hidden;
    height: 200px;
    width: 100%;
    text-align: center;
    color: var(--text-light);
    letter-spacing: 0.06rem;
    transition: .5s ease-in-out;
}

#casestudies .para-box {
    padding: 20px 5px 0px 5px;
}

#casestudies .casestudies-item .header {
    font-weight: 650 !important;
    font-size: 2rem !important;
}

#casestudies .sub-header {
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.6em;
    margin-top: 10px;
}


/* case study ends */
/* Services Section */
#services {
    position: relative;
    z-index: 1;
}

#services .services {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px 0;
    min-height: auto;
}

#services .service-top {
    width: 100%;
    padding: 10px 50px 30px 50px;
    margin: 0 auto;
    text-align: center;
}

#services .service-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 40px;
    margin: auto;
    margin-top: 20px;
}

#services .service-box {
    display: grid;
    grid-template-columns: 4fr 1fr;
    background: linear-gradient(90deg, #AC7DD0 0%, #FDCDC7 100%);
    border-radius: 0px 40px;
    padding: 25px 25px;
    height: 150px;
    width: 100%;
}

#services .service-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 100%;
    width: 100%;
    transition: .5s ease-in-out;
}

#services .service-box .plan-info {
    color: var(--text-light);
    letter-spacing: 0.07rem;
}

#services .service-box .plan-info h3 {
    font-size: 1.3rem;
}

#services .service-box .plan-info h4 {
    font-size: 1rem;
    font-weight: 550;
}

#services .service-box .plan-price {
    color: var(--text-para-dark);
    letter-spacing: 0.06rem;
    text-align: right;
    margin-top: 10px;
}

#services .service-box .plan-price h2 {
    font-size: 1.6rem;
}

#services .service-box .plan-price p {
    font-size: 1rem;
}

#faq .faq {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px;
}

#faq .faq-bottom {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    margin-top: 20px;
}

#faq .faq-box {
    position: relative;
    padding: 30px;
}

#faq .faq-box1 {
    position: relative;
    padding: 30px;
}

#faq .faq-bottom h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    letter-spacing: 0.06rem;
}

#faq .faq-bottom h4 {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.06rem;
}

#start-with-div {
    position: relative;
    z-index: 1;
}

#start-with-div .start-with-div {
    max-width: 80%;
    margin: 0 auto;
    padding: 50px 0;
    min-height: auto;
}

#start-with-div .start-with-div-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 40px;
    margin-top: 20px;
}

#start-with-div .start-with-div-box {
    padding: 25px 25px;
    height: 150px;
    width: 100%;
    letter-spacing: 0.06rem;
    text-align: center;
}

#start-with-div .start-with-div-box h3 {
    font-size: 1.8rem;
}

#start-with-div .start-with-div-box p {
    font-size: 1.3rem;
    margin-top: 1em;
}

#start-with-div .start-with-div-box1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

#start-with-div .start-with-div-box1 button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    letter-spacing: 0.06rem;
    font-weight: 600;
    font-size: 1.4rem;
}

#start-with-div .start-with-div-box1 .btn-div:first-child button {
    background: linear-gradient(90deg, #AC7DD0 0%, #FFC6F1 98.44%);
    color: var(--text-light);
}

#start-with-div .start-with-div-box1 .btn-div:last-child button {
    background: var(--text-light);
    border: 1px solid var(--text-para);
    color: var(--text-para-dark);
}

#footer {
    padding-top: 3em;
    padding-bottom: 3em;
    height: auto;
    /* background: linear-gradient(90deg, #AC7DD0 0%, #FFC6F1 98.44%); */
    background-color: var(--text-para-dark);
}

#footer .footer {
    min-height: auto;
    width: 80%;
    margin: auto;
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: auto;
}

.footer__logo {
    width: 90%;
    height: 20px;
    margin-bottom: 4em;
}

.footer__logo img {
    height: 30px;
    width: 230px;
}

.footer ul {
    list-style: none;
}

.footer__socials li {
    display: inline-block;
    margin-right: 0.5rem;
    color: var(--text-light) !important;
}

.footer__socials li a {
    color: var(--text-light) !important;
    font-size: 1.5rem;
    letter-spacing: 0.07rem;
}

.footer__socials li i {
    color: var(--text-light);
}

.footer__socials1 li {
    display: inline-block;
    margin-right: 0.5rem;
}

.footer__text__title {
    font-size: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #AC7DD0 0%, #FFC6F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fade 0.3s ease-in forwards;
    animation-delay: 0.8s;
    opacity: 0;
    font-weight: 600;
}

.footer__text a {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 2em;
    letter-spacing: 0.2rem;
}

#footer h4 {
    text-align: center;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    line-height: 2em;
    color: var(--text-light);
}


.footer__socials1 .footer__socials__list li .fa-facebook {
    color: #395185 !important;
    font-size: 1.5rem;
    background-color: var(--text-light);
    padding: 10px 15px;
}

.footer__socials1 .footer__socials__list li .fa-linkedin {
    color: #0A66C2;
    font-size: 1.5rem;
    padding: 10px 10px;
    background-color: var(--text-light);
}


@keyframes reveal {
    0% {
        bottom: -70px;
    }

    100% {
        bottom: 0px;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes hamburger_puls {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

@media only screen and (min-width: 768px) {

    .hero__left {
        flex: 3;
    }

    .hero__right {
        flex: 4;
    }

    .hero__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 5rem;
        width: 100%;
        height: 100%;
        max-width: 95%;
        overflow-x: hidden;
    }

    #hero .hero__imgWrapper {
        max-width: 500px;
        width: 90%;
    }

    #hero .hero__left__wrapper button {
        margin-left: 0;
        margin-right: 0;
    }

    #hero .hero__left .subheading {
        text-align: left;
    }

    #hero .hero__left .heading {
        text-align: left;
    }

    #hero .hero__left .section-info {
        text-align: left;
    }

    #services .section-info {
        font-size: 1.5rem !important;
    }

    #casestudies .casestudies-bottom {
        grid-template-columns: 1fr 1fr;
    }

    #casestudies .section-info {
        font-size: 1.5rem !important;
    }

    #faq .faq-bottom {
        display: flex;
        flex-direction: row;
    }

    #faq .heading {
        font-size: 1.5rem;
        text-align: left;
        padding: 10px 0px 0px 0px;
    }

    #faq .sub-heading1 {
        font-size: 2.5rem;
        text-align: left;
        padding: 10px 0px 0px 0px;
    }

    #faq .section-info {
        font-size: 1.5rem !important;
        text-align: left;
    }

    #start-with-div .start-with-div-bottom {
        grid-template-columns: 1fr 1fr;
    }

    #start-with-div .start-with-div-box {
        text-align: left;
    }

    #start-with-div .start-with-div-box1 button {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 30px;
        letter-spacing: 0.06rem;
        font-weight: 600;
        font-size: 1rem;
    }

    #start-with-div .start-with-div-box1 {
        grid-template-columns: 1fr 1fr;
    }

    footer {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    #footer .footer {
        width: 80%;
    }

    .footer__wrapper {
        flex-direction: row;
    }

    .footer__col1 {
        flex: 4;
    }

    .footer__col2,
    .footer__col3,
    .footer__col4 {
        flex: 6;
    }

    .footer__text__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .footer__text a {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        letter-spacing: 0.1em;
    }

    .footer__logo {
        width: 100%;
        height: 40px;
        margin-bottom: 2rem;

    }

    .footer__logo img {
        height: 40px;
        width: 250px;
    }
}

@media only screen and (min-width: 991px) {
    #services .service-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 1200px) {

    .section-title {
        text-align: center;
        font-size: 3rem;
    }

    /* header */

    .header .nav-bar {
        max-width: 80% !important;
        margin: auto;
    }

    #header .hamburger {
        display: none;
    }

    #header .nav-list ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }

    #header .nav-list ul li {
        display: inline-block;
    }

    #header .nav-list ul li a {
        font-size: 1.8rem;
    }

    #header .nav-list ul a:after {
        display: none;
    }

    /* header ends  */

    #hero .hero {
        width: 78%;
    }

    .hero__left,
    .hero__right {
        flex: 1;

    }

    .hero__left__wrapper {
        width: 100%;
        max-width: 600px !important;
    }

    .hero__wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between !important;
        gap: 5rem;
        width: 100%;
        height: 100%;
        max-width: 100% !important;
        overflow-x: hidden;
    }

    .hero__imgWrapper {
        max-width: 800px !important;
        height: 600px;
        width: 100% !important;
    }

    #hero .hero__left .heading {
        font-size: 4rem;
    }

    .section-info {
        text-align: center;
        font-size: 1.5rem !important;
        letter-spacing: 1px;
        line-height: 1.5em;
    }

    #hero .hero__left__wrapper button {
        margin-left: 0;
        margin-right: 0;
        padding: 15px 50px;
    }

    #casestudies .casestudies {
        width: 80%;
    }

    #casestudies .casestudies-bottom {
        margin-top: 5em;
        grid-template-columns: 1fr 1fr 1fr;
    }

    #casestudies .casestudies-item {
        height: 400px;
    }

    #casestudies .casestudies-box .heading {
        font-size: 2rem;
    }

    #casestudies .casestudies-box .info {
        font-size: 1.3rem;
    }

    #casestudies .casestudies-box button {
        width: 90%;
        padding: 15px;
    }

    #services .services {
        width: 60%;
    }

    #services .service-bottom {
        grid-template-columns: 1fr 1fr;
    }

    #services .service-box {
        padding: 25px 20px;
        height: 150px;
        width: 100%;
    }

    #services .service-box .plan-info h3 {
        font-size: 1.7rem;
    }

    #services .service-box .plan-info h4 {
        font-size: 1.3rem;
    }

    #services .service-box .plan-price h2 {
        font-size: 1.8rem;
    }

    #services .service-box .plan-price p {
        font-size: 1.3rem;
    }

    #faq .faq {
        max-width: 80%;
    }

    #faq .faq-bottom {
        display: flex;
        flex-direction: row;
    }

    #faq .heading {
        font-size: 2rem;
        text-align: left;
    }

    #faq .sub-heading1 {
        font-size: 4rem;
        text-align: left;
    }

    #faq .section-info {
        font-size: 1.5rem !important;
        text-align: left;
    }

    #faq p {
        font-size: 1.7rem;
    }



    #start-with-div .start-with-div-bottom {
        grid-template-columns: 1fr 1fr;
    }

    #start-with-div .start-with-div-box {
        padding: 25px 20px;
        height: 150px;
        width: 600px;
        text-align: left;
    }

    #start-with-div .start-with-div-box h3 {
        font-size: 1.8rem;
    }

    #start-with-div .start-with-div-box p {
        font-size: 1.4rem;
    }

    #start-with-div .start-with-div-box1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #footer .footer {
        width: 50%;
    }

    .footer__socials li a {
        font-size: 1.5rem !important;
    }

    .footer__logo {
        width: 100%;
        height: 40px;
        margin-bottom: 2rem;

    }

    .footer__logo img {
        height: 40px;
        width: 250px;
    }

    .footer__socials1 .footer__socials__list li .fa-facebook {
        font-size: 3rem;
    }

    .footer__socials1 .footer__socials__list li .fa-linkedin {
        font-size: 3rem;
    }

}