* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.main {
    font-family: 'Montserrat', sans-serif;
    max-width: 95%;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.login {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    margin-top: -10px;
    width: 150px;
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0d9488;
}

.contact-btn {
    background: #2c7a7b;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.contact-btn i {
    font-size: 18px;
}

.contact-btn:hover {
    background: #235e5f;
}

.hero {
    position: relative;
    height: calc(100vh - 90px);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/heroIndex.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

.win{
  font-weight: 600;  
  text-decoration: underline;
}

.hero p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.learn-more-btn {
    background: #0d9488;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.learn-more-btn-dark {
    background: #2c7a7b;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.learn-more-btn:hover {
    background: #0a7269;
    transform: translateY(-2px);
}

.learn-more-btn-dark:hover {
    background: #235e5f;
}

.separator {
    width: 80%;
    height: 1px;
    background-color: #8d8d8d;
    margin-bottom: 30px;
    margin: 0 auto;
}

/* OUR VISION SECTION */
.our-vision {
    position: relative;
    padding: 100px 60px;
    background-color: white;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-vision-content {
    max-width: 1200px;
    margin: 0 auto;
}

.our-vision-content > p {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a1a1a1;
    margin-bottom: 40px;
}

.our-vision-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: black;
    line-height: 1.4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
}

/* Who we are */

.who-we-are{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    color: black;
}

.who-we-are-content{
    max-width: 80%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.who-we-are-content > div {
    flex: 1;
    text-align: left;
}

.who-we-are-content .header {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a1a1a1;
    margin-bottom: 20px;
}

.who-we-are-content h2 {
    font-family: 'Montserrat', sans-serif;
}


.who-we-are-content .main {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

.who-we-are-content h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: black;
}

.who-we-are-content img {
    flex: 1;
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* PROJECT */

.project{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: black;
}

.project-content{
    max-width: 80%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.project-content > div {
    flex: 1;
    text-align: right;
}

.project-content .header {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a1a1a1;
    margin-bottom: 20px;
}

.project-content h2 {
    font-family: 'Montserrat', sans-serif;
}


.project-content .main {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

.project-content h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    color: black;
}

.project-content img {
    flex: 1;
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* BIG RETAILERS SECTION */
.big-retailers {
    position: relative;
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
}

.big-retailers-content {
    max-width: 100%;
}

.big-retailers-content .retailers-section-label {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a1a1a1;
    margin-bottom: 50px;
    text-align: center;
}

.retailers-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.retailers-track {
    display: flex;
    gap: 80px;
    align-items: center;
    width: fit-content;
}

.retailer-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.retailer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.retailer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.35);
}

/* OUR PROMISE SECTION */
.our-promis {
    position: relative;
    padding: 100px 60px;
    background-color: white;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-promis-content {
    max-width: 1200px;
    margin: 0 auto;
}

.our-promis-content > p {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #a1a1a1;
    margin-bottom: 40px;
}

.our-promis-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 500;
    color: black;
    line-height: 1.4;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
}


/* HOW WE WORK SECTION */

.how-we-work {
    position: relative;
    padding: 100px 60px;
    background-color: white;
    text-align: center;
}

.how-we-work-content {
    max-width: 1200px;
    margin: 0 auto;
}

.how-we-work-content .section-label {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #a1a1a1;
    margin-bottom: 20px;
}

.how-we-work-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 80px;
    color: black;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 60px;
    margin-top: 60px;
}

.feature-item {
    align-items: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #235e5f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: black;
    margin-bottom: 15px;
}

.feature-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #666;
    max-width: 350px;
    margin: 0 auto;
}

/* CONTACT SECTION */

.contact{
    position: relative;
    max-width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: black;
    margin: 0 auto;
}

.contact-container {
    background: white;
    padding: 80px 60px;
    border-radius: 4px;
    border: #d4d4d4 solid 1px;
    max-width: 700px;
    width: 100%;
}


.contact-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c7a7b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: #2c7a7b;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: #235e5f;
}

/* FOOTER SECTION */

.footer {
    background-color: white;
    margin-top: 80px;
    border-top: solid black 1px;
    max-width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 80%;
    margin: 0 auto;
    padding: 60px 60px 30px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-columns {
    display: flex;
    gap: 100px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #2c7a7b;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c7a7b;
    color: white;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #235e5f;
}

.social-icons i {
    font-size: 16px;
}

.footer-separator {
    height: 1px;
    background-color: #acacac;
    max-width: 100%;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .contact-section {
        padding: 60px 30px;
    }

    .contact-container {
        padding: 50px 30px;
    }

    .contact-container h2 {
        font-size: 32px;
    }

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-columns {
        gap: 50px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .contact-container {
        padding: 40px 20px;
    }

    .contact-container h2 {
        font-size: 28px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .how-we-work {
        padding: 60px 30px;
    }

    .how-we-work-content h2 {
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}