/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    background-color: #f5f5f5;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0 5vw;
}

/* Navigation Bar */
.navbar {
    background-color: #FFFFFF;
    width: 100vw;
    height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.2s ease;
    transform: translateY(-100%);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.company-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #000000;
    text-align: left;
}

/* Menu Items */
.menu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-item {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1%;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.menu-item:hover,
.menu-item.active {
    color: #0066FF;
}

/* Call Section */
.call-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.call-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.call-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #000000;
}

.phone-number {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 0.2;
    letter-spacing: 1%;
    color: #000000;
}

.email-address {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1%;
    color: #000000;
    word-wrap: break-word;
    word-break: break-all;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    margin-top: 70px;
    background: #142257;
    overflow: hidden;
}

.hero-container {
    padding-top: 5vh;
}

/* Hero Carousel */
.hero-carousel {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-glide {
    width: 100%;
    height: 100%;
}

.hero-glide .glide__slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-glide .glide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    min-width: 80%;
    max-height: 70vh;
    border-radius: 32px;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Tagline */
.tagline {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tag-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #FFFFFF;
}

.tag-separator {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #9EA3B5;
}

/* Hero Title */
.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.1875;
    color: #FFFFFF;
    max-width: 673px;
    text-align: center;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 41px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #FFFFFF;
}

/* Highlights Section */
.highlights {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    z-index: 10;
    width: 930px;
    height: 38px;
}

.highlight-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    height: 100%;
    flex: 1;
    position: relative;
}

.highlight-item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            rgba(79, 102, 183, 0) 0%,
            rgba(79, 102, 183, 1) 47.92%,
            rgba(79, 102, 183, 0) 100%);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: #1F3584;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.highlight-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.highlight-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.333;
    color: #FFFFFF;
    text-align: left;
}

.svg-container {
    position: absolute;
    bottom: 0;
    height: 45px;
    width: 242px;
    z-index: 10;
}

.svg-container-2 {
    position: absolute;
    bottom: 0;
    height: 45px;
    width: 242px;
    z-index: 10;
    right: 0;
}

/* About Us Section */
.about-us {
    padding: 120px 0;
    background: #f5f5f5;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.about-content {
    display: flex;
    gap: 47px;
    align-items: flex-start;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

.about-text {
    flex: 1;
    padding-top: 10px;
}

.section-label {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.36;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #00113A;
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.36;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.about-description {
    font-family: 'Nunito', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.36;
    letter-spacing: 1%;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.about-highlight {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1%;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.about-button {
    margin-top: 20px;
}

.btn-primary {
    background: #00113A;
    color: #FFFFFF;
    border: none;
    border-radius: 15px;
    padding: 20px 30px;
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1%;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #002266;
}

.trust-tag {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.trust-tag img {
    width: 57px;
    height: 61px;
}

.trust-tag span {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 1%;
    color: #1E1E1E;
    text-align: center;
}

.trust-tag.trusted-partners {
    position: absolute;
    left: 30vw;
    top: 65vh;
    transform: translateY(-50%);
}

.trust-tag.satisfaction {
    position: absolute;
    left: 12vw;
    top: 15vh;
    padding: 6px 12px;
}

.trust-tag.satisfaction .percentage {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: #1E1E1E;
}

.trust-tag.satisfaction .label {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1%;
    color: #1E1E1E;
}

/* Our Services Section */
.our-services {
    background: #142257;
    padding: 0;
    position: relative;
    width: 100%;
    height: 719px;
}

.services-container {
    width: 1538px;
    height: 719px;
    margin: 0 auto;
    position: relative;
    padding: 46px 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-items: center;
    margin-bottom: 96px;
}

.services-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.6em;
    color: #FFFFFF;
    margin: 0;
    width: 597px;
    text-align: left;
}

.services-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5555555555555556em;
    color: #FFFFFF;
    width: 617px;
    margin: 0;
    text-align: left;
}

.services-line {
    position: absolute;
    left: 175.99px;
    top: 205.5px;
    height: 1px;
}

.services-line svg {
    width: 100%;
    height: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10vh;
    margin: 0;
}

.service-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    width: 628px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3333333333333333em;
    color: #FFFFFF;
    margin: 0;
}

.service-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5555555555555556em;
    color: #9EA3B5;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #FBEAAF;
    padding: 5vh 0;
    position: relative;
}

.why-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.why-content {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
}

.why-image {}

.why-image img {
    max-width: 100%;
    height: 100%;
}

.why-text {
    padding-left: 5vw;
    width: 65%;
}

.why-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.23;
    color: #142257;
    margin-bottom: 60px;
}

