* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: white;
}

.carousel-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.carousel {
    width: 100%;
    max-width: 1200px;
    height: 91vh;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: darkgray;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.message-div {
    position: fixed;
    bottom: 80px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 20;
    color: #e7e7e7;
}

.message-div.show {
    background-color: rgb(0, 26, 0);
    opacity: 0.95;
    max-height: 400px;
    padding: 40px 30px 10px 30px;
}

.item {
  font-size: 1rem;
  padding-top: 5px;
  padding-left: 20px;
  line-height: 1.5;
}

a {
  color: white;
  text-decoration-line: underline;
}

a:hover{
  color: lightgray;
}

.language-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.msg-btn {
    background-color: rgb(0, 26, 0);
    color: white;
    text-decoration: underline;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor:pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.msg-btn:hover {
    background-color: rgb(0, 128, 0);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#leftMessageText {
    width: 100%;
    position: relative;
}

.bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: black;
    backdrop-filter: blur(10px);
}

.title-text {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    text-align: center;
}

.bottom-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    overflow: hidden;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-btn img {
    height: 74%;
    object-fit: cover;
}

.bottom-btn:hover {
    transform: scale(1.1);
}

.bullet-point {
    display: flex;
    font-size: 1rem;
    padding-top: 5px;
    padding-left: 20px;
    line-height: 1.5;
}

.leaf-icon {
    height: 1.25rem;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}

.quote {
  font-size: 1rem;
  line-height: 1.5;
  font-style: italic;
  padding-top: 15px;
  padding-bottom: 5px;
}

.first-name {
    font-size: 1.3rem;
}

.prof-title {
  line-height: 1;
  font-size: 1rem;
  padding-top: 10px;
  padding-bottom: 10px;
}

.company-name {
    /* padding-left: 40px; */
    font-size: 1.2rem;
}

.line {
    padding-left: 10px;
}

#righMessageDiv {
    padding-bottom: 10px;
}

.article {
    padding-bottom: 20px;
    padding-left: 40px;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .carousel {
        height: 55vh;
        width: 95%;
    }

    .carousel-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .title-text {
        font-size: 1.5rem;
    }

    .bottom-section {
        padding: 15px 20px;
    }

    .bottom-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

    .message-div {
        bottom: 90px;
    }

    .message-div p {
        font-size: 1.2rem
    }
}

@media (max-width: 480px) {
    body {
        overflow: hidden;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .carousel {
        height: 45vh;
        width: 98%;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 16px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .title-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .bottom-section {
        /* padding: 12px 15px; */
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 30;
    }

    .bottom-btn {
        padding: 8px 12px;
        font-size: 16px;
    }

    .message-div {
        position: fixed;
        left: 0;
        right: 0;
        width: 100vw;
        /* bottom: 60px;  */
        margin: 0;
        z-index: 40;
    }

    .message-div p {
        font-size: 1rem
    }

    .message-div.show {
        max-height: 500px;
        /* height:500px; */
        justify-content: center;
    }

    .article {
        padding: 2px;
    }
    
    .quote {
        padding-bottom: 10px;
    }
}
