/* FONTS */
/* Cinzel */
@font-face {
    font-family: 'Cinzel Regular';
    src: url('fonts/Cinzel-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Cinzel Bold';
    src: url('fonts/Cinzel-Bold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Cinzel Black';
    src: url('fonts/Cinzel-Black.ttf') format('truetype');
    font-style: normal;
}

/* Lato */
@font-face {
    font-family: 'Lato Regular';
    src: url('fonts/Lato-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Lato Bold';
    src: url('fonts/Lato-Bold.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Lato Black';
    src: url('fonts/Lato-Black.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'Lato Light';
    src: url('fonts/Lato-Light.ttf') format('truetype');
    font-style: normal;
}

/* CUSTOM CURSOR */
#cursor {
    width: 20px;
    height: 20px;
    position: fixed;
    border-radius: 50%;
    background-color: rgba(184, 145, 91, 0.6); 
    border: 1px solid #b8915b;
    pointer-events: none;
    z-index: 99999;
    display: none;
    transition: transform 0.15s ease-out;
}

body {
    margin: 0;
	color: #233b44;
	background-color: #fdf3e4;
	font-family: 'Lato Regular';
	height: 100vh;
	overflow-y: scroll;
    scroll-behavior: smooth;
    cursor: default; 
}

/* Basic styling for the menu */
.frame {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0rem 3rem;
    position: relative;
}

.frame__menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Menu items */
.frame__menu-item {
    text-decoration: none;
    color: #233b44;
    font-size: 1.2rem;
}

/* Hide the menu items by default for mobile screens */
.menu-items {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.open_icon {
    fill: #233b44;
}
.close_icon {
    fill: white; 
}

#sidebar-active {
    display: none;
}

.open-sidebar-button,
.close-sidebar-button {
    display: none;
}

@media (max-width: 768px) {
    .menu-items {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 300px;
        height: 100%;
        background-color: #233b44;
        box-shadow: -3px 0 3px rgba(0, 0, 0, 0.5);
        transition: 0.75s ease-out;
    }

    nav a {
        width: 100%;
        padding: 10px 30px;
        color: white;
        cursor: pointer;
        font-size: 1.2rem;
    }

    .close-sidebar-button {
        display: block;
        padding: 20px;
    }

    .open-sidebar-button {
        display: block;
        padding-top: 2rem;

    }

    #sidebar-active:checked ~ .menu-items {
        right: 0;
    }

    #sidebar-active:checked ~ #overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        background: rgba(0, 0, 0, 0.20);
    }
}


a {
    position: relative; 
    text-decoration: none; 
    color: #233b44;
    overflow: hidden; 
}

.main-content {
    margin-top: 10rem;
    height: 80vh;
    margin-left: 2rem;
}

.main-content h2 {
    font-size: 10vw;
    margin-left: 30px;
    font-family: 'Lato Regular';
}

.changing-text {
    color: #b8915b;
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
}

.slide-animation {
    animation: slideUp 2.5s linear forwards;
}


/* SLIDING TEXT ANIMATION */

@keyframes slideUp {
    0% {
        transform: translateY(80%);
        opacity: 0;
    }
    25% {
        transform: translateY(80%);
        opacity: 0;
    }
    50% {
        transform: translateY(0%);
        opacity: 1;
    }
    75% {
        transform: translateY(0%);
        opacity: 1; 
    }
    100% {
        transform: translateY(-80%);
        opacity: 0;
    }
}

.changing-text.show {
    visibility: visible;
    opacity: 1;
}


/* Intro home  */
.home-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-bottom: 20rem;
}

.home-intro h1 {
    font-family: "Lato Black";
    font-size: 3.5rem;
    width: 80%;
    margin-bottom: 15px;
}

.home-intro h2 {
    font-family: "Lato Light";
    font-size: 1.3rem;
    width: 60%;
}

 /* EXPERTISE HOME PAGE */
.expertise-container {
    width: 40%;
    margin-top: 1rem;
    margin-left: 8rem;
    padding-bottom: 6rem;
}

.expertise-title {
    font-size: 2rem;
    font-family: 'Lato Bold';
    color: #233b44;
    margin-bottom: 2rem;
}

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

.expertise-item {
    display: flex;
    flex-direction: column;  /* Stack number, heading, and description vertically */
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #233b444b;
}

.expertise-heading {
    font-size: 1.2rem;
    font-family: 'Lato Bold';
    color: #233b44;
}

.expertise-number {
    font-size: 1rem; 
    font-family: 'Lato Regular';
    color: #233b44;
    margin-right: 0.5rem; 
    border: 1px solid #233b44; 
    border-radius: 50%; 
    width: 1.7rem; 
    height: 1.7rem; 
    background-color: transparent; 
    line-height: 1.7rem; 
    text-align: center; 
    display: inline-block; 
    vertical-align: middle; 
    margin-right: 3rem;
}


.expertise-description {
    font-family: 'Lato Light';
    font-size: 0.9rem;
    color: #233b44;
    margin-top: 0.5rem;
    margin-left: 5rem;
}

.expertise-wrapper {
    display: flex;  
    justify-content: space-between;  
    gap: 2rem;  
}

.services-box {
    position: relative;
    background-color: #233b44;
    border-radius: 10px;
    margin-right: 6rem;
    margin-top: 10rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);  
    height: 380px;  
    width: 400px;
}

