@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    --primary-color: #ff5722;
    --secondary-color: #ffffff;
    --text-dark: #333333;
    --text: #111;
    --muted: #6b7280;
    --para: #7F7F80;
    --border: #DFDFDF;
    --card-bg: #f1f0ef;
    --dark-card-bg: #eaeaea;
    --bg: #fff;
    --radius: 18px;
    --text-light: rgba(255, 255, 255, .9);
    --font-size-xs: .75rem;
    --font-size-sm: .875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-6xl: 4rem;
    --spacing-xs: .25rem;
    --spacing-sm: .5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    --container-max: 90%;

    --card-gap: 1.25rem;
    --section-x: var(--spacing-xl);
    --section-y: var(--spacing-2xl);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    font-size: 14px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


h1,
h2,
h3,
h4 {
    font-family: 'Outfit', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}



body {
    font-family: "Inter", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    /* overflow-x: hidden; */
}


.lr-line {
    display: inline-block !important;
    /* Makes spans behave like blocks for animations and masking */
}


/* custom dot 
 */
.custom__dot {
    position: relative;
    font-size: var(--font-size-lg);
    margin-left: 20px;
    margin-bottom: var(--spacing-2xl);
}

.custom__dot::before {
    content: " ";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-54%);
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: var(--primary-color);
}

.button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    background-color: #fff;
    padding: 4px;
    border-radius: 32px;
    max-width: 300px;
}

.button--learn-more {
    width: 12rem;
    height: auto;
}

.button--learn-more .button__circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 3.5rem;
    height: 3.5rem;
    background: #FF6B35;
    border-radius: 50%;
}

.button--learn-more .button__circle .button__icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 4px;
    background: #fff;
}

.button--learn-more .button__circle .button__icon--arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.button--learn-more .button__circle .button__icon--arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

.button--learn-more .button__text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem 0;
    margin: 0 0 0 1.85rem;
    color: inherit;
    font-size: var(--font-size-xl);
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    text-transform: capitalize;
}

.button:hover .button__circle {
    width: 100%;
    border-radius: 24px;
}

.button:hover .button__circle .button__icon--arrow {
    background: #fff;
    transform: translate(1rem, 0);
    margin-right: 12px;
}

.button:hover .button__text {
    color: #fff;
}

/* header css */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    animation: slideDown 0.6s ease-out;
}

.header__container {
    max-width: 95%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger__line {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Navigation Styles */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #fa5a20 100%);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link:hover::after {
    width: 100%;
}

/* Button Link Styles */
.cssbuttons-io-button_link {
    text-decoration: none;
}

/* Animations */
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header__container {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        color: black;
    }

    .nav.active {
        right: 0;
        animation: slideInRight 0.4s ease-out;
    }

    .nav__menu {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .nav__link {
        color: black;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        animation: fadeInUp 0.6s ease-out backwards;
    }

    .nav__link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav__link:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav__link:nth-child(3) {
        animation-delay: 0.3s;
    }

    .hamburger.active .hamburger__line {
        background-color: #000000;
    }

    /* Hamburger animation when active */
    .hamburger.active .hamburger__line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .hamburger__line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger__line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .logo img {
        height: 35px;
    }

    .header .cssbuttons-io-button {
        background-color: #4642F1;
        color: white;
    }

    .header .cssbuttons-io-button .icon svg {
        color: #fff;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .header__container {
        padding: 1rem 1.5rem;
    }

    .nav__menu {
        gap: 1.5rem;
    }

    .nav {
        gap: 1.5rem;
    }
}

/* Large Screen Styles */
@media (min-width: 1200px) {
    .header__container {
        padding: 1.5rem 2rem;
    }
}




/* Button Block */
.cssbuttons-io-button {
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-family: inherit;
    margin-left: 24px;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 30px;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    text-decoration: none;
}

.cssbuttons-io-button .icon {
    background: var(--primary-color);
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 28px;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #000000;
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}




.banner_section {
    min-height: 80vh;
    background: #000 no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: end;
    align-items: end;
    padding: var(--spacing-2xl) var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}


.banner_section h1 {
    position: fixed;
    left: 4rem;
    margin: 0;
    z-index: 0;
    color: #fff;
    font-size: 8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.16rem;
}

.banner_section p {
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 40%;
}

@media screen and (width < 768px) {
    .banner_section {
        padding: 1rem;
    }

    .banner_section h1 {
        left: 1rem;
        font-size: 4rem;
        bottom: 265px;
    }

    .banner_section p {
        max-width: 100%;
        text-align: left;
        left: 1rem;
        font-size: 1rem;
        padding-bottom: 2em;
        position: fixed;
    }
}




.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.contact {
    background: var(--bg);
    color: var(--text);
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    width: 100%;
    padding: 4em 64px;
}

.contact__container {
    padding: 2rem 0em;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 6rem;
}

.contact__intro {
    flex: 0 0 500px;
    /* wide left rail like screenshot */
    max-width: 500px;
}


.contact__title {
    margin: 0 0 .75rem 0;
    font-size: clamp(2.6rem, 6.3vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--text);
    font-weight: 600;
}

.contact__subtitle {
    margin: var(--spacing-xl) 0 1.25rem 0;
    color: var(--muted);
    font-size: var(--font-size-lg);
    max-width: 42ch;
}

/* Info list */
.contact-info {
    list-style: none;
    padding: 0;
    margin: var(--spacing-3xl) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--text-dark);
    font-size: var(--font-size-base);
}

