* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Forum';
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: auto;
}

:root {
    --theme-color: #6FD1D4;
}

ul,
ol {
    list-style: none;
}

i,
a {
    display: inline-block;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

.container {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 10px clamp(20px, 4vw, 60px);
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absoulte {
    position: absolute;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.forum {
font-family: Forum;
font-weight: 400;
font-style: Regular;
font-size: 17px;
/* leading-trim: NONE; */
line-height: 23px;
letter-spacing: 0%;
text-align: justify;


}

.madimione {
    font-family: 'Madimi One';
}

.roboto {
    font-family: 'Roboto Condensed';
}

.LeagueGothic {
    font-family: 'League Gothic Condensed';
}

.advent {
    font-family: 'Advent Pro Expanded';
}

.lancelot {
    font-family: 'Lancelot';
}

.tenorsans {
    font-family: 'Tenor Sans';
}

.col-1 {
    width: 8.3333%;
}

.col-2 {
    width: 16.6667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.3333%;
}

.col-5 {
    width: 41.6667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.3333%;
}

.col-8 {
    width: 66.6667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.3333%;
}

.col-11 {
    width: 91.6667%;
}

.col-12 {
    width: 100%;
}


/* HEADER */

.logo {
    width: 130px;
    height: 120px;
    object-fit: contain;

}

.header {
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main{
    padding: 10px 10px 0 10px;
}

.header .menu-icon i {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
}

.header .menu-icon:hover i {
    background-color: var(--theme-color);
    color: #000;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 30px 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Forum', sans-serif;
}

.mobile-nav ul li a:hover {
    background-color: var(--theme-color);
    color: #000;
    transform: translateX(10px);
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    /* 
    background:
        linear-gradient(to bottom,
            rgba(111, 212, 212, 0.85) 0%,
            rgba(111, 212, 212, 0.65) 40%,
            rgba(0, 0, 0, 0.9) 100%),
        url("../assets/aboutHero.png"); */
    background:
        linear-gradient(to right,
            rgba(111, 212, 212, 0.85) 0%,
            rgba(111, 212, 212, 0.65) 35%,
            rgba(111, 212, 212, 0.0) 60%),
        linear-gradient(to bottom,
            rgba(111, 212, 212, 0.7) 0%,
            rgba(111, 212, 212, 0.4) 40%,
            rgba(111, 212, 212, 0) 70%),
        url("../assets/aboutHero.png");
    /* background-image: url("../assets/aboutHero.png"); */

    background-size: cover;
    background-position: right bottom;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 700;
    margin-top: auto;
}

.hero-btn {
    width: fit-content;
    padding: 14px 14px 14px 90px;
    background: #6fd4d4;
    color: #000;
    font-weight: 600;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hero-btn i {
    margin-left: 40px;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
}

.hero-btn:hover {
    background: #5bc2c2;
}

.hero-btn-container {
    background-color: #fff;
    position: absolute;
    bottom: 2.1%;
    right: 1%;
    border-radius: 40px 0px 0px 10px;
}

/* ABOUT */

.whoWeAre {
    padding: 50px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-item>img {
    width: 100%;
    height: auto;
}

.about-item h2 {
    font-size: 45px;
    position: absolute;
    top: 0;
    left: 0;
}

.whoweare-bg {
    background: url("../assets/aboutVector1.png") center / cover no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.about-content {
    position: absolute;
    top: 22%;
    padding: 30px 30px;
}

.about-item h2 {
    position: absolute;
    margin-left: 0;
}

.about-item p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 23px;
    font-weight: 700;
    text-align: justify;
}

.about-item h2 span {
    color: var(--theme-color);
}

.about-item .brand-logo {
    position: absolute;
    left: 2%;
    bottom: 0;
}

.about-item .brand-logo img {
    width: 115px;
    height: 115px;
}

/* BRAND */

.brand {
    background-color: #6FD1D433;
}

.brand-content {
    max-width: 100%;
    padding: 0 20px 0 48px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
    padding: 40px 0;
}

.brand-grid>* {
    min-width: 0;
}

.brand-item {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.brand-item h3 {
    letter-spacing: 0%;
    font-size: 160px;
    color: #2F64667D;
    font-weight: 400;
    margin-bottom: 5px;
}

.brand-item p {
    font-size: 25px;
}

/* ABOUT 2 */

.about2 {
    padding: 50px 0;
}

.about2-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
}

.about2-item>img {
    width: 100%;
    object-fit: cover;
}

.about2-logo {
    position: absolute;
    right: 2%;
    bottom: 2%;
}

.about2-item {
    padding: 30px 0;
}

.about2-logo img {
    width: 115px;
    height: 115px;
}

.about2-item p {
    margin-bottom: 20px;
    line-height: 23px;
}

/* ABOUT 3 */

.about3 {
    padding: 50px 0;
}

.about3-grid {
    background-color: #6FD1D433;
    display: grid;
    grid-template-columns: 60% 40%;
    border-radius: 20px;
    align-items: center;
    padding: 30px 0;
}

.about3 h2 {
    font-size: 45px;
    margin-bottom: 30px;
    margin-left: 0;
}

.about3 p {
    line-height: 26px;
}

.about3-logo {
    position: absolute;
    left: 0;
    bottom: 0;
}

.about3-item {
    padding: 30px 0;
}

.about3-logo img {
    width: 115px;
    height: 115px;
}

.about3-item>img {
    width: 100%;
    height: 100%;
}

/* ABOUT4 */

.about4-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    padding: 50px 0;
    align-items: center;
    overflow-y: hidden;
}

.about4-title h2 {
    font-size: 45px;
}

.about4-title h2 p {
    color: var(--theme-color);
}

.about4-item>img {
    width: 100%;
}

.about4-logo {
    position: absolute;
    bottom: 0;
    right: 0;
}

.about4-logo img {
    width: 115px;
    height: 115px;
}

.about4-item p {
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 23px;
}

/* HOW WE WORK */

.how-work {
    padding: 50px 0;
    background-color: #fff;
    border-radius: 0;
    margin: 20px 0;
}

.how-work-title h2 {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
}

.how-work-title h2 span {
    color: var(--theme-color);
}

.how-work-title p {
    max-width: 760px;
    font-size: 12px;
    line-height: 1.5;
    color: #222;
}

.how-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.how-card {
    background: #DFF5F6;
    border-radius: 14px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "step title"
        "desc desc";
    column-gap: 12px;
    row-gap: 10px;
    align-items: center;
}

.how-step {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #000;
    line-height: 1;
    grid-area: step;
}

.how-card h3 {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    grid-area: title;
    margin: 0;
}

.how-card p {
    font-size: 12px;
    line-height: 1.5;
    grid-area: desc;
}

/* WHAT WE HAVE */

.what-we {
    padding: 50px 0;
    background-color: #EAF7F7;
    border-radius: 16px;
    margin-bottom: 30px;
}

.what-title h2 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.what-title h2 span {
    color: var(--theme-color);
}

.what-title p {
    max-width: 760px;
    line-height: 23px;
    text-align: center;
    margin: 0 auto;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.what-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 190px;
    background-color: #EAF7F7;
}

.what-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-card p {
    position: absolute;
    left: 50%;
    bottom: 16px;
    color: #fff;
    font-family: 'Roboto';
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
}

.what-card:nth-child(4) p {
    /* transform: translateX(-56%);
     */
     text-align: right;
     /* background-color: #ff0000; */
     width: 70%;
}

.what-card:nth-child(5) p {
    /* transform: translateX(-44%); */
     text-align: left;
     /* background-color: #ff0000; */
     width: 70%;
}


.what-card.wide {
    grid-column: 1 / -1;
    min-height: 240px;
}

.what-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.what-btn {
    background: var(--theme-color);
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 8px 12px 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    cursor: pointer;
}

.what-btn i {
    background: #fff;
    padding: 6px 7px;
    border-radius: 50%;
}

/* ABOUT 5 */

.about5 .about-title h2 {
    font-size: 40px;
    font-weight: 600;
    margin-left: 0;
}

.about5 h2 span {
    color: var(--theme-color);
}

.about5 .subtitle,
.about5-item>p {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    text-align: justify;
    color: #222;
    margin: 0 0 12px;
}

.about5-item>p {
    margin-right: 0;
}

.about5-item>p:last-child {
    margin-bottom: 0;
}

.about5-item>p strong {
    font-weight: 700;
}

.about5-content {
    background-color: #EAF7F7;
    padding: 24px;
    border-radius: 24px;
}

.about5-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 12px;
}

.about5-grid .about5-item>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about5-logo {
    display: none;
}

.about5-item:first-child {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about5-item:last-child {
    border-radius: 20px;
    overflow: hidden;
}

.about5-logo img {
    width: 115px;
    height: 115px;
}

/* FOOTER */

footer {
    padding-top: 40px;
    background-color: #2F6466;
}

.footer .container {
    max-width: none;
    width: 100%;
    padding-left: clamp(20px, 4vw, 60px);
    padding-right: clamp(20px, 4vw, 60px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 4fr;
    gap: 40px;
    color: #fff;
}

.footer-grid .footer-content:first-child img {
    width: 270px;
}

.footer-grid .footer-content:first-child h4 {
    font-size: 17px;
    margin: 5px 0;
    margin-top: 15px;
    font-weight: 500;
}

.footer-content a {
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
    color: #fff;
    margin: 10px 0;
}

.footer-grid .footer-content:first-child i {
    background-color: rgb(60, 205, 60);
    padding: 10px 12px;
    font-weight: 500;
    font-size: 35px;
    color: green;
    border-radius: 50%;
    margin-top: auto;
}

.footer-content .whatsapp-icon {
    margin-top: auto;
}

.footer-grid .footer-content h3 {
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-grid .footer-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 200px;
    height: 1px;
    background: #fff;
}

.footer-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-content ul {
    padding-top: 30px;
}

.footer-content ul li {
    margin: 10px 0;
}

.footer-content ul li i {
    margin-right: 10px;
}

.footer-grid .footer-content:last-child img {
    width: 300px;
}

.copyright {
    color: #fff;
    border-top: 1px solid #fff;
    padding: 15px 0 0 0;
}

.copyright ul li:first-child i {
    color: #000;
    background-color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
}

.copyright ul li:nth-child(2) i {
    color: #fff;
    background-color: rgb(60, 209, 60);
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 15px;
}

.copyright ul li:last-child i {
    color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    background: linear-gradient(45deg,
            #f58529,
            #feda77,
            #dd2a7b,
            #8134af,
            #515bd4);
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #6fd4d4;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-4px);
}

/* Show button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}