.services-box h2 {
    position: absolute; 
    font-family: "Lato Light";
    font-size: 1.2rem;
    top: 0;  
    left: 0;  
    color: white;
    margin: 25px;  
}

.services-box a {
    position: absolute; 
    font-family: "Lato Regular";
    font-size: 2rem;
    bottom: 0;  
    left: -35px;  
    color: white;
    text-decoration: none; 
    transition: transform 0.3s ease; 
    margin: 20px;
    display: flex; 
    align-items: center; 
}

.services-box a:hover {
    text-decoration: underline; 
    transform: translateX(35px); 
}

.services-box a::before {
    content: '';
    background-image: url('arrow.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
    margin-left: 0;
}

.services-box a:hover::before {
    opacity: 1; /* Arrow appears on hover */
}

/* QUOTE home */
.quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding-bottom: 2rem;
    position: relative;
}

.quote-container h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    width: 70%;
}

.profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-container h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.quote-container p {
    font-size: 1rem;
    margin: 0.2rem;
}


/* HOME - COMPATIBILITY FOR SMALLER SCREENS */
@media (max-width: 768px) {
    .main-content {
        margin-top: 6rem; 
        height: auto; /* Let the content determine the height */
        margin-left: 0;
    }

    .main-content h2 {
        font-size: 10vw; 
    }

    .changing-text {
        font-size: 10vw; 
    }

    .home-intro {
        padding-bottom: 5rem;
        padding-top: 5rem;
    }
    
    .home-intro h1 {
        font-family: "Lato Black";
        font-size: 1.5rem;
        width: 75%;
    }
    
    .home-intro h2 {
        font-family: "Lato Light";
        font-size: 0.8rem; 
        width: 70%;
    }

    .expertise-container {
        width: 80%; 
        margin-left: 3rem; 
        margin-top: 2rem; 
        padding-bottom: 2rem; 
    }

    .expertise-title {
        font-size: 1.5rem; 
        margin-bottom: 1.5rem;
    }

    .expertise-list ul {
        padding: 0;
        margin: 0;
    }

    .expertise-item {
        flex-direction: column; 
        margin-bottom: 1rem;
        padding-bottom: 1rem; 
        border-bottom: 1px solid #233b444b;
    }

    .expertise-heading {
        font-size: 1rem; 
    }

    .expertise-number {
        font-size: 0.9rem; 
        width: 1.5rem; 
        height: 1.5rem;
        line-height: 1.5rem;
        margin-right: 1rem; 
    }

    .expertise-description {
        font-size: 0.8rem; 
        margin-left: 2.8rem; 
        margin-top: 0.3rem; 
    }

    .expertise-wrapper {
        flex-direction: column;
        gap: 1rem; 
    }
    .services-box {
        margin-top: 10rem; 
        height: 200px;
        max-width: 280px;
        width: 60%; 
        padding: 1rem; 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        top: 50%; 
        left: 50%; 
        transform: translate(-50%, -50%);
    }

    .services-box h2 {
        font-size: 1rem; 
        margin: 15px; 
    }

    .services-box a {
        font-size: 1.5rem; 
        bottom: 10px; 
        left: -15px; 
        margin: 5px; 
        
    }

    .services-box a::before {
        width: 30px; 
        height: 30px;
    }

    .image-container {
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        gap: 10rem; 
        height: 90vh; 
        margin: 0 auto;
    }

    .image-box {
        width: 100%; 
        height: auto; 
        max-width: 300px; 
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    }

    .image-box-offset {
        transform: translateY(0); 
        transform-origin: center; 
    }

    .image-wrapper img {
        width: 100%; 
        height: auto;
    }

    .quote-container {
        height: auto !important; 
        padding-bottom: 10rem !important;
        padding-top: 5rem;
        padding-left: 1rem !important;   
        padding-right: 1rem !important;  
    }

    /* Title */
    .quote-container h1 {
        font-size: 1.5rem !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }

    /* Profile image */
    .profile-img {
        width: 70px !important; 
        height: 70px !important; 
    }

    /* Subheading */
    .quote-container h2 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Paragraph text */
    .quote-container p {
        font-size: 0.8rem !important;
        margin: 0.2rem !important;
    }
}



