@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    z-index: 10;
    overflow-x: hidden
}

/*------------------------------------------------ NAV SECTION ------------------------------------------------------------*/

nav {
    display: flex;
    justify-content: space-between;
    margin-top: .5rem;
}

nav ul {
    display: flex;
    justify-content:center;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
    cursor: pointer;
    transition: font-weight 0.3s ease;
}

nav ul li:hover {
    font-weight: 600;
}

nav ul li:first-child{
    margin-left: 0;
}

.nav-left {
    /* border: 1px solid black; */
    margin-left: 1.6rem;
}

.nav-right {
    /* border: 1px solid black; */
    margin-right: 3rem;
    display: flex;
    align-items: center;
}

.nav-right button {
    background-color: transparent;
    padding: .7rem 1.6rem;
    font-size: 16px;
    border-radius: 10px;
}

.nav-centre {
    /* border: 1px solid black; */
    margin-right: 14rem;
}

.nav-centre img {
    width: 14rem;
}


/*------------------------------------------------ HERO SECTION ------------------------------------------------------------*/


.hero-section {
    display: flex;
    justify-content: space-between;
    max-width: 1800px;
    /* position: absolute; */
    z-index: 1;
}

.hero-left {
    margin: 6rem 2.5rem 0 0;
    width: 48%;
}

.hero-left h1, .hero-left p, .hero-left button {
    margin-left: 4rem;
}

.hero-left h1 {
    font-size: 82px;
    font-weight: 400;
    line-height: 5.7rem;
}

.hero-left h1::after {
    content: "";
    display: block; /* Set to 'block' to make it a block-level element */
    height: 1.4rem;
    width: 17.6rem;
    background-color: #FCB110;
    position: relative;
    top: -1.8rem;
    z-index: -1;
}

.hero-left h1 span {
    font-weight: 700;
}

.hero-left p {
    font-size: 18px;
    line-height: 2rem;
    margin-top: -2.5rem;
    max-width: 80%;
}

.hero-right {
    width: 52%;
}

.hero-right img {
    position: relative;
    bottom: 80px;
    right: 0px;
    z-index: -1;
    overflow-x: hidden;
    max-width: 100%;
    height: auto;
}

.cta-button {
    font-size: 18px;
    border-radius: 10px;
    border: none;
    padding: 1.2rem 1.7rem;
    background-color: #331B3B;
    color: #fff;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    font-weight: 400;
}


/*------------------------------------------------ SERVICES SECTION ------------------------------------------------------------*/


.services-section {
    z-index: 2;
    /* border: 1px solid black; */
    margin-top: 2rem;
    position: relative;
    background-color: #331B3B;
    padding: 1.5rem 0;
}

.services-section h1 {
    text-align: center;
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    margin-top: 4rem;
}

.services-section h1 span {
    font-weight: 600;
}

.services-section h1::after {
    content: "";
    display: block; /* Set to 'block' to make it a block-level element */
    height: 0.9rem;
    width: 12.6rem;
    background-color: #FCB110;
    position: relative;
    top: -1.2rem;
    left: 46.4rem;
    z-index: -1;
}

.services-container {
    display: flex;
    justify-content: space-between;
    margin: 4rem 4rem 4rem 4rem;
}

.design-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    margin: 0 2rem;
}

.design-container:first-child {
    margin-left: 0;
}

.design-container:last-child {
    margin-right: 0;
}

.design-container img {
    width: 4rem;
}

.design-container h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 40px;
}

.design-container p {
    color: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 2rem;
}


/*------------------------------------------------ TEAM SECTION ------------------------------------------------------------*/




.team-section {
    display: flex;
    justify-content: space-between;
    margin-top: 6rem

}

.team-left {
    width: 60%;
}

.team-left img {
    margin-top: 2rem;
    max-width: 100%;
    height: auto;
}

.team-right {
    width: 40%;
    margin-left: 4rem;
    margin-top: 10rem;
}

.team-right h1, .portfolio-top-left h1, .testimonials-section h1, .footer h1 {
    margin-top: 1rem;
    font-size: 50px;
    font-weight: 400;
}

.team-right h1 span, .portfolio-top-left h1 span, .testimonials-section h1 span, .footer h1 span {
    font-weight: 600;
}

.team-right h1::after, .portfolio-top-left h1:after, .testimonials-section h1:after {
    content: "";
    display: block; /* Set to 'block' to make it a block-level element */
    height: 0.9rem;
    width: 6.8rem;
    background-color: #FCB110;
    position: relative;
    top: -1.2rem;
    left: .3rem;
    z-index: -1;
}

.portfolio-top-left h1:after {
    left: 6.5rem;
}

.testimonials-section h1:after {
    left: 14.3rem;
    width: 15.7rem;
}

.team-right p, .portfolio-top-left p {
    font-size: 18px;
    line-height: 2rem;
    margin-top: -1.5rem;
    max-width: 80%;
}