.why-features {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.why-feature-group {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.why-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 20vw;
    min-width: 20vw;
}

.why-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
}

.why-feature-content h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.556;
    color: #404041;
    margin-bottom: 10px;
}

.why-feature-content p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.75;
    color: #404041;
}

.why-note {
    background: #142257;
    border-radius: 24px;
    padding: 12px 32px;
    margin-top: 60px;
    max-width: 450px;
}

.why-note p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.556;
    color: #FFFFFF;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #f5f5f5;
}

.products-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.36;
    text-transform: capitalize;
    color: #142257;
    text-align: center;
    margin-bottom: 80px;
}

.products-carousel {
    margin-bottom: 40px;
}

.productsSwiper {
    overflow: visible;
}

.product-card {
    background: #FBEAAF;
    border-radius: 8px;
    box-shadow: 0 13px 20px rgba(0, 0, 0, 0.25);
    width: 306px;
    height: 450px;
    overflow: visible;
    position: relative;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.product-image {
    padding: 2vw;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    z-index: 10;
}

.product-content {
    background: #FFFFFF;
    border-radius: 21px 21px 8px 8px;
    text-wrap: nowrap;
    width: 100%;
    position: absolute;
    bottom: 0;
    width: 306px;
}

.product-content h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.36;
    text-transform: capitalize;
    color: #142257;
    text-align: center;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.product-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-button-container-inner {
    background: #21408E;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.36;
    text-transform: capitalize;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: -25px;
}

.product-button-container img {
    width: 24px;
    height: 24px;
}

.product-btn {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    background: transparent;
    border: none;
    color: #FFFFFF;
}

.product-btn a {
    text-decoration: none;
    color: #FFFFFF;
}

/* Business Partners Section */
.business-partners {
    padding: 80px 0;
    background: #f5f5f5;
}

.partners-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.36;
    text-transform: capitalize;
    color: #142257;
    text-align: center;
    margin-bottom: 80px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo img {
    max-width: 200px;
    max-height: 80px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f5f5f5;
}

.testimonials-title {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: #1E1E1E;
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #E8E5C3;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    background: #FBEAAF;
    padding: 40px;
    flex: 1;
}

.testimonial-content h3 {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 24px;
}

.testimonial-content p {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
}

.testimonial-author {
    background: #00113A;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-text h4 {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #F3DFD8;
    margin-bottom: 2px;
}

.author-text p {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #81807E;
}

.testimonial-btn {
    background: #FFFFFF;
    border: 1px solid #333333;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-btn:hover {
    background: #f0f0f0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #f5f5f5;
}

.cta-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 1.1875;
    color: #00113A;
    margin-bottom: 24px;
    max-width: 662px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-icon {
    width: 24px;
    height: 24px;
}

.cta-feature span {
    font-family: 'Be Vietnam', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #15B2F5;
}

.cta-button {
    background: #15B2F5;
    border: none;
    border-radius: 60px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.333;
    color: #00113A;
    padding: 8px 16px;
}

.cta-phone-icon {
    background: #FFFFFF;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cta-image {
    flex: 0 0 410px;
}

.cta-image img {
    width: 100%;
    height: 453px;
    object-fit: cover;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: rgba(247, 217, 112, 0.56);
    padding: 50px 0 0;
    position: relative;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    flex: 1;
    max-width: 460px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-company-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 1%;
    text-transform: uppercase;
    color: #000000;
}

.footer-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.556;
    color: #002263;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.social-link {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background: #f0f0f0;
}

.footer-right {
    flex: 0 0 300px;
}

.footer-menu {
    display: flex;
    gap: 60px;
    cursor: pointer;
}

.footer-menu-group h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.333;
    color: #002263;
    margin-bottom: 24px;
}

.footer-menu-group ul {
    list-style: none;
}

.footer-menu-group li {
    margin-bottom: 12px;
}

.footer-menu-group a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #002263;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-group a:hover {
    color: #0066FF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 32px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.556;
    color: #002263;
}

/* Responsive Design */

/* Large Desktops (1400px+) */
@media (min-width: 1400px) {
    .services-container {
        width: 1538px;
        padding: 46px 0;
    }

    .services-header {
        padding: 0 185px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 628px);
        gap: 196px 31px;
        padding: 0 176px;
    }
}