/* PAGE TRANSITION ANIMATION */
.transition-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #b8915b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    opacity: 1; /* Initial opacity */
    transition: width 0.8s ease, height 0.8s ease, opacity 0.4s ease; /* Include opacity transition */
}

.transition-overlay.active {
    width: 200vw; 
    height: 200vw; /* Ensure width and height are equal */
}

.transition-overlay.fade-out {
    opacity: 0; /* Fade out at the end */
}

/* Hide content during transition */
body.transitioning .entire-body {
    visibility: hidden;
    opacity: 0; 
}

.entire-body {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.entire-body.visible {
    opacity: 1;
}


/* LOGOS */
.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shade-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw; 
    height: auto;
    z-index: 0;
    opacity: 0.4;
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 10vw;  
    height: auto;
}

.text-logo {
    position: absolute;
    top: calc(50% + 6vw);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 50vw;  
    height: auto;
}

.shade-logo, .logo, .text-logo {
    transition: all 1s ease;
}

.hidden {
    display: none;
}

/* LOGO TRANSITION ANIMATION */
@keyframes logoTransition {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        top: 6%;
        left: 6%;
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0%;
    }
}

@keyframes shadeLogoTransition {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 90%;
        left: 90%;
        transform: translate(-50%, -50%);
        opacity: 0%;
    }
}

@keyframes textLogoFade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Set a fixed position for logos once the animation completes */
.fixed-logo,
.fixed-shade-logo, .fixed-text-logo {
    animation: none !important;
    transition: none !important;
    position: fixed !important;
}

/* Fixed position for logo (top-left) */
.fixed-logo {
    top: 6vh !important;
    left: 6vw !important;
    width: 5vw; 
    z-index: -1;
}

/* Fixed position for shade-logo (bottom-right) */
.fixed-shade-logo {
    bottom: -25%;
    right: -15%;
    width: 50vw; 
    opacity: 0.4;
}

.fixed-text-logo {
    top: 3vh;
    left: 10vw;
    width: 20vw;
}

@media (max-width: 768px) {
    .fixed-logo {
        top: 10vh !important; 
        left: 12vw !important; 
        width: 10vw !important; 
    }

    .fixed-text-logo {
        top: 9vh !important; 
        left: 20vw !important;
        width: 40vw !important;
    }
}



