/* Default */
@font-face {
    font-family: 'Quicksand';
    src: url('assets/fonts/Quicksand-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:  'Quicksand', Arial, sans-serif;
}


/* Variables */
:root {
    --primary-color: #ffa000; /* Decorative yellow line color */
    --primary-color-darken: #ac6e04; /* Decorative yellow line color */
    --text-color:#4d5960; /* Major text color */
    --link-color: #257bd3; /* Color used for links */
    --placeholder-color:#37474f;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}
  
::-webkit-scrollbar-track {
background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
background-color: var(--primary-color-darken);
}
  


/* Navbar */

.menu-item.active {
    border-bottom: 2px solid var(--primary-color);
}

.menu-item:hover{
    color: var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 15px 20px;
    width: 80%;
    margin-top: 2.5%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Logo */
.navbar .logo img {
    height: 75px;
    width: auto;
    transition: height 0.3s;
}

/* Navbar Menu */
.navbar ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s;
    font-size: 1vw;
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001; 
    position: relative; 
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px; 
    transition: all 0.3s ease; 
}

/* Hide Checkbox */
#menu-toggle {
    display: none;
}





/* Main Section */
.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    max-width: 2048px;
    margin: 0 auto;
    margin-bottom: 10%;
    flex-wrap: wrap;
    position: relative;
}

/* Text Section */
.text-section {
    flex: 1;
    display: flex;  
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 1em; 
}

/* Text Wrapper */
.text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Line Container */
.line-container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Line Element */
.line {
    background-color: var(--primary-color);
    height: 2px;
    flex-grow: 1;
    margin-right: 1em;
}

.text-section h1 {
    font-size: 4vw; 
    text-align: left; 
    white-space: nowrap; 
    word-break: break-word;
}

/* H3 Styling */
.text-section h3 {
    font-size: 0.75em;
    margin: 0;
    padding-bottom: 0;
}

/* Image Section */
.image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
}

/* Scroll Down Button */
.scrollDownButton {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 50px;
    height: 50px;
    background-color: white;
    border: 2px solid var(--primary-color);
    display: flex;
}

.scrollDownButton img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-40%) translateY(-25%) rotate(-45deg);
    width: 60%;
    height: 60%;
}

/* About Section */
.about-content {
    display: flex;
    justify-content: flex-end; 
    width: 100%;
    box-sizing: border-box; 
    position: relative;
}

.about-dragon {
    width: 50%;
    height: auto;
    position: absolute;
    left: 0;
    transform: translateY(-25%);
}

.inner-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.about-text {
    max-width: 60%;
}

.about-text h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: justify;
    color: var(--primary-color);
}

.about-text h3 {
    font-size: 1em;
    line-height: 1.5;
    text-align: justify;
    margin-top: 5%;
    color:var(--text-color);
}

.about-text-link {
    color: var(--link-color);
    text-decoration: none;
}

.about-text-link:visited {
    color: var(--link-color); 
}

.about-text-link:hover {
    color: var(--primary-color); 
}

.logo-row {
    display: flex;
    margin-top: 5%;
}

.logo-row .clickable-logo {
    margin-right: 20px;
}

.logo-row img {
    width: auto;
    height: 100px;
}

/* Shop Section */
.shop-section {
    position: relative;
    width: 100%; 
}

.shop-image-container {
    position: relative; 
    width: 100%;
}

.shop-background {
    width: 100%;
    height: auto;
}

.shop-bottom {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
}

.shop-button-decoration-right {
    position: absolute;
    right: 0;
    pointer-events: none;
    user-select: none;
    transform: translateY(-45%) translateX(50%) scaleX(-1);
}

.shop-button-decoration-left {
    position: absolute;
    left: 0;
    pointer-events: none;
    user-select: none;
    transform: translateY(-45%) translateX(-50%);
}

.shop-art {
    position: absolute; 
    top: 55%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 1; 
    width: 60%; 
    height: auto; 
}

