@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    background: #FAF2F4;
    font-family: "Syne", sans-serif;
    color: #1A0E10;
    cursor: none;
}

::selection {
    color: #FAF2F4;
    background: #FB8A9F;
}

::-moz-selection {
    color: #FAF2F4;
    background: #FB8A9F;
}

.main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.noise {
    z-index: 99999999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: .04;
}

.c-scrollbar {
    z-index: 9999999999999;
}

.header-wrap, .footer-wrap {
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    background: #FAF2F4;
}

.header {
    width: 80%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #DBCFD1;
}

.footer {
    width: 80%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #DBCFD1;
    background: #FAF2F4;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.period {
    color: #FB8A9F;
}

.header-logo {
    font-size: 30px;
    font-weight: 500;
}

.logo-break {
    display: none;
}

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-cta p {
    font-size: 20px;
}

a:not(.btn) {
    text-decoration: none;
    color: #1A0E10;
    position: relative;
    transition: all 300ms ease-in-out;
    cursor: none;
}

a:not(.btn, .header-logo, .video-popup)::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 50px;
    background-color: #1A0E10;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 300ms ease-in-out;
}
  
a:not(.btn, .header-logo, .video-popup):hover::before {
    transform-origin: left;
    transform: scaleX(1);
    background-color: #FB8A9F;
}

a:not(.btn, .header-logo, .video-popup):hover {
    color: #FB8A9F;
}

.body {
    width: 80%;
}

.case-study-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero, .case-study-hero {
    min-height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.case-study-hero {
    align-items: center;
    min-height: calc(100vh - 100px);
}

.hero-title, .case-study-title {
    font-size: 70px;
    font-weight: 500;
    max-width: 80%;
    line-height: 1.3;
}

.case-study-title {
    font-size: 60px;
    width: 60%;
}

.highlighted-text {
    background: #FB8A9F;
    color: #FAF2F4;
    padding: 0 10px;
}

.underline-text {
    text-decoration: underline wavy #FB8A9F;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
}

.btn {
    text-decoration: none;
    color: #FAF2F4;
    transition: all 300ms ease-in-out;
    background: #FB8A9F;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 400;
    padding: 16px 36px;
    border-radius: 500px;
    cursor: none;
}

.btn svg {
    stroke-width: 2;
}

[data-hover] {
	position: relative;
}

[data-hover-bounds] {
    position: absolute;
    left: 0;
    top: 0;
    inset: 0;
}

[data-hover]:hover > [data-hover-bounds] {
    transform: scale(2, 5);
}

.cursor {
	width: 24px;
	height: 24px;
	border-radius: 50%;

	position: fixed;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);

	background: #016855;
	mix-blend-mode: difference;
	pointer-events: none;

    z-index: 9999999999999999999;
}

.section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.case-study-section {
    width: 60%;
    min-height: 50vh;
    align-items: center;
}

h2 {
    font-size: 55px;
    font-weight: 500;
    max-width: 75%;
    line-height: 1.3;
}

.meet-founder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.founder-div-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.brands {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.brand {
    background: #FAF2F4;
    border: 2px solid rgba(251, 138, 159, 0.3);
    border-radius: 30px;
    padding: 20px;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 50px;
    font-family: "Montserrat", sans-serif;
}

.brand-img-wrap {
    background: rgba(220, 173, 110, 0.1);
    padding: 20px;
    border-radius: 20px;
}

.brand-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FB8A9F;
    width: 150px;
}

.brand-stats-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #1A0E10;
    flex-wrap: wrap;
}

.brand-stats-text p {
    text-align: center;
}

.brand-stats-number {
    font-size: 25px;
    font-weight: 700;
    color: #FB8A9F;
}

.brand img {
    height: 150px;
}

.truviu {
    margin-top: 150px;
    rotate: -3deg;
}

.pathshala {
    margin-top: 200px;
    rotate: 5deg;
}

.brands-mobile {
    display: none;
}

.samin-face {
    height: 70vh;
}

.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.steps {
    width: 100%;
    display: flex;
}

.step {
    position: relative;
    display: flex;
    align-items: center;
}

.step-number {
    font-size: 250px;
    font-weight: 700;
    color: #FB8A9F;
    opacity: 0.3;
    position: absolute;
    z-index: -1;
}

.step-text {
    max-width: 22vw;
    margin-left: 50px;
    margin-top: 115px;
}

.step-desc {
    font-size: 35px;
    font-weight: 500;
}

.step-example {
    opacity: 0.3;
    margin-top: 10px;
}

.step-2 {
    justify-content: center;
}

.step-2 .step-text {
    margin-left: 70px;
}

.step-3 {
    justify-content: flex-end;
}

.booking {
    align-items: center;
    min-height: 90vh;
    gap: 30px;
    padding: 30px 0;
}