/* ------------------ */
/* ABOUT STYLING */
.about-intro {
    padding-left: 8rem;
    padding-right: 8rem;
    font-family: 'Lato Bold';
    font-size: 1.5rem;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    box-sizing: border-box;
    height: 100vh;
}

.about-intro h1 {
    position: relative;
}

.about-container {
    position: relative;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 80%;
    min-width: 700px;
    overflow-y: auto;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    height: 80vh;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    animation: appear2 linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes appear2 {
    from {
        scale: 0.90;
    }
    to {
        scale: 1;
    }
}



/* Left column for "Why Us?" */
.why-section .why {
    flex: 1;
    padding-right: 20rem;
    font-family: 'Lato Black';
    font-size: 3rem; 
    color: #233b44; 
}

.why-section .our-team {
    flex: 1;
    font-family: 'Lato Regular';
    font-size: 3rem;
    color: #233b44; 
}


/* Right column for the list */
.reasons-list {
    flex: 2;
    margin-top: 1rem;
}

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

.reason-item {
    display: grid;
    grid-template-columns: 50px 200px auto;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.5rem;
    padding-top: 1rem; 
    border-top: 1px solid #233b444b; 

}

.reason-number {
    font-size: 1.2rem;
    font-family: 'Lato Bold';
    color: #233b44;
    text-align: center;
}

.reason-heading {
    font-size: 1.2rem;
    font-family: 'Lato Bold';
    color: #233b44;
    white-space: nowrap; 
    padding-left: 1.5rem;
}

.reason-description {
    font-family: 'Lato Light';
    font-size: 0.8rem;
    color: #233b44;
    line-height: 1.4;
    padding-left: 10rem;
}


@media (max-width: 1325px) {
    .about-container {
        flex-direction: column; 
        height: auto; 
    }

    .why-section {
        margin-bottom: 0.5rem; /* Add space between the sections */
    }

    .reason-item {
        grid-template-columns: 1fr; /* Stack reason number and heading */
        gap: 0.5rem;
    }

    .reason-number {
        font-size: 0rem;
        text-align: left;
    }

    .reason-heading {
        font-size: 1rem; 
        padding-left: 0;
    }

    .reason-description {
        padding-left: 0;
        font-size: 1rem;
    }
}



.members-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100vh;
    box-sizing: border-box;
    justify-content: center; 
    text-align: center;   
    margin-top: 2rem;
}

.members-container h1 {
    font-family: 'Lato Black';
}


/* MEET THE TEAM STYLING */
.team-container {
    text-align: center;
    margin: 2rem auto;
    max-width: 80%;
    padding-bottom: 10rem;
    padding-top: 5rem;
}

.team-container h1 {
    font-family: 'Lato Black';
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #233b44;
}

.team-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
}

.team-info {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    width: 100%;
    padding: 1rem;
    text-align: left;
    font-family: 'Lato Regular';
}

.team-info h2 {
    font-size: 1rem;
    margin: 0.1rem 0;
}

.team-info p {
    font-size: 0.8rem;
    margin: 0;
}

.team-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #233b44;
    color: white;
    font-family: 'Lato Light';
    font-size: 1rem;
    text-align: left;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-hover h2, h3 {
    margin: 0;
}

.team-hover h2 {
    font-size: 1rem;
    font-family: 'Lato Black';
}

.team-hover h3 {
    font-size: 1rem;
    font-family: 'Lato Regular';
    margin: 0;
}

.team-hover p {
    font-size: 0.9rem;
    width: 80%;
}


.team-card:hover .team-hover {
    opacity: 1;
}

.team-card:hover .team-info {
    opacity: 0;
}


.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider-btn {
    position: relative;
    background-color: transparent;
    font-size: 1rem;
    width: 35px;
    height: 35px;
    color: #233b44;
    border: 1px solid #233b44;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background-color: #1a2d3635;
}