.shop-button-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the buttons */
    z-index: 2;
}

.shop-button-wrapper {
    padding: 20px 10px;
    border: 2px solid rgba(260, 160, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.shop-button {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-decoration: none;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 2;
    border: 2px solid var(--primary-color);
}


.shop-button:hover {
    background-color: #ff9900;
    transform: translateX(-50%) scale(1.55);
    font-size: 1.2em;
}


/* Partners Section */
.partners-section {
    padding: 4% 5%;
    text-align: center;
}

.partners-background{
    position: absolute;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.partners-title {
    font-size: 2em;
    margin-bottom: 5%;
    color: var(--primary-color);
}

.partners-container {
    position: relative;
    overflow: hidden; 
    width: 100%;
}

.partners-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.partners-scroll {
    display: flex;
    gap: 5%;
}

.partner-logo img {
    width: 100%;
    height: auto; 
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 50px;
    height: 50px; 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}

.prev-button {
    left: 0;
    background-image: url('assets/img/chevronDown.png');
    transform: translateY(-50%) rotate(90deg);
}

.next-button {
    right: 0;
    background-image: url('assets/img/chevronDown.png');
    transform: translateY(-50%) rotate(-90deg);
}

.scroll-button:hover {
    background-color: #ff9900;
}

/* Contacts Section */
.contacts-section {
    padding: 5% 20px;
    text-align: center;
    position: relative;
}

.contacts-background {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-image: url('assets/img/contactsBackground.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}


.contacts-title {
    font-size: 2.5em;
    margin-bottom: 1%;
    color: var(--primary-color);
}

.contacts-message {
    margin-bottom: 2%;
    font-size: 1em;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-align-last: center;
}

.contacts-message h3{
    color:var(--text-color);
}

.contacts-form {
    width: 40%;
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin-bottom: 10%;
}

.contacts-form label {
    font-weight: bold;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    padding: 20px;
    border: none;
    padding-left: 30px;
}

.contacts-form textarea {
    resize: none;
}

.submit-button {
    background-color: rgba(0,0,0,0.9);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 25px 10px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
    font-family: 'Quicksand', Arial, sans-serif;
}

.submit-button:hover {
    background-color: var(--primary-color);
}

.contacts-input{
    background-color: var(--primary-color);
    font-family: 'Quicksand', Arial, sans-serif;
    color:var(--text-color);
    font-weight: bold;
}

.contacts-input::placeholder {
    color: var(--placeholder-color);
    font-family: 'Quicksand', Arial, sans-serif;
    font-weight: bold;
}

/* Footer Section */
.wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.footer {
    background-color: black;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    z-index: 1;
}


.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    padding-left: 5%;
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 5vh;
    width: auto;
    filter: invert(1);
}

.footer-right {
    display: flex;
    align-items: center;
    padding-right: 5%;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
    font-size: 1em;
}

.footer-link:hover {
    color: white;
}

.footer-divider {
    color: white;
    margin: 0 10px;
    font-size: 1em;
}


/* Cookie Policy */
.cookie-content {
    display: flex;
    align-items: left;
    width: 80%;
    max-width: 2048px;
    margin: 0 auto;
    margin-bottom: 10%;
    position: relative;
    flex-direction: column;
}

.cookie-content h2, .cookie-content h3, .cookie-content h4 {
    font-size: 2em; 
    text-align: justify;
}

.cookie-content h2 {
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 1%;
}

.cookie-content h3{
    font-size: 1.5em;
    margin-bottom: 1%;
}

.cookie-content h4 {
    font-size: 1em; 
    font-weight: normal;
    margin-bottom: 1%;
    word-break: break-word;
}

.cookie-content h5 {
    margin-bottom: 1%;
    text-align: justify;
}

.cookie-content ul {
    padding-left: 5%;
    margin-bottom: 1%;
}

.cookie-label{
    font-size: 1em; 
    padding-left: 3.5%;
    font-family: 'Quicksand', Arial, sans-serif;
}

.main-content-team{
    z-index: 0;
    width: 100%;
    display: flex;
    max-width: 2048px;
    margin: 0 auto;
    position: relative;
    align-content:flex-start;
    top: -20%;
    height: auto;
    margin-bottom: -10%;
}

.team-text-section{
    width: 50%;
    float: left;
    margin-top: 15%;
    padding-left: 5%;
}

.team-text-section h1{
    border-bottom: 2px solid var(--primary-color);
    width: fit-content;
    font-size: 4em;
    margin-bottom: 10%;
}

.team-card-section {
    display: flex;
    align-items: center;
    border: 1px solid lightgrey;
    width: 90%;
    margin-top: 5%;
}

.team-card-section-left {
    align-items: center; /* Center the image vertically */
    border-radius: 100px;
    width: 8vw;
    height: 8vw;
    display: block;
    margin-left: 30px;
}

.team-card-section-left img {
    object-fit: contain; /* Ensures the image covers the entire area */
    border-radius: 100px; /* Matches the border radius of the container */
    width: 100%;

}

.team-card-section-right{
    display: flex;
    flex-direction: column;
    padding-left: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    width: 70%;
}

.team-card-section-right h2{
    color: #ff9900;
}

.team-card-section-right p{
    margin-top: 5%;
}


.team-image-section{
    width: 50%;
    float: right;
    position: relative;
}

.team-image-section img{
    width: 100%;
    z-index: 0;
    display: block;
}

/* Fading effect on the top part of the image */
.team-image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%; /* Adjust this value to control the height of the fade */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
    pointer-events: none; /* Ensure the overlay doesn't block interactions */
}


/*Services css */

.services-body {
    display: flex;
    flex-direction: column;
    background-image: url('assets/img/services/background.png');
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    min-height: 100vh
}

.service-wrapper {
    display: flex; 
    justify-content: center;
    align-items: flex-start;
    width: 80%;
    margin-top: 8%;
}

.service-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 50%; 
}

.item.active{
    border-bottom: 2px solid var(--primary-color);
}

.service-list li {
    color: black;
}

.service-list li a:hover {
    color: var(--primary-color);
}

/* Style the anchor links inside the list items */
.service-list li a {
    color: black; 
    text-decoration: none;
    font-weight: bold;
}

.services-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-content {
    flex: 2;
}

.services-image-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-image-section img {
    max-width: 80%;
    height: auto;
    margin-top: -70%;
}

/* Line Element */
.services-line {
    background-color: var(--primary-color);
    height: 2px;
    flex-grow: 1;
    margin-right: 1em;
}

.services-line-container-title {
    display: flex;
    align-items: center;
    width: 92%;
    position: relative;
}

/* Line Element */
.services-line-title {
    background-color: var(--primary-color);
    height: 2px;
    flex-grow: 1;
    margin-right: 1em;
    width: 80%;
}

.service-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
    margin-top: 30%;
}

#service-title{
    width: 30%;
}