/* Standard Desktops (1200px - 1399px) */
@media (max-width: 1399px) {
    .services-container {
        width: 100%;
        max-width: 1200px;
        padding: 60px 40px;
    }

    .services-header {
        padding: 0 20px;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8vh 4vw;
        padding: 0 20px;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 20px;
    }

    .menu-items {
        gap: 20px;
    }

    .menu-item {
        font-size: 18px;
    }

    .hero {
        height: calc(100vh - 70px);
    }

    .hero-title {
        font-size: 48px;
        max-width: 500px;
    }

    .highlights {
        width: 90%;
        max-width: 800px;
    }

    .highlight-text {
        font-size: 16px;
    }

    .about-content {
        gap: 30px;
    }

    .about-image img {
        height: auto;
        width: auto;
        max-width: 100%;
    }

    .why-content {
        gap: 40px;
    }

    /* .why-image {
        flex: 0 0 35%;
    } */

    .why-image img {
        height: 400px;
    }

    .why-title {
        font-size: 40px;
    }

    .cta-title {
        font-size: 48px;
    }

    .cta-image {
        flex: 0 0 45%;
    }

    .cta-image img {
        height: 350px;
    }

    .products-carousel .glide__slide {
        margin-right: 20px;
    }
}

/* Laptops and Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        padding: 0 4vw;
    }

    .hero-title {
        font-size: 44px;
        max-width: 450px;
    }

    .services-container {
        padding: 50px 30px;
    }


    .why-features {
        gap: 30px;
    }

    .why-feature {
        max-width: 18vw;
        min-width: 18vw;
    }
}

@media (max-width: 1340px) {
    .highlights {
        height: auto;
        gap: 20px;
        padding: 20px;
        bottom: 50px;
        width: 95%;
    }

}


@media (max-width: 992px) {
    .navbar {
        height: 100px;
    }

    .navbar-container {
        flex-wrap: wrap;
        height: auto;
        min-height: 70px;
        padding: 10px 20px;
    }

    .menu-items {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

    .menu-item {
        font-size: 16px;
    }

    .call-section {
        margin-left: auto;
    }

    .hero {
        height: calc(100vh - 70px);
    }

    .hero-title {
        font-size: 40px;
        max-width: 400px;
    }

    .tagline {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tag-item {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .highlight-item {
        flex-direction: column;
        min-width: 150px;
        padding: 20px;
        text-align: center;
        flex: 1 1 calc(50% - 10px);
    }

    .highlight-item:not(:first-child)::before {
        display: none;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        width: 100%;
        max-width: 500px;
    }

    .about-text {
        text-align: center;
        padding-top: 0;
    }

    .our-services {
        height: fit-content;
    }

    .services-container {
        padding: 40px 20px;
        height: auto;
    }

    .services-header {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .services-title {
        width: 100%;
        text-align: center;
        font-size: 36px;
    }

    .services-subtitle {
        width: 100%;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .services-line {
        position: relative;
        left: 0;
        top: 30px;
        width: 80%;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-text {
        width: 100%;
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .why-image {
        width: 100%;
        max-width: 400px;
    }

    .why-features {
        flex-direction: column;
        gap: 30px;
    }

    .why-feature-group {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .why-feature {
        max-width: 300px;
        min-width: 300px;
    }

    .products-carousel .glide__slide {
        margin-right: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-menu {
        justify-content: center;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 768px) {
    .navbar {
        height: auto;
    }

    .navbar-container {
        padding: 15px;
        gap: 15px;
    }

    .logo-section {
        align-self: flex-start;
    }

    .menu-items {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 0;
    }

    .menu-item {
        font-size: 14px;
        padding: 5px 10px;
    }

    .call-section {
        align-self: flex-end;
        margin-left: 0;
    }

    .call-icon {
        width: 50px;
        height: 53px;
        border-width: 5px;
        padding: 10px;
    }

    .call-icon img {
        width: 30px;
        height: 30px;
    }

    .call-text {
        font-size: 14px;
    }

    .phone-number {
        font-size: 16px;
    }

    .hero {
        height: calc(100vh - 70px);
    }

    .hero-title {
        font-size: 32px;
        max-width: 300px;
    }

    .hero-content {
        top: 30%;
    }

    .tag-item {
        font-size: 16px;
    }

    .feature-text {
        font-size: 18px;
    }

    .highlights {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }

    .highlight-item {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        gap: 12px;
        padding: 15px;
    }

    .svg-container {
        display: none;
    }

    .svg-container-2 {
        display: none;
    }

    .about-us {
        padding: 80px 0;
    }

    .section-label {
        font-size: 24px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-description,
    .about-highlight {
        font-size: 18px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-container {
        padding: 40px 15px;
    }

    .why-title {
        font-size: 36px;
    }

    .why-feature {
        max-width: 250px;
        min-width: 250px;
    }

    .products-title,
    .partners-title {
        font-size: 36px;
    }

    .testimonials-title {
        font-size: 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cta-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

/* Mobile Landscape (480px - 767px) */
@media (max-width: 767px) {
    .call-icon {
        display: none;
    }

    .call-section {
        max-width: 45%;
    }

    .email-address {
        font-size: 12px;
        max-width: 100%;
    }

    .container {
        padding: 0 3vw;
    }

    .hero-title {
        font-size: 28px;
        max-width: 280px;
    }

    .highlight-item {
        max-width: 280px;
        padding: 12px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-icon img {
        width: 20px;
        height: 20px;
    }

    .about-title {
        font-size: 32px;
    }

    .services-title {
        font-size: 28px;
    }

    .why-title {
        font-size: 32px;
    }

    .why-feature {
        max-width: 200px;
        min-width: 200px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 32px;
    }
}

/* Mobile Portrait (320px - 479px) */
@media (max-width: 480px) {
    .company-name {
        font-size: 10px;
    }

    .menu-item {
        font-size: 12px;
    }

    .call-text {
        font-size: 12px;
    }

    .phone-number {
        font-size: 12px;
    }

    .hero {
        height: calc(100vh - 70px);
    }

    .hero-title {
        font-size: 24px;
        max-width: 250px;
    }

    .tag-item {
        font-size: 14px;
    }

    .feature-text {
        font-size: 16px;
    }

    .highlight-text {
        font-size: 14px;
    }

    .highlight-icon {
        width: 36px;
        height: 36px;
    }

    .highlight-icon img {
        width: 18px;
        height: 18px;
    }

    .highlight-item {
        max-width: 240px;
        padding: 10px;
        gap: 8px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description,
    .about-highlight {
        font-size: 16px;
    }

    .services-title,
    .why-title,
    .products-title,
    .partners-title {
        font-size: 24px;
    }

    .services-container {
        padding: 30px 15px;
    }

    .services-line {
        width: calc(100% - 30px);
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 16px;
    }

    .why-feature {
        max-width: 180px;
        min-width: 180px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-content {
        padding: 25px;
    }

    .testimonial-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .testimonial-author {
        padding: 20px 25px;
    }

    .author-text h4 {
        font-size: 18px;
    }

    .author-text p {
        font-size: 16px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-features {
        gap: 15px;
        margin-bottom: 30px;
    }

    .cta-feature span {
        font-size: 18px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 30px;
    }

    .footer-menu-group h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-menu-group a {
        font-size: 18px;
    }

    .footer-description {
        font-size: 16px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-logo {
        height: 80px;
    }

    .partner-logo img {
        max-width: 150px;
        max-height: 60px;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 20px;
        max-width: 200px;
    }

    .product-card {
        width: 200px;
        height: 380px;
    }

    .highlight-item {
        max-width: 200px;
        flex-direction: column;
        gap: 8px;
    }

    .services-title,
    .why-title,
    .products-title,
    .partners-title {
        font-size: 20px;
    }

    .about-title {
        font-size: 24px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 20px;
    }
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #142257;
    overflow: hidden;
    margin-top: 70px;
}

.about-content-container {
    justify-content: space-evenly;
    display: flex;
    align-items: center;
    width: 100%;
}

.about-hero-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-hero-image {
    width: 100%;
    height: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 32px 32px;
}

.about-hero-overlay {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 20vh;
    background: rgba(217, 217, 217, 0.6);
}

.about-hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.364;
    color: #081630;
    text-align: center;
    z-index: 10;
    margin: 0;
}

/* About Content Section */
.about-content-section {
    padding: 120px 0;
    background: #f5f5f5;
    position: relative;
}

.about-main-content {
    max-width: 595px;
    margin-bottom: 60px;
}

.about-section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.364;
    color: #000000;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-main-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.364;
    color: #000000;
    margin: 0;
}

.about-side-image {
    border-radius: 20px;
    object-fit: cover;
}

.about-side-image-1 {
    width: 461px;
    height: 461px;
    top: 120px;
    right: 50px;
}

.about-side-image-2 {
    width: 782px;
    height: 523px;
    bottom: 50px;
    right: -100px;
}

/* Vision Mission Values Section */
.vision-mission-values {
    padding: 100px 0;
    background: #FBEAAF;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1437px;
    margin: 0 auto;
}

.vmv-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vmv-icon {
    width: 178px;
    height: 178px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vmv-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vmv-item h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.364;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.vmv-item p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.364;
    color: #000000;
    text-align: center;
    max-width: 364px;
}

/* Meet Our Team Section */
.meet-our-team {
    padding: 100px 0;
    background: #f5f5f5;
}

.team-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.team-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.364;
    color: #000000;
    text-align: left;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 430px;
}

.team-card {
    position: relative;
    background: #142257;
    border-radius: 8px;
    padding: 30px 40px;
    height: 120px;
    display: flex;
    align-items: center;
}

.team-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.team-text h4 {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #F3DFD8;
    margin: 0 0 4px 0;
}

.team-text p {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #81807E;
    margin: 0;
}

.team-contact-btn {
    background: #FFFFFF;
    border: 1px solid #333333;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.team-contact-btn:hover {
    background: #f0f0f0;
}

.team-whatsapp {
    position: absolute;
    right: 40px;
    bottom: -15px;
    width: 45px;
    height: 60px;
}

.team-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Whatsapp Icon */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-icon:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.whatsapp-icon-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.364;
    background: #4dc247;
    font-family: 'Nunito Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
}

.whatsapp-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Responsive Design for About Page */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 72px;
    }

    .about-side-images {
        width: 45%;
    }

    .about-side-image-1 {
        width: 350px;
        height: 350px;
    }

    .about-side-image-2 {
        width: 600px;
        height: 400px;
    }

    .vmv-grid {
        gap: 60px;
    }

    .vmv-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 992px) {
    .about-content-container {
        flex-direction: column;
    }

    .team-container {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }

    .about-hero-title {
        font-size: 56px;
    }

    .about-content-section {
        padding: 80px 0;
    }

    .about-side-images {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 60px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .about-side-image {
        position: static;
    }

    .about-side-image-1 {
        width: 300px;
        height: 300px;
        top: auto;
        right: auto;
    }

    .about-side-image-2 {
        width: 400px;
        height: 300px;
        bottom: auto;
        right: auto;
    }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .team-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 80vh;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-section-title,
    .team-title {
        font-size: 28px;
    }

    .about-main-text {
        font-size: 18px;
    }

    .about-side-images {
        flex-direction: column;
        align-items: center;
    }

    .about-side-image-1,
    .about-side-image-2 {
        max-width: 400px;
        height: 300px;
        width: revert;
    }

    .vmv-item h3 {
        font-size: 28px;
    }

    .vmv-item p {
        font-size: 18px;
    }

    .vmv-icon {
        width: 120px;
        height: 120px;
    }

    .team-card {
        padding: 20px 25px;
        height: auto;
        min-height: 100px;
    }

    .team-text h4 {
        font-size: 18px;
    }

    .team-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-section-title,
    .team-title {
        font-size: 24px;
    }

    .about-main-text {
        font-size: 16px;
    }

    .vmv-item h3 {
        font-size: 24px;
    }

    .vmv-item p {
        font-size: 16px;
    }

    .vmv-icon {
        width: 100px;
        height: 100px;
    }

    .team-card {
        padding: 15px 20px;
    }
}

/* Products Page Styles */

/* Products Hero Section */
.products-hero {
    position: relative;
    width: 100%;
    height: 749px;
    background: #142257;
    overflow: hidden;
    margin-top: 70px;
}

.products-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.products-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 32px 32px;
}