.team-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.team-wrapper {
    transition: transform 0.5s ease-in-out;
    display: flex;
    gap: 1.5rem; 
}

.team-card {
    flex: 0 0 calc(33.33% - 1.3rem); /* size of the team cards */
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.team-header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    width: 99%;
}


@media (max-width: 798px) {
    .about-intro {
        padding-left: 3rem;
        padding-right: 3rem;
        font-size: 0.8rem; 
        margin: 0;
        padding-top: 0;
        height: 80vh;
    }
}

@media (max-width: 500px) {
    .about-intro {
        padding-left: 3rem;
        padding-right: 3rem;
        font-size: 0.6rem; 
        margin: 0;
        padding-top: 0;
        height: 80vh;
    }

    .about-container {
        flex-direction: column; 
        height: auto; 
        margin: 0 auto; 
        padding: 1rem 2rem; 
    }

    .why-section {
        margin-bottom: 0.5rem; 
    }
    
    .why-section .why,
    .why-section .our-team {
        font-size: 2rem; 
    }

    .reason-item {
        grid-template-columns: 1fr; 
        gap: 0.5rem;
        width: 80%;
    }

    .reason-number {
        font-size: 0rem;
        text-align: left;
    }

    .reason-heading {
        font-size: 1rem; 
        padding-left: 0;
    }

    .reason-description {
        padding-left: 0;
        font-size: 0.8rem;
        width: 65%;
    }
}

@media (max-width: 768px) {
    .team-container {
        text-align: center;
        margin: 2rem auto;
        max-width: 90%;
        padding-bottom: 10rem;
        padding-top: 5rem;
        pointer-events: none;
    }

    .team-container h1 {
        font-family: 'Lato Black';
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #233b44;
    }

    .team-wrapper {
        display: block; /* Stack team cards vertically */
        gap: 1rem; /* Space between the cards */
        width: 100%;
    }

    .team-card {
        display: block; 
        width: 100%; 
        box-sizing: border-box;
        text-align: center;
        margin-bottom: 1.5rem;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: none !important; 
    }

    .team-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    .team-info {
        position: relative;
        background-color: rgba(0, 0, 0, 0.2);
        color: white;
        width: 100%;
        padding: 1rem;
        text-align: left;
        font-family: 'Lato Regular';
    }

    .team-info h2 {
        font-size: 1.1rem;
        margin: 0.1rem 0;
    }

    .team-info p {
        font-size: 0.9rem;
        margin: 0;
    }

    .team-card:hover {
        box-shadow: none !important; 
    }

    .team-hover {
        display: none !important; 
    }


    .slider-arrows, .slider-btn {
        display: none; 
    }
}




/* FOOTER *//* Footer General Styling */
.site-footer {
    position: relative;
    background-color: #233b44; /* Dark background */
    color: #fff; /* White text */
    padding: 5rem 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}

.footer-container {
    display: flex;
    flex-direction: column; 
    width: 100%;
    max-width: 1200px;
    text-align: left; 
}

/* Navigation Section */
.footer-section-navigation {
    margin-bottom: 4rem; /* Space below navigation */
    border-bottom: 1px solid white; 
    padding-bottom: 3rem;
}

.footer-section-navigation h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: "Lato Light";
    color: white; 
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4rem; /* Space between links */
}

.footer-links a {
    font-size: 3rem; /* size of links in navigation */
}

.nav-link {
    color: #fff;
    font-size: 1.2rem; /* Larger font for navigation */
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #b8915b; /* Hover effect */
}

/* Contact Section */
.footer-contact {
    border-bottom: 1px solid white; 
    padding-bottom: 3rem;
    display: flex;
    gap: 7rem; /* Space between columns */
    justify-content: left; /* Align columns to the left */
}

.contact-column {
    display: flex;
    flex-direction: column; /* Stack content vertically */
}