.book-text {
    text-align: center;
    max-width: 60%;
}

.founder-stats {
    width: 100%;
    display: flex;
    gap: 150px;
    margin-top: 100px;
}

.total-views, .total-followers {
    position: relative;
    display: flex;
    align-items: center;
}

.founder-stats svg {
    color: #FB8A9F;
    opacity: 0.25;
    rotate: -15deg;
    position: absolute;
}

.founder-stats-text {
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.founder-stats-number {
    font-size: 60px;
    font-weight: 700;
    color: #FB8A9F;
}

.founder-stats-desc {
    font-size: 20px;
    text-align: center;
}

.total-views-text, .total-followers-text {
    margin-left: 105px;
}

.total-followers svg {
    rotate: 10deg;
}

.case-study-text {
    font-size: 14px;
    margin-top: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
    opacity: 0.7;
    transition: all 500ms ease;
}

.case-study-text:hover {
    opacity: 1;
}

.case-study-thumb {
    width: 60%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: 3px solid #FB8A9F;
}

.case-study-metrics {
    width: 100%;
    padding: 50px;
    border: 3px solid rgba(251, 138, 159, 0.3);
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    font-family: "Montserrat", sans-serif;
}

.case-study-metrics > .brand-stats .brand-stats-number {
    font-size: 30px;
    margin: 0;
}

.case-study-metrics > .brand-stats .brand-stats-text p {
    margin: 0;
}

.case-study-metrics > .brand-stats {
    gap: 20px;
}

.case-study-metrics-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.case-study-section p, .case-study-hero p, .sub-h2-p {
    width: 100%;
    margin: 15px 0;
    font-size: 20px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
}

.case-study-hero p {
    width: 60%;
    margin: 0; 
}

.case-study-section ul {
    width: 100%;
    margin: 15px 0;
    font-size: 20px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    list-style-position: inside;
    padding-left: 50px;
    margin: -15px 0;
}

.case-study-section ul li {
    margin: 10px 0;
}

.case-study-section h2 {
    max-width: 100%;
    width: 100%;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    font-family: "Montserrat", sans-serif;
}

.case-study-section h3 {
    max-width: 100%;
    width: 100%;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    font-family: "Montserrat", sans-serif;
}

.case-study-section img {
    width: 100%;
    border: 3px solid rgba(251, 138, 159, 0.3);
    border-radius: 30px;
    margin-bottom: 30px;
}

.case-study-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 30px;
}

.case-study-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(251, 138, 159, 0.3) !important;
    border-radius: 30px;
}

.cta-video-popup iframe {
    width: 640px;
    height: 360px;
    border: 3px solid rgba(251, 138, 159, 0.3);
    border-radius: 30px;
    margin-top: 20px;
}