#service-description{
    width: 40%;
}

/* Hide all service containers by default */
.service-container {
    display: none;
}

/* Display the service container for the selected service */
#service1:target,
#service2:target,
#service3:target,
#service4:target,
#service5:target {
    display: flex;
}

.services-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    max-width: 2048px;
    margin: 0 auto;
    margin-bottom: 10%;
    flex-wrap: wrap;
    position: relative;
    flex: 1;
}

.main-services-div {
    min-height: 550px;
}

.service-footer {
    background-color: black;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    z-index: 1;
}

/* Media Queries */
@media (max-width: 1440px) {
    .main-content-team{
        top: -10%;
        margin-bottom: -10%;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .shop-button-container {
        flex-direction: column; /* Stack buttons vertically on small screens */
        gap: 10px; /* Adjust the gap for vertical stacking */
    }

    .shop-button-wrapper {
        flex: none; /* Remove flex-grow for stacked buttons */
        width: 100%; /* Make the buttons full width */
        text-align: center; /* Center the content */
    }
    /* Navbar Section */
    .navbar ul li a {
        font-size: 1.5vw;
    }

    /* Scroll Down Button */
    .scrollDownButton {
        bottom: -5%;
    }

    .about-text {
        max-width: 80%;
    }

    .main-content-team{
        top:-9%;
        margin-bottom: -10%;
    }


    .team-text-section h1{
        font-size: 3em;
    }

    .team-card-section-left {
        border-radius: 150px;
        width: 10vw;
        height: 10vw;
        margin-left: 15px;
    }

    .team-card-section-left img {
        object-fit: contain; /* Ensures the image covers the entire area */
        border-radius: 100px; /* Matches the border radius of the container */

    }

    .team-card-section-right{
        padding-left: 15px;
    }

    .team-card-section-right h2{
        color: #ff9900;
        font-size: 1.2em;
    }

    .team-card-section-right h3{
        font-size: 1em;
    }

    .team-card-section-right p{
        font-size: 0.8em;
        margin-top: 5%;
    }


    .team-image-section{
        width: 50%;
        float: right;
        position: relative;
    }

    .team-image-section img{
        width: 100%;
        z-index: 0;
        display: block;
    }


    /*Services queries*/

    .services-line-container-title {
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .service-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        width: 100%;
    }

    #service-description{
        width: 60%;
    }

    .service-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 55%; 
    }

}