.contact-column h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: "Lato Light";
    color: white; 
}

.contact-column a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
    text-decoration: underline;
    text-underline-offset: 9px;
    line-height: 2;
}

.contact-column a:hover {
    color: #b8915b; /* Hover effect */
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1rem; /* Space between social links */
    justify-content: flex-start; /* Align to the left */
}

.social-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
    text-decoration: underline;
}

.social-links a:hover {
    color: #b8915b; /* Hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 5rem; 
    }

    .footer-container {
        text-align: center; 
        padding: 0 2rem;
    }

    .footer-links {
        flex-direction: column; 
        gap: 1rem; 
        font-size: 2rem; 
    }

    .footer-contact {
        flex-direction: column; 
        align-items: center; 
        gap: 2rem;
    }

    .social-links {
        justify-content: center; 
    }

    .contact-column {
        align-items: center; 
    }
}

@media (max-width: 500px) {
    .site-footer {
        padding: 2rem 2rem; 
    }

    .footer-links a {
        font-size: 1.5rem; 
    }

    .footer-contact {
        gap: 0.5rem;
    }

    .contact-column a {
        font-size: 0.9rem; 
    }
}

/* SERVICES STYLING */
.services-container {
    padding-top: 10rem;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
}
/* 
.service-item {
} */

.services-title {
    font-size: 5rem; /* Large title font */
    margin-bottom: 5rem; /* Space below the title */
    font-family: "Lato Bold";
}

.services-description {
    line-height: 1.4; 
    display: flex;
    align-items: flex-start;
}

.full-description {
    font-size: 1rem; 
    font-family: "Lato Light";
    width: 35%;
}

.services-bulletpoints{
    font-size: 0.8rem; 
    font-family: "Lato Light";
    padding-left: 6rem;
}


/* PROJECTS STYLING */
.summary-container {
    padding-top: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 80%;
    margin: 0 auto; 
    padding-bottom: 2rem;
}

/* Make sure the h1 and h3 elements in the summary align properly */
.projects-summary h1 {
    font-size: 3rem;  
    width: 70%;
}

.projects-summary h3 {
    font-size: 1.5rem;  
    font-family: "Lato Light";
    width: 50%;
}

/* PROJECTS CONTAINER */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto; 
    width: 80%;
}

/* For each project item */
.project-item {
    display: flex;
    gap: 2rem;  
    margin-bottom: 2rem;
    align-items: flex-start;
    border-bottom: 1px solid #233b444b; 
    padding-bottom: 3rem;
}  

/* Left side - image */
.projects-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    width: 70%;
}

/* Image grid styling */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
    gap: 1rem;
    width: 100%;
}

/* Each image */
.projects-images img {
    width: 100%; 
    height: 150px;  /* fixed height for all images */
    object-fit: cover;  
    border-radius: 8px; 
    opacity: 0.8; /* Initial opacity for a faded effect */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for opacity */
}

/* On hover, set opacity to 1 and add scale effect */
.projects-images img:hover {
    opacity: 1;  /* Full opacity */
    transform: scale(1.1);  /* zoom on hover */
}

/* Right side - description */
.projects-description {
    width: 50%;
}

.projects-description h1 {
    font-size: 1.5rem; 
    font-family: "Lato Bold";
}

.projects-description h2 {
    font-size: 1rem; 
    margin-bottom: 10px;
    font-family: "Lato Regular";
}

.projects-description p {
    font-size: 1rem; 
    font-family: "Lato Light";
    width: 90%;
}