.ads-poop-body {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ads-poop-body img {
    width: 50%;
}

.ads-body-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sub-h2-p {
    font-size: 25px;
    margin: 0;
}

.divider {
    height: 2px;
    width: 60%;
    background: #FB8A9F;
    opacity: 0.3;
    margin-top: 50px;
}

.booking-btn-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.secondary-btn {
    font-size: 25px;
    font-weight: 400;
    opacity: 0.8;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form input, .contact-form textarea {
    background: transparent;
    outline: none;
    border: none;
    color: #1A0E10;
    font-size: 25px;
    font-family: "Syne", sans-serif;
    width: 100%;
    border-bottom: 2px dashed #FB8A9F;
    padding-bottom: 4px;
}

.contact-form textarea {
    white-space: pre-wrap;
}

button {
    outline: none;
    border: none;
}

.contact-btn {
    font-size: 25px;
}

.contact-h2 {
    margin-bottom: 30px;
}

.contact-wrap {
    width: 100%;
    display: flex;
    gap: 80px;
}

.calendly-embed-wrap {
    width: 100%;
}

.contact-body-wrap {
    width: 100%;
}

.contact-form-label {
    margin-bottom: 50px;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 1200px;

    position: relative;
}

.contact-section {
    margin: 100px 0;
}

@media screen and (max-width: 1600px) {
    .hero-title {
        max-width: 90%;
    }

    h2 {
        max-width: 80%;
    }

    .brand-stats {
        width: 120px;
    }

    .how-it-works {
        gap: 10px;
    }

    .book-text {
        text-align: center;
        max-width: 80%;
    }

    .case-study-title {
        width: 80%;
    }

    .case-study-hero p {
        width: 80%;
    }

    .case-study-section {
        width: 80%;
    }

    .case-study-thumb {
        width: 80%;
    }
}

@media screen and (max-width: 1440px) {
    .hero-title {
        font-size: 70px;
    }

    h2 {
        font-size: 50px;
    }

    .brand {
        gap: 40px;
    }

    .brand-img-wrap img {
        height: 120px;
    }

    .step-desc {
        font-size: 30px;
    }

    .step-text {
        max-width: 28vw;
    }

    .founder-stats {
        gap: 100px;
    }

    .case-study-hero {
        margin: 80px 0;
    }

    .cta-video-popup iframe {
        width: 560px;
        height: 315px;
    }

    .sub-h2-p {
        font-size: 22px;
    }
}

@media screen and (max-width: 1280px) {
    .hero-title {
        font-size: 60px;
    }

    h2 {
        font-size: 45px;
    }

    .brand {
        gap: 20px;
    }

    .brand-img-wrap img {
        height: 100px;
    }
}

@media screen and (max-width: 768px) {
    .body {
        width: 90%;
    }

    .noise {
        opacity: 0.02;
    }

    .cursor {
        display: none;
    }

    .header, .footer {
        width: 90%;
    }

    .header-logo {
        font-size: 25px;
    }

    .logo-break {
        display: block;
    }

    .header-cta {
        gap: 4px;
    }

    .header-cta p {
        font-size: 18px;
    }
    
    .header-cta svg {
        height: 14px;
    }

    .footer {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 10px;
        align-items: start;
    }

    .footer-links {
        gap: 10px;
    }

    .hero {
        gap: 10px;
    }

    .hero-title {
        max-width: 100%;
        font-size: 45px;
    }

    .btn {
        font-size: 20px;
        gap: 8px;
    }

    .btn svg {
        height: 18px;
    }

    h2 {
        max-width: 100%;
        font-size: 35px;
    }

    .brands-section {
        min-height: 150vh;
    }

    .brands {
        flex-direction: column;
    }

    .brands-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .brands-desktop {
        display: none;
    }

    .brand .brand-stats svg {
        width: 40px;
        height: 40px;
    }

    .brand .brand-stats-text p {
        font-size: 14px;
    }

    .brand .brand-stats-text .brand-stats-number {
        font-size: 25px;
    }

    .truviu {
        margin-top: 0;
    }
    
    .pathshala {
        margin-top: 0;
    }

    .meet-founder {
        flex-direction: column;
    }

    .samin-face {
        rotate: 6deg;
        width: 95%;
        height: auto;
    }

    .step-text {
        max-width: 100%;
    }

    .booking {
        min-height: 80vh;
    }

    .book-text {
        max-width: 100%;
    }

    .founder-stats {
        gap: 30px;
        align-items: center;
    }

    .founder-stats svg {
        height: 100px;
        width: 100px;
    }

    .founder-stats-text {
        margin-left: 70px;
    }

    .founder-stats-number {
        font-size: 35px;
    }

    .founder-stats-desc {
        font-size: 16px;
    }

    .case-study-text {
        font-size: 12px;
    }

    .case-study-text svg {
        width: 10px !important;
        height: 10px !important;
    }

    .case-study-hero {
        margin: 0;
        align-items: start;
        min-height: 80vh;
    }

    .case-study-title {
        font-size: 40px;
        max-width: 100%;
        width: 100%;
    }

    .case-study-hero p {
        width: 100%;
        font-size: 18px;
    }

    .case-study-thumb {
        width: 100%;
    }

    .case-study-section {
        width: 100%;
    }

    .case-study-section p {
        font-size: 18px;
        margin: 0;
    }

    .case-study-section ul {
        font-size: 18px;
        padding-left: 10px;
        margin: -25px 0;
    }
    
    .case-study-section ul li {
        margin: 15px 0;
    }

    .case-study-section h2 {
        font-size: 32px;
    }

    .case-study-section h3 {
        font-size: 25px;
    }

    .case-study-metrics {
        flex-direction: column;
        gap: 50px;
        justify-content: center;
        align-items: center;
    }

    .case-study-metrics > .brand-stats {
        flex-direction: row;
        width: 100%;
    }

    .case-study-metrics > .brand-stats svg {
        width: 60px;
        height: 60px;
    }

    .case-study-metrics > .brand-stats .brand-stats-number {
        font-size: 25px !important;
    }

    .case-study-metrics > .brand-stats .brand-stats-text p {
        font-size: 16px;
    }

    .cta-video-popup {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        margin-bottom: 30px;
    }
    
    .cta-video-popup iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .ads-poop-body {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .ads-body-text {
        gap: 20px;
    }

    .ads-poop-body img {
        width: 100%;
    }

    .sub-h2-p {
        font-size: 20px;
    }

    .booking-btn-group {
        flex-direction: column;
        gap: 20px;
    }

    .secondary-btn {
        font-size: 18px;
    }

    .contact-wrap {
        flex-direction: column;
        gap: 0px;
    }
}