@media (max-width: 768px) {

    /* Navbar Section */
    .navbar {
        flex-wrap: wrap;
    }

    .navbar .logo img {
        height: 50px;
    }

    .navbar ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        display: none;
        padding: 0;
        margin: 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .navbar ul li a {
        display: block;
        padding: 15px;
        font-size: 4vw;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #menu-toggle:checked + .hamburger + ul {
        display: flex;
    }

    .main-content {
        width: 80%;
    }

    /* Header Section */
    .text-section h1 {
        font-size: 6vw; 
    }
    
    .text-section h3::before {
        width: 80%; 
    }

    /* Scroll Down Button */
    .scrollDownButton {
        bottom: -20%;
    }


    .about-content {
        padding-top: 10%;
    }

    .about-text {
        max-width: 70%;
    }

    .logo-row img {
        width: auto;
        height: 80px;
        max-width: 220px;
    }

    .team-text-section{
        width: 100%;
        margin-top: 15%;
        margin-left: 5%;
        margin-right: 5%;
        z-index: 1;
    }

    .team-text-section h1{
        border-bottom: 2px solid var(--primary-color);
        width: fit-content;
        font-size: 4em;
        margin-bottom: 10%;
    }

    .team-card-section {
        display: flex;
        align-items: center;
        border: 1px solid lightgrey;
        width: 90%;
        margin-top: 5%;
        z-index: 1;
        background-color: rgba(0,0,0,0.4);
    }

    .team-card-section-left {
        align-items: center; /* Center the image vertically */
        border-radius: 100px;
        width: 10vw;
        height: 10vw;
        display: block;
        margin-left: 30px;
        z-index: 1;
    }

    .team-card-section-left img {
        object-fit: contain; /* Ensures the image covers the entire area */
        border-radius: 100px; /* Matches the border radius of the container */

    }

    .team-card-section-right{
        display: flex;
        flex-direction: column;
        padding-left: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
        width: 70%;
    }

    .team-card-section-right h2{
        color: #ff9900;
    }

    .team-card-section-right h3 {
        color: white;
    }

    .team-card-section-right p{
        margin-top: 5%;
        color: white;
    }


    .team-image-section{
        width: 100%;
        height: 100vh;
        position: absolute;
        z-index: 0;
    }

    .team-image-section img{
        width: 100%;
        height: 110vh;
        z-index: 0;
        display: block;
        object-fit: cover;
        position:fixed;
    }

    .main-content-team{
        top:-15%;
    }


    /*Services queries*/

    .service-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
        width: 100%;
    }

    #service-description{
        width: 100%;
    }

    .service-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%; 
    }

    .service-content{
        width: 100%;
    }

    .services-image-section img {
        max-width: 100%;
        height: auto;
        margin-top: 0%;
    }

    .services-content {
        width: 80%;
    }
}

