body {
    font-family: 'Unageo', sans-serif;
    color: #302D2B;
    background-color: #DFDDDC;
    scroll-behavior: smooth;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.nav {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.4s ease-in-out, opacity 0.4s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
    opacity: 1;
    z-index: 1000;
}

.nav .container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    margin-left: 90px;
    margin-right: 90px;
    transition: all 0.4s ease-in-out;
}

.nav ul {
    display: flex;
    list-style-type: none;
    align-items: center;
    justify-content: center;

}

.nav a {
    color: #DFDDDC;
    text-decoration: none;
    padding: 4px 12px;
    transition: all 0.4s ease-in-out;
}

.nav-logo {
    position: relative;
    display: inline-block;
    width: auto;
    height: 25px;
    min-width: 100px;
}

.nav-logo img {
    height: 25px;
    width: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease-in-out;
}

.nav-logo .logo-light {
    opacity: 1;
}

.nav-logo .logo-dark {
    opacity: 0;
}

.nav.active .nav-logo .logo-light {
    opacity: 0;
}

.nav.active .nav-logo .logo-dark {
    opacity: 1;
}

.nav.active {
    position: fixed;
    background-color: #dfdddcca;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.nav.active .container-nav {
    padding: 5px 0;
    margin-left: 60px;
    margin-right: 60px;
}

.nav.active a {
    color: #302D2B;
    transition: all 0.4s ease-in-out;
}

.nav ul a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.nav.active ul a:hover {
    background-color: rgba(0, 0, 0, 0.10);
    border-radius: 10px;
}

.hero {
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 100vh;
    color: #DFDDDC;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 25vh;
    text-align: left;
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
    overflow: hidden;
}

.hero-button {
    display: inline-block;
    background-color: #D69228;
    font-size: 0.8rem;
    color: #DFDDDC;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 30px;
    text-decoration: none;
    transition: all 0.6s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.hero-button:hover {
    background-color: #DFDDDC;
    color: #302D2B;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}

#hero-light {
    height: 50px;
    width: auto;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 46px;
    margin: -20px 0 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 20px;
    
}

#hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    visibility: hidden;
}

.content h2, 
.content h3 {
    font-size: 150%;
    margin: 20px 0;
}

.content p {
    color: #302D2B;
    line-height: 30px;
    letter-spacing: 1.22;
}

/* Who Section Styles */
#who-sect {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
    padding-bottom: 80px;
    height: auto;
    
    
}

#who {
    flex: 1;
    padding-left: 10px;
    padding-right: 10px;
}

#who h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #302D2B;
    font-weight: 600;
}

#who p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

#who-img {
    flex: 1;
    min-height: 300px;
    width: auto;
    background-image: url('media/WhoImg.jpeg');
    background-color: #e9ecef;
    border-radius: 0px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Benefits Carousel Styles */
#benefits-sect {
    padding: 30px 0;
    text-align: center;
    background-color: #302D2B;
    background-image: url('media/carousel-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    width: 100%;
}

#benefits-sect h2 {
    font-size: 2.5rem;
    color: #DFDDDC;
    font-weight: 600;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
    perspective: 1000px;
    touch-action: pan-y;
}

/* Show grab cursor only on touch devices */
@media (pointer: coarse) {
    .carousel-wrapper {
        cursor: grab;
    }
    
    .carousel-wrapper:active {
        cursor: grabbing;
    }
}

.carousel-item {
    position: absolute;
    width: 300px;
    height: 350px;
    background: #DFDDDC;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    opacity: 0.6;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

.carousel-item.prev {
    transform: translateX(-320px) scale(0.8);
    z-index: 2;
}

.carousel-item.next {
    transform: translateX(320px) scale(0.8);
    z-index: 2;
}

.carousel-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.carousel-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.carousel-content h3 {
    font-size: 1.5rem;
    color: #302D2B;
    margin-bottom: 15px;
    font-weight: 600;
}

.carousel-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding-bottom: 10px;
}

.carousel-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #aaa;
    transform: scale(1.1);
}

.dot.active {
    background: #D69228;
    transform: scale(1.3);
}

/* Contact Section Styles */
#contact-sect {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 25px;
    background-color: #DFDDDC;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.container-form {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

#contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


#contact-sect h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #302D2B;
    font-weight: 600;
}

#contact-sect p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}