.contact-info__bullet {
    inline-size: 24px;
    block-size: 24px;
    border-radius: 50%;
}

.contact-info__bullet img,
.contact-info__icon svg {
    max-width: 100%;
    height: auto;
    object-fit: contain
}

.contact-info__icon {
    inline-size: 24px;
    block-size: 24px;
}


.contact-info__label {
    font-weight: 600;
}

.contact-info__link {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-info__text {
    color: var(--text-dark);
    max-width: 50%;
}

/* Form rail */
.contact-form {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-width: 0;
}

.contact-form__field {
    display: block;
}

.contact-form__input {
    width: 100%;
    border: 0;
    outline: none;
    background: #f4f2ef;
    /* light warm gray like screenshot */
    border-radius: 4px;
    padding: 1.5rem 1rem;
    font-size: var(--font-size-base);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04);
}

.contact-form__input::placeholder {
    color: #6f6a66;
    opacity: .9;
}

.contact-form__field--textarea .contact-form__input {
    padding: 1rem 1rem 1rem 1rem;
}

.contact-form__input--textarea {
    min-height: 170px;
    resize: vertical;
    appearance: none;
}

.contact-form__submit {
    margin-top: .6rem;
    width: 100%;
    padding: 1rem 1.25rem;
    border: 0;
    border-radius: 4px;
    background: #171717;
    color: #fff;
    font-size: var(--font-size-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

.contact-form__submit span {
    width: 24px;
    height: 24px;
}

.contact-form__submit svg {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-form__submit:hover {
    transform: translateY(-1px);
    opacity: .95;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact__container {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
    }

    .contact__intro {
        flex-basis: auto;
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .contact {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .contact__title {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }

    .contact__subtitle {
        font-size: var(--font-size-base);
    }
}

/*  footer section */

.footer {
    position: relative;
    background-color: #4642F1;
    z-index: 20;
    color: var(--secondary-color);
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.footer * {
    z-index: 20;
}

.footer__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    padding-bottom: 4em;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.footer__left h3 {
    color: #FFF;
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02rem;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    flex-wrap: wrap;
}

.footer__social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.footer__social-link span:nth-of-type(1) {
    width: 1.5rem;
    height: 1.5rem;
    aspect-ratio: 1/1;
}

.footer__social-link svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__left .button {
    max-width: 200px;
    width: 100%;
}

.footer__right {
    padding: var(--spacing-lg) 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.footer__card {
    display: inline-flex;
    max-width: 100%;
    padding: 2.5rem 1.5rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 1.2rem;
    color: #000;
    border-radius: 1.5rem;
    background: #FFF;
}

.footer__avatar {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: url('./public/footerCard.png') #4642F1 50% / cover no-repeat;
}

.footer__card-text {
    color: #000;
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
}

.footer__card-subtext {
    color: #7F7F80;
    text-align: center;
    font-family: Inter;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer__right a,
.footer__right .button {
    background: #4642F1;
    color: #fff;
    max-width: 230px;
    width: 100%;
    border-radius: 32px;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}

.footer__bottom .footer__logo img {
    width: 18rem;
    /* height: 3.5rem; */
    flex-shrink: 0;
}

.footer__bottom .footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.footer__nav a {
    color: inherit;
}

.footer__nav a:hover {
    text-decoration: underline;
}

.footer__bottom_div{
    display: flex!important;
    justify-content: space-around;
}
.footer-menu .footer__nav{
    display: flex;
    gap: 1.5rem;
}
.footer__copyright{
    display: flex;
}
.footer_policies{
        right: 3%;
    position: absolute;
}
.policy-links{
    color: white !important;
    padding: 1px 10px !important;
 }
 
/* Tablet Styles */
@media (min-width: 768px) {

    .footer {
        padding: var(--spacing-2xl) var(--spacing-xl);
    }

    .footer__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 2.5em;
    }

    .footer__left {
        grid-column: 1;
        grid-row: 1;
    }

    .footer__left h3 {
        font-size: 2.5rem;
    }

    .footer__right {
        grid-column: 2;
        grid-row: 1 / span 2;
        padding: var(--spacing-2xl);
        align-items: center;
    }

    .footer__card {
        max-width: 70%;
        padding: 3rem 2rem;
    }

    .footer__avatar {
        width: 9rem;
        height: 9rem;
    }

    .footer__card-text {
        font-size: 1.75rem;
    }

    .footer__bottom {
        grid-column: 1;
        grid-row: 2;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }

    .footer__bottom .footer__nav {
        justify-content: flex-end;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .footer {
        padding: var(--spacing-3xl) 0 var(--spacing-2xl) var(--spacing-2xl);
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0;
        padding-bottom: 0;
    }

    .footer__left {
        padding: 0;
        margin: 0;
        max-width: 64ch;
    }

    .footer__left h3 {
        font-size: 3.375rem;
        letter-spacing: -0.0675rem;
    }

    .footer__right {
        display: flex;
        align-items: end;
    }

    .footer__card {
        max-width: 55%;
        padding: 3.5rem 2.2rem;
        border-radius: 2rem;
    }

    .footer__avatar {
        width: 10rem;
        height: 10rem;
    }

    .footer__card-text {
        font-size: 2rem;
        line-height: 2.25rem;
    }

    .footer__card-subtext {
        font-size: 1rem;
    }

    .footer__bottom .footer__logo svg {
        width: 14.8125rem;
        height: 4.0625rem;
    }

    .footer__bottom .footer__nav {
        gap: 1.3125rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .footer__container {
        margin: 0 auto 4em;

    }
}

/* Small Mobile Adjustments */
@media (max-width: 680px) {
    .footer_policies {
    right: 0%;
    position: absolute;
    bottom: 0%;
}
    .footer {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .footer__left h3 {
        font-size: 3rem;
    }

    .footer__card {
        padding: 2rem 1rem;
        border-radius: 1.5rem 1rem 1rem 1rem;
    }

    .footer__avatar {
        width: 3.5rem;
        height: 3.5rem;
    }

    .footer__card-text {
        max-width: 75%;
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .footer__card-subtext {
        font-size: 1rem;
    }

    .footer__socials {
        gap: 0.5rem;
    }

    .footer__bottom .footer__logo svg {
        width: 10rem;
        height: 3rem;
    }

    .footer__nav {
        gap: 0.8rem;
    }
        .footer__bottom_div {
    display: block !important;
}
.footer-menu .footer__nav {
    display: flex;
    gap: 1rem;
    margin-top: 10px;
}
}