* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    flex: 1; /* Balances both sides */
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left a, .nav-right a {
    text-decoration: none;
    color: black;
    margin: 0 15px;
    font-size: 16px;
}

.nav-left a:hover, .nav-right a:hover {
    text-decoration: underline;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    flex: 0; /* Prevents extra space usage */
}

.logo img {
    height: 24px;
}

.quote-btn {
    background-color: black;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.quote-btn:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 85vh;
    padding: 50px;
    max-height: 85vh; /* Ensures it doesn't go beyond the screen */
}

.hero h1 {
    font-size: 6vw;
    font-weight: 400;
    max-width: 65vw;
    color: black;
}

.hero h1 span {
    font-weight: 700;
    color: #ff5678; /* Pink highlight */
}

.hero-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    font-size: 1vw;
    color: black;
}

.hero-footer .scroll-text {
    color: gray;
}

/* Logo Section */
.logo-section {
    background-color: #1f1f1f;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    justify-content: space-around;
    width: 80%;
    max-width: 1200px;
}

.logo-container img {
    height: 50px;
    filter: brightness(0.7); /* Makes logos match the style */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-left {
        display: none;
    }
    .right-image {
        display: none;
    }
    #placeholder {
        display: none;
    }
    .contact-button {
        font-size: 2rem!important;
    }
    .hero {
        padding: 30px;
    }
    .hero h1 {
        font-size: 8vw;
    }
    .hero-footer {
        font-size: 3vw;
    }
    .logo-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .logo-container img {
        height: 40px;
    }
}

/* Section Styling */
.things-we-do {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.left-content {
    width: 50%;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 400;
}

.section-title img {
    width: 30px!important;
    margin-right: 10px;
    margin-bottom: 0px!important;
}

.services-list {
    margin-top: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 15px 0;
    border-bottom: 2px solid black;
    color: black;
    transition: color 0.3s ease;
    cursor: pointer;
}

.description {
    margin-top: 20px;
    font-size: 1rem;
    color: black;
    max-width: 600px;
}

/* Right side image */
.right-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.right-image img {
    width: 80%;
    max-width: 400px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .things-we-do {
        flex-direction: column;
        text-align: center;
    }

    .left-content, .right-image {
        width: 100%;
    }

    .service-item {
        font-size: 1.2rem;
    }

    .right-image img {
        width: 100%;
        max-width: 300px;
    }
}
/* Quote Section */
.quote-section {
    background-color: #1f1f1f;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.quote-icon {
    font-size: 3rem;
    color: #ff5678;
    font-weight: bold;
}

.quote-text {
    font-size: 2rem;
    font-weight: 400;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.4;
}

.quote-text strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
        max-width: 90%;
    }
}
/* Testimonial Section */
.testimonial-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 75%;
}

.testimonial-left img {
    width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 24px;
    margin-right: 10px;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    max-width: 700px;
}

.testimonial-author {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
}

.testimonial-role {
    color: #ff5678;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
}

/* Navigation Arrows */
.testimonial-nav {
    position: absolute;
    right: 50px;
    bottom: 40px;
    display: flex;
    align-items: center;
}

.arrow {
    font-size: 2rem;
    cursor: pointer;
    margin: 0 10px;
    transition: opacity 0.3s ease;
}

.arrow {
    color: black;
}

.arrow:hover {
    color: #ff5678;
}

.testicontent {
    display: flex;
    margin-top: 85px;
    align-items: center;
}
.testiText {
    margin-left: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-left {
        width: 100%;
        align-items: center;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .testimonial-left img {
        width: 120px;
    }

    .testimonial-nav {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }
}

/* Contact Section */
.contact-section {
    background-color: #1f1f1f;
    color: white;
    padding: 80px 50px;
    position: relative;
    text-align: left;
    overflow: hidden;
}

/* .contact-content {
    max-width: 600px;
}
 */
.contact-content h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
}

.contact-content h1 strong {
    font-weight: 700;
}

.contact-divider {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background-color: white;
    margin: 30px 0;
}

.social {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.social img {
    width: 30px;
    margin-right: 10px;
}

/* Floating @styled. image */
.floating-at {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px; /* Adjust based on your image size */
}

/* Button */
.contact-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    border: 2px solid white;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background: white;
    color: black;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        text-align: center;
        padding: 60px 30px;
    }

    .floating-at {
        top: 5%;
        right: 5%;
        width: 90px; /* Smaller size for mobile */
    }

    .contact-content h1 {
        font-size: 2rem;
    }

    .social {
        justify-content: center;
    }

    .contact-divider {
        max-width: 100%;
    }
}
/* Large Get in Touch Button */
.contact-button {
    display: flex;
    justify-content: center;
    padding: 25px 80px;
    font-size: 5rem;
    font-weight: 400;
    color: white;
    width: 90vw;
    border: 2px solid white;
    border-radius: 300px; /* Large rounded corners */
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
    background: white;
    color: black;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    background: none;
    border: 2px solid #000;
    padding: 4px 8px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lang-btn:hover {
    background: #000;
    color: #fff;
}

.lang-btn.active {
    background: #000;
    color: #fff;
}

.portal-link {
    margin-top: 1rem;
    background: none;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    width: 100%;
}