.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #302D2B;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #ddd;
    border-radius: 0px;
    font-size: 0.95rem;
    font-family: 'Unageo', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D69228;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-button {
    display: inline-block;
    background-color: #D69228;
    font-size: 1rem;
    color: #DFDDDC;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: 'Unageo', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-button:hover {
    background-color: #302D2B;
    color: #DFDDDC;
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: #000;
    padding: 30px 0;
    color: #DFDDDC;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #DFDDDC;
}

/* Media Queries for Responsive Design */

/* Large tablets and small desktops */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero .container {
        padding: 0 40px;
    }
    
    .nav .container-nav {
        margin-left: 60px;
        margin-right: 60px;
    }
    
    .nav.active .container-nav {
        margin-left: 40px;
        margin-right: 40px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
        margin: -15px 0 18px;
    }
    
    .hero p {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    
    .hero .container {
        padding: 0 30px;
    }
    
    #hero-light {
        height: 40px;
        margin-bottom: 30px;
    }
    
    .nav .container-nav {
        margin-left: 40px;
        margin-right: 40px;
    }
    
    .nav.active .container-nav {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .nav.active {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    #who-sect {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px 80px 30px;
    }
    
    #who h2 {
        font-size: 2rem;
    }
    
    #who-img {
        min-height: 300px;
        width: 100%;
    }
    
    /* Carousel responsive styles */
    .carousel-item {
        width: 280px;
        height: 320px;
        padding: 25px 15px;
    }
    
    .carousel-item.prev,
    .carousel-item.next {
        transform: translateX(-300px) scale(0.75);
    }
    
    .carousel-item.next {
        transform: translateX(300px) scale(0.75);
    }
    
    #benefits-sect h2 {
        font-size: 2rem;
    }
    
    /* Contact form responsive */
    #contact-sect {
        flex-direction: column;
        padding: 60px 30px;
        gap: 30px;
    }
    
    #contact-sect h2 {
        font-size: 2rem;
    }
    
    .container-form {
        max-width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        font-size: 1.1rem;
        padding: 14px 18px;
    }
}

/* Mobile devices */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
        margin: -10px 0 15px;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 14px;
        letter-spacing: 0.3px;
        line-height: 1.3;
    }
    
    .hero .container {
        padding: 0 20px;
    }
    
    #hero-light {
        height: 35px;
        margin-bottom: 25px;
    }
    
    .nav .container-nav {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .nav.active .container-nav {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .nav.active {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    #who-sect {
        padding: 20px 20px 60px 20px;
        gap: 20px;
    }
    
    #who h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    #who p {
        font-size: 1rem;
    }
    
    #who-img {
        min-height: 250px;
    }
    
    /* Mobile carousel styles */
    .carousel-wrapper {
        height: 350px;
    }
    
    .carousel-item {
        width: 250px;
        height: 300px;
        padding: 20px 15px;
    }
    
    .carousel-item.prev,
    .carousel-item.next {
        opacity: 0.3;
        transform: translateX(-260px) scale(0.7);
    }
    
    .carousel-item.next {
        transform: translateX(260px) scale(0.7);
    }
    
    .carousel-content h3 {
        font-size: 1.3rem;
    }
    
    .carousel-content p {
        font-size: 0.9rem;
    }
    
    #benefits-sect {
        padding-top: 40px;
        padding-bottom: 25px;
    }
    
    #benefits-sect h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    /* Contact form mobile styles */
    #contact-sect {
        flex-direction: column;
        padding: 30px 15px;
        gap: 0px;
    }
    
    #contact-sect h2 {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    /* Footer responsive styles */
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 30px;
    }
    
    .footer-logo img {
        height: 25px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 360px) {
    .hero h1 {
        font-size: 24px;
        margin: -8px 0 12px;
    }
    
    .hero p {
        font-size: 13px;
        letter-spacing: 0.2px;
    }
    
    .hero .container {
        padding: 0 15px;
    }
    
    #hero-light {
        height: 30px;
        margin-bottom: 20px;
    }
    
    .nav .container-nav {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .nav.active .container-nav {
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .nav.active {
        margin-left: 5px;
        margin-right: 5px;
    }
    
    /* Ensure carousel fits on very small screens */
    .carousel-item {
        width: 220px;
        height: 280px;
        padding: 15px 10px;
    }
    
    .carousel-item.prev,
    .carousel-item.next {
        transform: translateX(-230px) scale(0.6);
    }
    
    .carousel-item.next {
        transform: translateX(230px) scale(0.6);
    }
    
    /* Ensure contact section has proper padding */
    #contact-sect {
        padding: 40px 10px;
    }
    
    /* Ensure Who section has proper padding */
    #who-sect {
        padding: 20px 15px 60px 15px;
    }
}