/*------------------------------------------------ PORTFOLIO SECTION ------------------------------------------------------------*/

.portfolio-section {
    margin: 3rem 0 3rem 0;
    position: relative;
}

.portfolio-top {
    display: flex;
    z-index: 1;
}

.portfolio-top-left {
    margin-top: 2rem;
    margin-left: 4rem;
}

.portfolio-top-left p {
    max-width: 50%;
}

.scroll-button {
    width: 2.4rem;
    margin: 12rem .7rem 0 0;
    cursor: pointer;
    transition: transform 0.3s ease ;
}

.scroll-button:hover {
    transform: scale(1.1) ;
}

.portfolio-bottom {
    overflow-x: auto; /* Allow vertical scrolling if needed */
    white-space: nowrap;
    padding: 20px;
    margin-top: 2rem;
    z-index: 2;
}

.portfolio-bottom::-webkit-scrollbar {
    display: none;
  }

.portfolio-card {
    width: 400px; /* Set the width of each card */
    height: 400px; /* Set the height of each card */
    margin-right: 42px; /* Add some space between cards */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    display: inline-block;
    white-space: normal; /* Allow normal text wrapping inside portfolio cards */
    vertical-align: top;
    padding: 2rem;
    z-index: 2;
    background-color: #fff;
}

.portfolio-card:first-child {
    margin-left: 4rem;
}

.portfolio-card:last-child {
    display: inline-block;
    width: 400px; /* Set the width of each card */
    height: 400px; /* Set the height of each card */
    margin-right: 42px; /* Add some space between cards */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    white-space: normal; /* Allow normal text wrapping inside portfolio cards */
    vertical-align: top;
    padding: 2rem;
    z-index: 2;
    background-color: transparent;
}

.portfolio-card:last-child img {
    width: 50px;
    margin-left: 4rem;
    transform: rotate(180deg);
}

.portfolio-card:last-child p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 7rem;
}

.portfolio-card h3 {
    margin: 0;
    padding: 0;
    font-size: 30px;    
}

.portfolio-card p {
    font-size: 16px;
    line-height: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.portfolio-card img {
    width: 380px;
    margin-top: 1rem;
}


.portfolio-background-image {
    position: absolute;
    width: 55rem;
    left: 38rem;
    top: 9rem;
    z-index: -99;
    overflow-x: hidden
}


/*------------------------------------------------ STATS SECTION ------------------------------------------------------------*/


.stats-section {
    margin: 10rem 0 2rem 0;
    background-color: #FCB110;
    display: flex;
    justify-content: space-evenly;
}

.stat-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-section h1 {
    font-size: 60px;
    color: #fff;
    margin-bottom: -.5rem;
    text-align: center;
}

.stats-section p {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}


/*------------------------------------------------ TESTIMONIALS SECTION ------------------------------------------------------------*/


.testimonials-section {
    margin: 6.5rem 0 4rem 4rem;
}

.testimonials-container {
    display: flex;
    justify-content: space-evenly;
    margin-top: 6rem;
}

.testimonial-card {
    margin-right: 4rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid black; */
    flex: 1;
}

.quote-image{
     width: 3rem;
     margin: -1rem 16rem 1rem 0;
}

.testimonial-card p {
    text-align: center;
    font-size: 16px;
    line-height: 1.5rem;
}

.testimonial-image {
    width: 6rem;
    margin: .5rem 0;
}

.name {
    font-weight: 600;
    text-transform: uppercase;
}

.job {
    margin-top: -.5rem;
}


/*------------------------------------------------ FOOTER SECTION ------------------------------------------------------------*/


.footer {
    background-color: #331B3B;
    z-index: 2;
    padding: 4rem 0 1rem 0;
    position: relative;
}

.footer-main {
    display: flex;
}

.footer-left {
    width: 40%;
}

.footer-left h1 {
    margin: 0 0 -.5rem 4rem;
}

.footer-left p {
    line-height: 2rem;
    margin-left: 4rem;
}

.footer h1::after {
    content: "";
    display: block; /* Set to 'block' to make it a block-level element */
    height: 0.9rem;
    width: 11rem;
    background-color: #FCB110;
    position: relative;
    top: -1.2rem;
    left: .7rem;
    z-index: -1;
}

.contact-line {
    display: flex;
    align-items: center;
    margin: 0 0 -1rem 4rem;
}

.contact-line:first-of-type {
    margin-top: 2rem;
}

.contact-line img {
    height: 20px;
    margin-right: 1rem;
}

.contact-line p {
    margin-left: 0;
}


.footer-right {
    width: 60%;
}

.footer-left h1, .footer-left p {
    color: #fff;
}

.footer-right {
    padding: 2rem;
    margin-left: 8rem;
}

iframe {
    width: 650px;
    height: 320px;
    border-radius: 6px
}

.disclaimer {
    font-size: 10px;
    color: white;
    text-align: center;
    margin-top: 2rem;
}




















