:root {
    --primary-color: #CD2653;
    --secondary-color: #333333;
    --background-color: #FFFFFF;
    --light-pink: #FDF2F4;
    --text-color: #4A4A4A;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: left;
    gap: 0.5rem;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.search-icon {
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 0.8rem 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    border: 2px solid white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(100.25rem);
}

.hero-content {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: transparent;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .search-icon {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Certifications Page Styles */
.certifications-hero {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.certifications-hero:first-child {
    height: 300px;
    margin-top: 70px;
}

.certifications-hero:first-child .hero-content {
    width: 100%;
    height: 300px;
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.certifications-hero h1 {
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
}

.certifications-hero.logo-section {
    margin-top: 0px;
    height: auto;
    margin: 2rem 0;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    background: white;
}

.certifications-item {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.certifications-item:hover {
    transform: scale(1.05);
}

.certifications-item img {
    max-width: 200px;
    height: 150px;
    object-fit: contain;
}

.certification-item {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
}

.certification-item h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.certification-item p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.certification-item ul {
    list-style-type: none;
    padding-left: 0;
}

.certification-item li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.certification-item li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.certification-item li:hover::before {
    opacity: 1;
    left: -30px;
}

@media (max-width: 1024px) {
    .certifications-hero h1 {
        font-size: 2.5rem;
    }
    
    .certifications-hero.logo-section {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .certifications-item img {
        max-width: 180px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .certifications-hero,
    .certifications-hero:first-child,
    .certifications-hero:first-child .hero-content {
        height: 200px;
    }
    
    .certifications-hero h1 {
        font-size: 2rem;
    }

    .certification-item {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .certification-item h2 {
        font-size: 1.5rem;
    }
    
    .certifications-hero.logo-section {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .certifications-item img {
        max-width: 150px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .certifications-hero,
    .certifications-hero:first-child,
    .certifications-hero:first-child .hero-content {
        height: 180px;
    }
    
    .certifications-content {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .certification-item {
        padding: 1rem;
    }
    
    .certifications-hero.logo-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .certifications-item img {
        max-width: 180px;
        height: 130px;
    }
    
    .certifications-hero h1 {
        font-size: 1.8rem;
    }
}

/* Video background for certifications hero */
.certifications-hero .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5);
}

/* Common Page Hero Styles */
.page-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
}

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

.page-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 3rem 2rem;
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

@media (max-width: 1024px) {
    .page-hero {
        height: 350px;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .page-hero h1::after {
        width: 60px;
        bottom: -10px;
    }
}

.careers-hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.careers-content-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.careers-content-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .careers-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .careers-hero h1 {
        font-size: 1.5rem;
    }
}

/* Video background for careers hero */
.careers-hero .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5);
}

.careers-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem; 
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.careers-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.careers-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.careers-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.careers-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.careers-content a:hover {
    text-decoration: underline;
}

.careers-content-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.careers-content-container h1 {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.about-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhanced welcome section with animated border that appears on hover */
.welcome-section {
    padding: 3rem 2rem;
    margin: 3rem 0;
    overflow: visible;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Remove default border animations */
.welcome-section::before,
.welcome-section::after {
    content: none;
}

/* Create a pseudo-element for the animated border */
.welcome-section {
    position: relative;
}

/* Base state - no visible border */
.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #CD2653, #e67e22, #CD2653);
    background-size: 200% 200%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
}

/* Hover state - show the border and animate it */
.welcome-section:hover::before {
    opacity: 1;
    animation: gradientBorder 3s ease infinite;
    box-shadow: 0 0 20px rgba(205, 38, 83, 0.3);
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



/* Activate the tracing animation on hover */
.welcome-section:hover::after {
    opacity: 1;
    animation: traceBorder 2s linear forwards;
}

/* Animation that flows from top-left around the entire div */
@keyframes traceBorder {
    0% {
        border-top-color: transparent;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
        border-top-left-radius: 10px;
    }
    12.5% {
        border-top-color: #CD2653;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    25% {
        border-top-color: #CD2653;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    37.5% {
        border-top-color: #CD2653;
        border-right-color: #e67e22;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    50% {
        border-top-color: #CD2653;
        border-right-color: #e67e22;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    62.5% {
        border-top-color: #CD2653;
        border-right-color: #e67e22;
        border-bottom-color: #CD2653;
        border-left-color: transparent;
    }
    75% {
        border-top-color: #CD2653;
        border-right-color: #e67e22;
        border-bottom-color: #CD2653;
        border-left-color: transparent;
    }
    87.5% {
        border-top-color: #CD2653;
        border-right-color: #e67e22;
        border-bottom-color: #CD2653;
        border-left-color: #e67e22;
    }
    100% {
        border-top-color: #CD2653;
        border-right-color: #e67e22;
        border-bottom-color: #CD2653;
        border-left-color: #e67e22;
    }
}

/* Ensure the content stays above the border */
.welcome-section > * {
    position: relative;
    z-index: 2;
}

/* Add a subtle scale effect on hover */
.welcome-section:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.welcome-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.welcome-section:hover h2::after {
    width: 100%;
}

.welcome-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-vision-values h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.mission-vision-values h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.mission-section,
.vision-section,
.core-values-section {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mission-section::before,
.vision-section::before,
.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mission-section:hover::before,
.vision-section:hover::before,
.core-values-section:hover::before {
    transform: scaleX(1);
}

.section-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 5px 5px 10px #d9d9d9, -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
}

.section-icon i {
    transition: all 0.3s ease;
}

.mission-section:hover .section-icon,
.vision-section:hover .section-icon,
.core-values-section:hover .section-icon {
    background: var(--primary-color);
    box-shadow: inset 5px 5px 10px #b01f46, inset -5px -5px 10px #ea2d60;
}

.mission-section:hover .section-icon i,
.vision-section:hover .section-icon i,
.core-values-section:hover .section-icon i {
    color: white;
    transform: scale(1.1);
}

.mission-section:hover,
.vision-section:hover,
.core-values-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.values-list li {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.values-list li:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.values-list li::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.values-list li:hover::before {
    opacity: 1;
    left: -30px;
}

@media (max-width: 1024px) {
    .mission-vision-values {
        gap: 1.5rem;
    }
    
    .welcome-section h2 {
        font-size: 2.2rem;
    }
    .welcome-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-vision-values {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-section h2 {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 3rem 0;
    }
    .welcome-section {
        padding: 2rem 1.5rem;
    }
    .section-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .welcome-section h2 {
        font-size: 1.8rem;
    }
    
    .about-content .container {
        padding: 0 1rem;
    }
    
    .mission-section,
    .vision-section,
    .core-values-section {
        padding: 1.5rem;
    }
    .welcome-section {
        padding: 1.5rem 1rem;
    }
    .section-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.8rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #f8f8f8;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.social-links {
    text-align: center;
    width: 100%;
}

.social-links h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #b01f46;
}

.social-icon i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .social-icons {
        gap: 1rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .social-icon span {
        font-size: 0.9rem;
    }
}

/* Bouquet Concepts Section */
.bouquet-concepts {
    padding: 5rem 0;
    background-color: #fff;
}

.bouquet-concepts .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bouquet-concepts h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.bouquet-concepts h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(35%);
}

.bouquet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bouquet-item {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bouquet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bouquet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(205, 38, 83, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bouquet-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.bouquet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bouquet-item:hover img {
    transform: scale(1.1);
}

.bouquet-item:hover .bouquet-overlay {
    opacity: 1;
}

.bouquet-item:hover .bouquet-overlay span {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .bouquet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .bouquet-concepts h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .bouquet-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bouquet-concepts h2 {
        font-size: 1.8rem;
    }
}

/* Farm Intro Section */
.farm-intro {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('../images/farm-bg.jpg') center/cover;
    position: relative;
}

.farm-intro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.farm-text {
    max-width: 800px;
    text-align: center;
}

.farm-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.farm-text h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.farm-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.farm-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .farm-intro {
        padding: 4rem 0;
    }
    
    .farm-text h2 {
        font-size: 2rem;
    }
    
    .farm-text h3 {
        font-size: 1.2rem;
    }
    
    .farm-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .farm-text h2 {
        font-size: 1.8rem;
    }
    
    .farm-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-item {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
}

/* Milestones Section */
.milestones {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.milestones .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.milestones h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.milestones h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.milestone-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.milestone-item:hover {
    transform: translateY(-10px);
}

.milestone-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.milestone-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(27%) sepia(51%) saturate(2878%) hue-rotate(320deg) brightness(95%) contrast(97%);
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.milestone-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.milestone-quote {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto 0;
}

.milestone-quote blockquote {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.milestone-quote cite {
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .milestone-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .milestones {
        padding: 4rem 0;
    }
    
    .milestones h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .milestone-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .milestone-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .milestones h2 {
        font-size: 1.8rem;
    }
    
    .milestone-quote blockquote {
        font-size: 1.1rem;
    }
}

/* Careers Page Styles */
.careers-content {
    padding: 4rem 0;
    background-color: #fff;
}

.careers-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.careers-content-container h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.careers-content-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.careers-section {
    max-width: 900px;
    margin: 0 auto;
}

.careers-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
}

.careers-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.careers-section ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.careers-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.careers-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .careers-content {
        padding: 3rem 0;
    }
    
    .careers-content-container h2 {
        font-size: 2rem;
    }
    
    .careers-section h3 {
        font-size: 1.3rem;
    }
    
    .careers-section p,
    .careers-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .careers-content-container h2 {
        font-size: 1.8rem;
    }
    
    .careers-section h3 {
        font-size: 1.2rem;
    }
}

/* Career Opportunities Section */
.careers-opportunities {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.career-tile {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.career-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.career-tile-content {
    padding: 2rem;
    text-align: center;
}

.career-tile-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.career-tile:hover .career-tile-content i {
    transform: scale(1.1);
}

.career-tile-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.career-tile-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.career-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.career-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.career-link:hover {
    color: #e62d5b;
}

.career-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .careers-opportunities {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Diversity Section Styles */
.diversity-intro {
    margin: 4rem 0;
}

.diversity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.diversity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.diversity-card:hover {
    transform: translateY(-5px);
}

.diversity-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.diversity-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.values-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem -2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 2rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.equal-opportunity {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #e62d5b;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .diversity-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .diversity-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .equal-opportunity {
        padding: 2rem 1rem;
    }
}

/* Sustainability Page Styles */
.sustainability-content {
    padding: 4rem 0;
}

.sustainability-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sustainability-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.sustainability-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.sustainability-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.sustainability-intro > p {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.sustainability-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.environmental-conservation {
    margin-top: 6rem;
}

.environmental-conservation h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.environmental-conservation h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.conservation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.conservation-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.conservation-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.conservation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
}

.conservation-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .sustainability-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sustainability-pillars,
    .conservation-grid {
        grid-template-columns: 1fr;
    }
    
    .sustainability-intro h2,
    .environmental-conservation h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sustainability-content {
        padding: 3rem 0;
    }
    
    .pillar-card {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-locations {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-locations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 3rem;
}

.location-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.location-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.info-content h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.info-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-card h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-locations {
        padding: 2rem 0;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-item i {
        margin-bottom: 1rem;
    }
}

/* Our Farms Page Styles */
.farms-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.farms-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.farms-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.farms-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.farms-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.farms-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.farm-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.farm-image {
    width: 200px;
    height: 200px;
    float: left;
    margin-right: 2rem;
}

.farm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.farm-details {
    padding: 2rem;
}

.farm-details h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.farm-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.view-gallery {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.view-gallery:hover {
    background: #e62d5b;
}

.weather-forecast {
    background: #1e4e6c;
    color: white;
    padding: 1rem;
    clear: both;
}

.forecast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.current-weather {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.forecast-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    padding: 1rem;
    text-align: center;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.day-name {
    font-size: 0.8rem;
    opacity: 0.9;
}

.day i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.temp {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .farm-image {
        width: 100%;
        height: 200px;
        float: none;
        margin-right: 0;
    }
    
    .farm-details {
        padding: 1.5rem;
    }
    
    .forecast-days {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .day-name {
        font-size: 0.7rem;
    }
    
    .day i {
        font-size: 1rem;
    }
    
    .temp {
        font-size: 0.8rem;
    }
    
    .day:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .forecast-days {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .day:nth-child(n+4) {
        display: none;
    }
}

/* Products Page Styles */
.products-page {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 70px;
}

.products-container {
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 1.2rem;
    justify-content: center;
}

.category-filter {
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    text-align: center;
}

.category-filter h3 {
    display: none;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-buttons::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border: 1px solid #e0e0e0;
    background: white;
    color: #666;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.category-section {
    margin-bottom: 3rem;
    text-align: center;
}

.category-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.category-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.product-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-info {
    padding: 0.8rem;
    position: relative;
    z-index: 0;
    background: white;
}

.product-info h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.product-color {
    display: inline-block;
    background: #f8f8f8;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Search Bar Styles */
.search-container {
    margin-bottom: 2rem;
    text-align: center;
}

.search-bar {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-bar:focus-within {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.search-input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #b01f46;
}

.search-btn i {
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-bar {
        max-width: 400px;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .search-bar {
        margin: 0 0.5rem;
    }
    
    .search-input {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.7rem 1.2rem;
    }
}

/* Add this to your existing CSS */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 2rem 0;
}

.no-results h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #666;
    font-size: 0.9rem;
}

/* Loading state styles */
.products-container.loading {
    position: relative;
    min-height: 200px;
}

.products-container.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Improve search input styles */
.search-input {
    transition: all 0.3s ease;
}

.search-input:focus {
    background-color: #fff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input[type="file"] {
    padding: 0.5rem 0;
}

.current-image {
    margin: 1rem 0;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #b01f46;
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.search-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.search-overlay-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-overlay-close:hover {
    color: var(--primary-color);
}

.global-search-bar {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    border-bottom: 2px solid #eee;
    outline: none;
    transition: border-color 0.3s ease;
    background: transparent;
}

.global-search-bar:focus {
    border-bottom-color: var(--primary-color);
}

.search-results {
    margin-top: 2rem;
}

/* Instagram Feed Section */
.instagram-feed {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.instagram-feed .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.instagram-feed h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.instagram-feed h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.instagram-carousel {
    margin-top: 3rem;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .instagram-feed {
        padding: 3rem 0;
    }
    
    .instagram-feed h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        padding: 2rem 0;
    }
    
    .instagram-feed h2 {
        font-size: 1.8rem;
    }
}

/* HubSpot Chat Widget Styles */
#hubspot-messages-iframe-container {
    z-index: 1000 !important;
}

@media (max-width: 768px) {
    #hubspot-messages-iframe-container {
        z-index: 1000 !important;
        bottom: 60px !important;
    }
}

.chat-widget {
    z-index: 1000 !important;
}

/* Search Results Styles */
.search-results-list {
    max-height: 60vh;
    overflow-y: auto;
    padding: 1rem 0;
}

.search-result-item {
    display: block;
    padding: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.result-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.result-url {
    font-size: 0.9rem;
    color: #666;
}

.highlight {
    background-color: rgba(205, 38, 83, 0.1);
    color: var(--primary-color);
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-results p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.no-results p:last-child {
    font-size: 0.9rem;
}

/* Add to your existing search styles */
.result-content {
    font-size: 0.9rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.search-result-item {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
}

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

/* Add these styles for the product images */
.product-card img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-card img:hover {
    transform: scale(1.05);
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-closeContainer {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

/* Add these styles for the submenu */
.nav-item-with-submenu {
    position: relative;
    display: inline-block;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 5px;
    z-index: 1000;
}

.nav-item-with-submenu:hover .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.submenu a:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .submenu {
        position: static;
        display: none;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        padding-left: 20px;
    }

    .nav-item-with-submenu.active .submenu {
        display: block;
    }

    .submenu a {
        padding: 10px 15px;
        color: white;
    }
}

.featured-title {
    color: #e91e63;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.initiative-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.initiative-story {
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.initiative-story p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.impact-summary {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    text-align: center;
}

.impact-summary h3 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.impact-summary h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.impact-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #444;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-summary {
        padding: 2rem 1rem;
    }
    
    .impact-summary h3 {
        font-size: 1.5rem;
    }
    
    .impact-item {
        padding: 1rem;
    }
    
    .impact-item i {
        font-size: 1.8rem;
    }
    
    .impact-item p {
        font-size: 1rem;
    }
}

.career-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.download-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.download-pdf:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.download-pdf i {
    font-size: 1.2rem;
}

/* YouTube video button  */
.video-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.video-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #CD2653 0%, #e67e22 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.video-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    padding-right: 25px;
}

.video-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.video-button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #CD2653;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.video-button:hover .video-icon {
    animation: pulse 1.5s infinite;
}

.video-text {
    position: relative;
    z-index: 1;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Floating animation for the container */
.video-button-container {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-button-container {
        bottom: 20px;
        right: 20px;
    }
    
    .video-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .video-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

/* Remove the dark overlay from hero video */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Changed from rgba(0, 0, 0, 0.5) to fully transparent */
    z-index: 1;
}

/* Also update the home page hero if needed */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Changed from rgba(0, 0, 0, 0.5) to fully transparent */
    z-index: 1;
}

/* Ensure text remains readable on bright backgrounds */
.hero-content h1, 
.hero-content h2, 
.hero-content p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