/* PROJECTS - mobile compatibity */
@media screen and (max-width: 768px) {
    .summary-container {
        padding-top: 1rem;
    }

    .summary-container h1 {
        font-size: 3vh;
    }

    .summary-container h3 {
       font-size: 1.8vh;
    }

    .project-item {
        flex-direction: column;
        align-items: center; 
    }

    .projects-images {
        width: 100%;
        justify-content: center;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr); /* Reduce columns to 2 for mobile */
        gap: 0.8rem;
    }

    .projects-images img {
        height: 120px; 
        width: 100%;
    }

    .projects-description {
        width: 100%;
        padding-top: 1rem; 
        text-align: center !important; 
    }

    .projects-description h1 {
        font-size: 1.2rem; 
        text-align: center !important; 
        margin: 0 !important;
        padding: 0 !important;
        justify-content: center !important;
        width: 100%;
    }

    .projects-description h2 {
        font-size: 0.9rem; 
    }

    .projects-description p {
        font-size: 0.9rem;
        width: 100%;
    }
}

/* CONNECT WITH US - contact section */
.contact-us-container {
    position: relative;
    background: white;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto; 
    height: 90vh;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    justify-content: center;
    text-align: center;
}

.contact-us-container .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    width: 100%;
    text-align: center;
}

.contact-us-container .fade-in.show {
    opacity: 1;
    transform: translateY(0);
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

.contact-us-container h1 {
    font-size: 3rem;
    font-family: "Lato Bold";
    text-align: center; 
    font-size: 3rem;
    margin: 0; 
}

.contact-us-container p {
    font-size: 1.5rem;
    font-family: "Lato Light";
    width: 80%;
    padding-bottom: 2rem;
    text-align: center; 
}

.contact-btn {
    position: relative;
    background-color: transparent;
    font-size: 1rem;
    color: #233b44;
    border: 1px solid #233b44;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.contact-btn:hover {
    background-color: #1a2d3635;
}

/* dynamic contact */
.contact-links {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 2rem; 
    margin-top: 1rem; 
}

.contact-links a {
    color: #233b44;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 0rem;
    border-bottom: 1px solid #233b44;
    transition: background-color 0.3s, color 0.3s;
    align-items: center;
}

.contact-links a:hover {
    color: #b8915b;
    border-bottom: 1px solid #b8915b;
}


/* STICKTY CONTENT */
.content--sticky {
	position: sticky;
	top: 0rem;
	--offset: 10rem;
	top: var(--offset);
	height: calc(60vh - var(--offset));
}

.service-item {
    padding: 2rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
} 



@keyframes appear {
    from {
        transform: translateY(100px);
    }
    to {
        transform: translateY(0px);;
    }
}

.contact-us-container {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 45%;
}


/* IMAGES home */
/* Container for both boxes */
.image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 14rem; /* Space between the two boxes */
    position: relative;
    margin-top: 2rem;
    margin-bottom: 5rem;
}

/* Individual image box */
.image-box {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);  
}

.image-box:hover {
    transform: scale(1.1); /* Enlarges the entire box */
}


/* Offset the first box slightly upward */
.image-box-offset {
    transform: translateY(10rem);
    transform-origin: center bottom;
}

/* Scale on hover */
.image-box-offset:hover {
    transform: translateY(10rem) scale(1.1); /* Combines scaling with the offset */
}

/* Wrapper for hover effect */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

/* Default image is fully visible initially */
.image-default {
    opacity: 1;
    z-index: 1;
}

/* Hover image is hidden initially */
.image-hover {
    opacity: 0;
    z-index: 2;
}

/* On hover, swap the images */
.image-wrapper:hover .image-default {
    opacity: 0;
}

.image-wrapper:hover .image-hover {
    opacity: 1;
}

/* CONTACT US - mobile screen */
@media (max-width: 768px) {
    .contact-us-container {
        width: 80%; 
        height: 60vh;
        padding: 2rem 1.2rem; 
    }

    .contact-us-container h1 {
        font-size: 1.8rem; 
        width: 100%;
    }

    .contact-us-container p {
        font-size: 1.2rem; 
    }

    .contact-btn {
        font-size: 0.9rem; 
        padding: 0.5rem 1rem; 
    }

    .contact-links a {
        font-size: 0.8rem; 
    }

    .contact-links {
        flex-direction: column; 
        gap: 0.2rem;
    }
}