.products-hero-overlay {
    position: absolute;
    top: 209px;
    left: 0;
    width: 100%;
    height: 243px;
    background: rgba(217, 217, 217, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.364;
    color: #081630;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.products-category {
    margin-bottom: 100px;
}

.products-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.364;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 300px);
    gap: 20px;
    justify-content: flex-start;
}

.products-grid-organic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: flex-start;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    justify-content: flex-start;
}

.product-item {
    display: flex;
    align-items: center;
    max-width: 300px;
    max-height: 300px;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    border-radius: 8px;
}

/* Responsive Design for Products Page */
@media (max-width: 1600px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

/* Responsive Design for Products Page */
@media (max-width: 1200px) {
    .products-hero-title {
        font-size: 72px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .products-grid-organic {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .products-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 992px) {
    .products-hero {
        height: 600px;
    }

    .products-hero-title {
        font-size: 56px;
    }

    .products-hero-overlay {
        top: 150px;
        height: 200px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-organic {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .products-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-hero {
        height: 500px;
    }

    .products-hero-title {
        font-size: 40px;
    }

    .products-hero-overlay {
        top: 120px;
        height: 150px;
    }

    .category-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .products-grid-organic {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }

    .products-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .products-hero-title {
        font-size: 32px;
    }

    .category-title {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-organic {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .products-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Snacks & Beverage Page Styles */

/* Snacks Hero Section */
.snacks-hero {
    position: relative;
    width: 100%;
    height: 749px;
    background: #142257;
    overflow: hidden;
    margin-top: 70px;
}

.snacks-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.snacks-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 32px 32px;
}

.snacks-hero-overlay {
    position: absolute;
    top: 209px;
    left: 0;
    width: 100%;
    height: 243px;
    background: rgba(217, 217, 217, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.snacks-hero-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.364;
    color: #081630;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

/* Snacks Content Section */
.snacks-content {
    padding: 120px 0;
    background: #f5f5f5;
}

.snacks-main-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
}

.snacks-text-section {
    flex: 1;
    max-width: 595px;
}

.snacks-section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.364;
    color: #000000;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.snacks-description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.364;
    color: #000000;
    margin: 0;
}

.snacks-machine-image {
    flex: 0 0 533px;
    position: relative;
}

.snacks-machine-image img {
    /* width: 100%; */
    height: 593px;
    /* object-fit: cover; */
    border-radius: 4px;
}

/* Responsive Design for Snacks Page */
@media (max-width: 1200px) {
    .snacks-hero-title {
        font-size: 72px;
    }

    .snacks-machine-image {
        flex: 0 0 450px;
    }

    .snacks-machine-image img {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .snacks-hero {
        height: 600px;
    }

    .snacks-hero-title {
        font-size: 56px;
    }

    .snacks-hero-overlay {
        top: 150px;
        height: 200px;
    }

    .snacks-main-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .snacks-machine-image {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .snacks-machine-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .snacks-hero {
        height: 300px;
    }

    .snacks-hero-image img {
        border-radius: 0;
    }

    .snacks-hero-title {
        font-size: 40px;
    }

    .snacks-hero-overlay {
        top: 120px;
        height: 150px;
    }

    .snacks-content {
        padding: 80px 0;
    }

    .snacks-section-title {
        font-size: 28px;
    }

    .snacks-description {
        font-size: 18px;
    }

    .snacks-machine-image img {
        height: 300px;
        width: revert;

    }
}

@media (max-width: 480px) {
    .snacks-hero-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .snacks-section-title {
        font-size: 24px;
    }

    .snacks-description {
        font-size: 16px;
    }

    .snacks-machine-image img {
        height: 250px;
    }
}

/* Contact Us Page Styles */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    width: 100%;
    height: 509px;
    background: #142257;
    overflow: hidden;
    margin-top: 70px;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 32px 32px;
}

.contact-hero-overlay {
    position: absolute;
    top: 115px;
    left: 0;
    width: 100%;
    height: 243px;
    background: rgba(217, 217, 217, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.364;
    color: #081630;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

/* Contact Form Section */
.contact-form-section {
    padding: 132px 0 100px;
    background: #f5f5f5;
}

.contact-form {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 50px;
    max-width: 1053px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-row {
    display: flex;
    gap: 50px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-label {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    text-transform: uppercase;
}

.form-input {
    background: #CCCCCC;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #000000;
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #81807E;
}

.form-input:focus {
    outline: none;
    border-color: #142257;
}

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

/* Phone Input Container */
.phone-input-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: #CCCCCC;
    border: 1px solid #333333;
    border-radius: 12px;
    min-width: 80px;
}

.country-flag {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    object-fit: cover;
}

.dropdown-icon {
    color: #E7BEB1;
    font-size: 12px;
}

.phone-input {
    flex: 1;
}

/* Form Bottom Section */
.form-bottom {
    display: flex;
    align-items: center;
    gap: 70px;
}

.terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.form-checkbox {
    width: 28px;
    height: 28px;
    background: #E8CD47;
    border: 1px solid #404040;
    border-radius: 7px;
    appearance: none;
    cursor: pointer;
    position: relative;
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #404040;
    font-size: 16px;
    font-weight: bold;
}

.terms-label {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #B3B3B2;
    cursor: pointer;
}

.form-submit-btn {
    background: #142257;
    border: none;
    border-radius: 12px;
    padding: 18px 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background: #0f1a44;
}

.form-submit-btn span {
    font-family: 'Roboto Flex', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
    text-transform: uppercase;
}

.submit-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

/* Responsive Design for Contact Page */
@media (max-width: 1200px) {
    .contact-hero-title {
        font-size: 72px;
    }

    .contact-form {
        max-width: 90%;
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        height: 400px;
    }

    .contact-hero-title {
        font-size: 56px;
    }

    .contact-hero-overlay {
        top: 80px;
        height: 180px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 30px;
    }

    .phone-input-container {
        flex-direction: column;
        align-items: stretch;
    }

    .country-selector {
        align-self: flex-start;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 350px;
    }

    .contact-hero-title {
        font-size: 40px;
    }

    .contact-hero-overlay {
        top: 60px;
        height: 150px;
    }

    .contact-form {
        padding: 30px;
        gap: 30px;
    }

    .form-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }

    .form-submit-btn {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 32px;
    }

    .contact-form {
        padding: 20px;
        gap: 25px;
    }

    .form-label {
        font-size: 16px;
    }

    .form-input {
        font-size: 16px;
        padding: 15px;
    }

    .country-flag {
        width: 40px;
        height: 40px;
    }

    .terms-label {
        font-size: 16px;
    }

    .form-submit-btn span {
        font-size: 16px;
    }
}

/* Privacy Policy Page Styles */

/* Privacy Hero Section */
.privacy-hero {
    position: relative;
    width: 100%;
    height: 509px;
    background: #142257;
    overflow: hidden;
    margin-top: 70px;
}

.privacy-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.privacy-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 32px 32px;
}

.privacy-hero-overlay {
    position: absolute;
    top: 115px;
    left: 0;
    width: 100%;
    height: 243px;
    background: rgba(217, 217, 217, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-hero-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.364;
    color: #081630;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 25px 0 100px;
    background: #f5f5f5;
}

.privacy-content {
    max-width: 1322px;
    margin: 0 auto;
    padding: 0 56px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.364;
    color: #000000;
}

.privacy-content h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.364;
    color: #000000;
    margin: 0 0 30px 0;
}

.privacy-content h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.364;
    color: #000000;
    margin: 40px 0 20px 0;
}

.privacy-content h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.364;
    color: #000000;
    margin: 30px 0 15px 0;
}

.privacy-content p {
    margin: 0 0 20px 0;
    font-weight: 400;
}

.privacy-content ul {
    margin: 15px 0 20px 30px;
    padding: 0;
}

.privacy-content li {
    margin: 8px 0;
    font-weight: 400;
}

.privacy-content strong {
    font-weight: 700;
}

.contact-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #142257;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
}

/* Footer Privacy Link Active State */
.footer-menu-group a.active {
    color: #0066FF;
    font-weight: 600;
}

/* Responsive Design for Privacy Policy Page */
@media (max-width: 1200px) {
    .privacy-hero-title {
        font-size: 72px;
    }

    .privacy-content {
        max-width: 90%;
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .privacy-hero {
        height: 400px;
    }

    .privacy-hero-title {
        font-size: 56px;
    }

    .privacy-hero-overlay {
        top: 80px;
        height: 180px;
    }

    .privacy-content-section {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 0 30px;
        font-size: 18px;
    }

    .privacy-content h2 {
        font-size: 28px;
    }

    .privacy-content h3 {
        font-size: 22px;
    }

    .privacy-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        height: 350px;
    }

    .privacy-hero-title {
        font-size: 40px;
    }

    .privacy-hero-overlay {
        top: 60px;
        height: 150px;
    }

    .privacy-content {
        padding: 0 20px;
        font-size: 16px;
    }

    .privacy-content h2 {
        font-size: 24px;
    }

    .privacy-content h3 {
        font-size: 20px;
    }

    .privacy-content h4 {
        font-size: 16px;
    }

    .privacy-content ul {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .privacy-content {
        padding: 0 15px;
        font-size: 14px;
    }

    .privacy-content h2 {
        font-size: 20px;
    }

    .privacy-content h3 {
        font-size: 18px;
    }

    .privacy-content h4 {
        font-size: 14px;
    }

    .contact-info {
        padding: 15px;
    }
}

/* Terms & Conditions Page Styles */

/* Terms Hero Section */
.terms-hero {
    position: relative;
    width: 100%;
    height: 509px;
    background: #142257;
    overflow: hidden;
    margin-top: 70px;
}

.terms-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.terms-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 32px 32px;
}

.terms-hero-overlay {
    position: absolute;
    top: 115px;
    left: 0;
    width: 100%;
    height: 243px;
    background: rgba(217, 217, 217, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-hero-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.364;
    color: #081630;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

/* Terms Content Section */
.terms-content-section {
    padding: 25px 0 100px;
    background: #f5f5f5;
}

.terms-content {
    max-width: 1322px;
    margin: 0 auto;
    padding: 0 56px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.364;
    color: #000000;
}

.terms-content h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.364;
    color: #000000;
    margin: 0 0 30px 0;
}

.terms-content h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.364;
    color: #000000;
    margin: 40px 0 20px 0;
}

.terms-content h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.364;
    color: #000000;
    margin: 30px 0 15px 0;
}

.terms-content p {
    margin: 0 0 20px 0;
    font-weight: 400;
}

.terms-content ul {
    margin: 15px 0 20px 30px;
    padding: 0;
}

.terms-content li {
    margin: 8px 0;
    font-weight: 400;
}

.terms-content strong {
    font-weight: 700;
}

/* Footer Terms Link Active State */
.footer-menu-group a.active {
    color: #0066FF;
    font-weight: 600;
}

/* Responsive Design for Terms & Conditions Page */
@media (max-width: 1200px) {
    .terms-hero-title {
        font-size: 72px;
    }

    .terms-content {
        max-width: 90%;
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .terms-hero {
        height: 400px;
    }

    .terms-hero-title {
        font-size: 56px;
    }

    .terms-hero-overlay {
        top: 80px;
        height: 180px;
    }

    .terms-content-section {
        padding: 60px 0;
    }

    .terms-content {
        padding: 0 30px;
        font-size: 18px;
    }

    .terms-content h2 {
        font-size: 28px;
    }

    .terms-content h3 {
        font-size: 22px;
    }

    .terms-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .terms-hero {
        height: 350px;
    }

    .terms-hero-title {
        font-size: 40px;
    }

    .terms-hero-overlay {
        top: 60px;
        height: 150px;
    }

    .terms-content {
        padding: 0 20px;
        font-size: 16px;
    }

    .terms-content h2 {
        font-size: 24px;
    }

    .terms-content h3 {
        font-size: 20px;
    }

    .terms-content h4 {
        font-size: 16px;
    }

    .terms-content ul {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .terms-hero-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .terms-content {
        padding: 0 15px;
        font-size: 14px;
    }

    .terms-content h2 {
        font-size: 20px;
    }

    .terms-content h3 {
        font-size: 18px;
    }

    .terms-content h4 {
        font-size: 14px;
    }

    .contact-info {
        padding: 15px;
    }
}

/* Responsive Navbar with Dropdown */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Container */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    color: #000000;
}

.dropdown-container:hover .dropdown-arrow,
.dropdown-container.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-container.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #000000;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    margin-bottom: 4px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #000000;
}

.dropdown-item-desc {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #666666;
}

/* Enhanced Responsive Design for Navbar */
@media (max-width: 1024px) {
    .dropdown-menu {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .navbar-container {
        position: relative;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .logo-section {
        order: 1;
        flex: 0 0 auto;
    }

    .call-section {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
        margin-right: 15px;
    }

    .menu-items {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        order: 4;
        width: 100%;
    }

    .menu-items.active {
        transform: translateX(0);
    }

    .menu-item {
        padding: 15px 30px;
        font-size: 18px;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.2s ease;
    }

    .menu-item:hover {
        background-color: #f8f9fa;
    }

    .menu-item:last-child {
        border-bottom: none;
    }

    .dropdown-container {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 30px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 0;
        padding: 0;
        background: #f8f9fa;
        box-shadow: none;
        border: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-container.active .dropdown-menu {
        max-height: 400px;
    }

    .dropdown-item {
        padding: 12px 50px;
        margin-bottom: 0;
        border-bottom: 1px solid #e9ecef;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background-color: #e9ecef;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 10px 15px;
    }

    .call-section {
        margin-right: 10px;
    }

    .menu-item {
        font-size: 16px;
        padding: 12px 20px;
    }

    .dropdown-toggle {
        padding: 12px 20px;
    }

    .dropdown-item {
        padding: 10px 40px;
    }

    .dropdown-item-title {
        font-size: 15px;
    }

    .dropdown-item-desc {
        font-size: 13px;
    }
}

/* Active state for dropdown items */
.dropdown-item.active {
    background-color: #f0f8ff;
    border-left: 3px solid #0066FF;
}

.dropdown-item.active .dropdown-item-title {
    color: #0066FF;
    font-weight: 700;
}