/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Petrona:wght@100..900&display=swap');

:root {
    --white: #FFFFFF;
    --black: #000000;
    --btn-color: #666666;    
    --heading-color: #242424;
    --font-primary: "Petrona", serif;
    --font-secondary: "Lato", sans-serif;
}

::selection {
    background-color: var(--black);
    color: var(--white);
}

/* General Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    overflow-x: hidden;
}

section {
    position: relative;
    padding: 5rem 0;
}


.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.imgFluid {
    max-width: 100%;
    height: auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--heading-color);
    text-transform: capitalize;
}

p {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--black);
    font-family: var(--font-primary);
}


/* ThemeBtn */
.themeBtn {
    width: fit-content;
    display: block;
    color: var(--btn-color);
    font-size: 1.25rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: capitalize;
}

.themeBtn span {
    margin-left: 0.75rem;
}

.themeBtn:hover {
    transform: scale(1.05);
    color: var(--btn-color);
}

/* heading */
.mainHeading {
    font-size: 5.25rem;
    font-weight: 500;
    background: linear-gradient(to bottom right, #6da2de, #293773);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* header */
.header {
    transition: 0.3s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 999;
}

.header-main__nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: fit-content;
    transition: all 0.3s ease;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    gap: 1.5rem;
    background: linear-gradient(to right, #6da2de, #293773);
    box-shadow: 0 0 6px #0008;
}

.header-main__nav li a {
    color: #Fff;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0;
    text-transform: uppercase;
    position: relative;
}

/* mainBanner */
.mainBanner__text a {
    margin-bottom: 0.5rem;
}

.mainBanner__heading h1 {
    font-size: 4.75rem;
    font-weight: 500;
    background: linear-gradient(to bottom right, #6da2de, #293773);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* whatwe */
.panel.whatwe {
    background: linear-gradient(to bottom right, #6da2de, #293773);
}

.subCard {
    margin: 0 0 3.75rem;
    padding: 2.25rem;
    background-color: #F4F4F4F4;
    border-radius: 1rem;
    box-shadow: 0.3125rem 0.3125rem 0.625rem 0 rgba(0, 0, 0, 0.18);
}

.subCard svg {
    width: 50px;
    aspect-ratio: 1;
    fill: #305BC7;
    color: #305BC7;
}

.subCard h3 {
    font-size: 1.5625rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
}

.subCard p {
    font-size: 1rem;
    color: var(--black);
    margin: 0;
    font-family: var(--font-secondary);
}

/* services */
.services {
    background: url("../images/services-bg.jpeg") center/cover, no-repeat;
    background-attachment: fixed;
}

.services::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 85%);
    position: absolute;
    inset: 0;
}

.servicesTitle {
    position: relative;
    z-index: 1;
}

.servicesTitle,
.testimonialTitle,
.contactTitle {
    margin-bottom: 2.5rem;
}

/* testimonials */
.testimonials .subCard {
    margin-bottom: 2rem;
}

.testimonials .subCard p {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: var(--font-primary);
    margin-bottom: 1.25rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-user img {
    width: 60px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-user h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* contact */
.contactForm__wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contactForm__group {
    width: 100%;
}

.contactForm__group label {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.contactForm__group :is(input, textarea) {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background-color: var(--white);
    box-shadow: none;
    color: #777777;
    font-size: 1rem;
    transition: all .5s ease;
    resize: none;
    margin-bottom: 1.5rem;
}

.contactForm__group button {
    background: #e0e0e0;
    padding: 0.6rem 1rem;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--heading-color);
    text-transform: uppercase;
}

.contactInfo ul li a {
    font-size: 1.875rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.contactInfo ul li a span {
    margin-left: 0.75rem;
}

.panel {
    height: 100vh;
    width: 100vw;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wrapper {
    display: flex;
    align-items: center;
    height: 100vh;
    min-width: 600%;
}

.mainBanner__img {
    width: 29%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.mainBanner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}