@media (max-width: 711px) {
    .text-section h1 {
        border-bottom: 2px solid var(--primary-color);
        margin-bottom: 3%;
    }
}

@media (max-width: 480px) {
    .shop-button-wrapper {
        flex: none; /* Remove flex-grow for stacked buttons */
        width: 100%; /* Make the buttons full width */
        text-align: center; /* Center the content */
        padding: 2px;
        font-size: 0.8em;
    }

    .main-content {
        flex-direction: column; 
        padding: 10px;
    }
    
    .text-section h1 {
        font-size: 8vw; 
    }

    .text-section h3::before {
        width: 60%; 
    }

    .about-content {
        padding-top: 30%;
    }

    .about-text {
        max-width: 90%;
    }

    .inner-about {
        margin-top: 50%;
        width: 90%;
    }

    .logo-row {
        flex-direction: column;
        text-align: center;
    }

    .logo-row img {
        width: auto;
        height: 100px;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .shop-art {
        top:50%;
        width: 50%; 
    }

    .shop-button {
        bottom: 12%;
        padding: 5px 10px; 
    }

    .contacts-message {
        width: 70%;
    }
    
    .contacts-form {
        width: 70%;
    }

    .contacts-background {
        width: 70%;
        height: 70%;
        left: 15%;
    }


    .team-text-section{
        width: 100%;
        margin-top: 30%;
        margin-left: 5%;
        margin-right: 5%;
        z-index: 1;
    }

    .team-text-section h1{
        border-bottom: 2x solid var(--primary-color);
        width: fit-content;
        font-size: 3em;
        margin-bottom: 10%;
    }

    .team-card-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid lightgrey;
        width: 90%;
        margin-top: 5%;
        z-index: 1;
        background-color: rgba(0,0,0,0.4);
    }

    .team-card-section-left {
        background-color: #ff9900;
        align-items: center; /* Center the image vertically */
        border-radius: 100px;
        width: 30vw;
        height: 30vw;
        display: block;
        margin-left: 15px;
        z-index: 1;
        margin-top: 10px;
    }

    .team-card-section-left img {
        object-fit: contain; /* Ensures the image covers the entire area */
        border-radius: 100px; /* Matches the border radius of the container */

    }

    .team-card-section-right{
        display: flex;
        flex-direction: column;
        padding-left: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
        width: 70%;
    }

    .team-card-section-right h2{
        color: #ff9900;
    }

    .team-card-section-right h3 {
        color: white;
    }

    .team-card-section-right p{
        margin-top: 5%;
        color: white;
    }


    .team-image-section img{
        width: 100%;
        height: 110vh;
        z-index: 0;
        display: block;
        object-fit: cover;
        position: fixed;
    }

    .footer-logo {
        height: 3.5vh;
        width: auto;
        filter: invert(1);
    }

    /*Services queries*/

    .service-title {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
        width: 100%;
    }

    .service-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        width: 100%; 
    }

    .service-content{
        width: 100%;
    }

    .services-image-section img {
        max-width: 100%;
        height: auto;
        margin-top: 0%;
    }
    .services-image-section{
        width: 100%;
    }

    .main-services-div {
        width: 65%;
    }

    .service-list li a {
        font-size: 0.65rem;
    }

    .service-list {
        gap: 10px;
    }

    #service-title{
        width: 65%;
    }

    .service-container {
        flex-direction: column; 
    }
}
