@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/\/AvenirNextLTPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/AvenirNextLTPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Avenir Next LT Pro';
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 39px;
    white-space: nowrap;

    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 122.222% */
    text-transform: uppercase;
    transition: ease all 0.45s;
}

.btn img,
.btn svg {
    width: 20px;
    height: auto;
    object-fit: cover;
    transition: ease all 0.3s;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #F97F35 99.99%, #EB467B 100%);
}

.btn:hover img,
.btn:hover svg {
    transform: rotate(-45deg);
}

.btn-outline {
    color: #000;
    border: 1px solid #000;
    background: transparent;
}

.btn-outline:hover {
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    color: #fff;
    border-color: transparent;
}

.btn-outline img {
    filter: invert(1);
}

.btn-outline:hover img {
    filter: invert(0);
}

.btn-white {
    background: #fff;
    border: 1px solid #fff;
}

.btn-white span {
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-white:hover span {
    background: #F97F35;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline-white svg path {
    stroke: #fff;
    transition: stroke 0.3s ease;
}

.btn-outline-white:hover svg path {
    stroke: url(#paint0_linear_2002_15);
}

.btn-outline-white:hover {
    background: #fff;
}

.btn-outline-white:hover span {
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-white svg path {
    transition: stroke 0.3s ease;
}

.btn-white:hover svg path {
    stroke: #F97F35;
}

.tag {
    display: inline-flex;
    padding: 12px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 46px;
    background: rgba(92, 59, 151, 0.12);
    color: #5C3B97;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 18px;
}

.section-heading {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
}

.section-heading span {
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Top Bar */
.topbar {
    width: 100%;
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    color: #fff;
    padding: 26px 70px 56px 26px;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.topbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.topbar a img {
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.topbar-right {
    gap: 15px;
}

.topbar-right a img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

/* Header */
.header-wrapper {
    width: 100%;
    padding: 16px 84px 16px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #FFF;
    box-shadow: 0 3px 22.4px 1px rgba(0, 0, 0, 0.05);
    margin-top: -30px;
    border-radius: 20px 20px 0 0;
}

.logo {
    display: flex;
}

.logo img {
    width: 242px;
    height: auto;
    object-fit: cover;
}


.nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav a {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.3s;
}

.nav a.active,
.nav a:hover {
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #111;
    margin: 6px auto;
    border-radius: 3px;
}

body.menu-open {
    overflow: hidden;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close {
    display: none;
}

/* Hero */
.hero-section {
    width: 100%;
    padding: 54px 0 0 70px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 70px;
    background: #FCFCFD;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content>span {
    color: #5C3B97;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.hero-content h1 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
    /* 109.375% */
    max-width: 478px;
    margin: 18px 0;
}

.hero-content h1 span {
    background: var(--G1, linear-gradient(90deg, #F97F35 0%, #EB467B 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    max-width: 471px;
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About */
.about-section {
    width: 100%;
    padding: 75px 70px 75px;
    display: flex;
    align-items: stretch;
    gap: 50px;
}

.about-divider {
    width: 2px;
    background: rgba(0, 0, 0, 0.12);
}

.about-content {
    padding: 20px 0;
}

.about-content .section-heading {
    max-width: 533px;
}

.about-content p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 472px;
    margin-top: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.feature-card:nth-child(3) h3 {
    max-width: 118px;
}

.feature-icon img {
    width: auto;
    height: 105px;
    border-radius: 50%;
}

.feature-card h3 {
    color: #000;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 158px;
}

/* Services */
.services-section {
    width: 100%;
    padding: 70px;
    background: #FCFCFC;
}

.services-section .section-heading {
    margin-bottom: 36px;
}

.services-head {
    text-align: center;
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 32px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 24px;
}

.service-icon {
    display: flex;
    width: 102px;
    height: 97px;
    padding: 23px 25px 22px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #FF792E;
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card:nth-child(2) .service-icon {
    background: #199CC0;
}

.service-card:nth-child(3) .service-icon {
    background: #9340FA;
}

.service-card:nth-child(4) .service-icon {
    background: #13CFF5;
}

.service-card:nth-child(5) .service-icon {
    background: #7ECCBA;
}

.service-card:nth-child(6) .service-icon {
    background: #EB467B;
}

.service-card h3 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 150% */
    margin: 8px 0 6px;
}

.service-card p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 224px;
}

/* Why Choose */
.why-section {
    width: 100%;
    padding: 70px;
    display: flex;
    gap: 70px;
    align-items: stretch;
}


.why-section>div {
    width: 100%;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.why-content p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 472px;
    margin: 24px 0 27px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-list li {
    position: relative;
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 48px;
    max-width: 581px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
    background-image: url('../images/check.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.check-list strong {
    font-weight: 700;
}

/* Projects */
.projects-section {
    width: 100%;
    padding: 70px;
    background: #FCFCFC;
}

.projects-head {
    text-align: center;
    margin-bottom: 36px;
}

.projects-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-card {
    width: 100%;
    padding: 12px 12px 24px;
    border-radius: 20px;
    background: #FFF;

    /* s1 */
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.04);
}

.project-img {
    width: 100%;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.project-content h3 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    /* 150% */
    margin: 16px 0 6px;
}

.project-content p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* CTA */
.cta-section {
    width: 100%;
    padding: 70px;
}

.cta-wrapper {
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    padding: 70px 70px 65px;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 600px;
    height: 100%;
    background-image: url('../images/cta-img.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    /* 125% */
    margin-bottom: 20px;
}

.cta-content p {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 46px;
}

/* Footer */
.footer {
    width: 100%;
    background: #FCFCFC;
}

.footer-wrapper {
    padding: 76px 70px 70px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.8fr 1fr;
    gap: 70px;
}

.footer-logo img {
    width: 152px;
    height: auto;
    object-fit: cover;
}

.footer-about p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 324px;
    margin: 33px 0 24px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: flex;
    width: 43px;
    height: 43px;
    padding: 8px 7px 7px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 24.5px;
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
}

.footer-social a img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-col span {
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
    background: linear-gradient(90deg, #F97F35 0%, #EB467B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.footer-col a,
.footer-col p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.copyright {
    width: 100%;
    padding: 29px 70px;
    background: #FFF;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.copyright div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copyright div a {
    color: rgba(0, 0, 0, 0.30);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.copyright p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.copyright .dot {
    width: 6px;
    height: 6px;
    background: rgba(249, 127, 53, 0.30);
    border-radius: 50%;
    display: block;
}