 @font-face {
      font-family:zai ;
      src: url(fonts/zai_CofFEeSackfulStamp.ttf);
    }
    @font-face {
      font-family: greater;
      src: url(fonts/GreaterTheory.otf);
    }
    @font-face {
      font-family: hind;
      src: url(fonts/Hind-Regular.ttf);
    }
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f5f5;
            color: #333;
        }

        /* Header Styles */
        header {
          font-family: hind;
            background-color:rgb(0 0 0 / 51%);
            padding: 20px 50px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            border: 2px solid #5a9f6f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .logo-text {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #5a9f6f;
        }

        .nav-links a.active {
            color: #5a9f6f;
        }

        .nav-icons {
            display: flex;
            gap: 15px;
        }
        .icon-btn {
            width: 35px;
            height: 35px;
            border: 1px solid #4D8B55;
            border-radius: 50%;
            display: flex;
            padding: 6px;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .icon-btn:hover {
            background-color: #5a9f6f;
            border-color: #5a9f6f;
            transform: scale(1.1);
        }

        .hero-slider-wrapper {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 500px;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        .hero-slide-item {
            position: relative;
            width: 33.333%;
            height: 100%;
            flex-shrink: 0;
        }

        .slide-background-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenBurns 20s ease-in-out infinite alternate;
        }

        .slide-overlay-dark {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                rgba(0, 0, 0, 0.5),
                rgba(0, 0, 0, 0.4)
            );
        }

        .hero-content-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            max-width: 900px;
            z-index: 10;
        }

        .main-title-text {
            font-family: zai;
font-size: 128px;
font-style: normal;
font-weight: 400;
letter-spacing: 0;
    height: 74px;
            color: #ffffff;
            text-transform: uppercase;
            
            margin-bottom: 10px;
            animation: fadeInScale 1.2s ease-out;
        }

        .subtitle-brand-text {
            font-family: zai;
            letter-spacing: 0;
font-size: 128px;
font-style: normal;
font-weight: 400;
            color: #6b9b7f;
           
            margin-bottom: 30px;
         
            animation: fadeInScale 1.4s ease-out;
        }

        .description-paragraph {
            font-size: 18px;
            color: #ffffff;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
            animation: fadeInUp 1.6s ease-out;
        }

        .primary-cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: #6b9b7f;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.4s ease;
            box-shadow: 0 6px 25px rgba(107, 155, 127, 0.4);
            animation: fadeInUp 1.8s ease-out;
            border: 2px solid transparent;
        }

        .primary-cta-button:hover {
            background: #5a8a6e;
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(107, 155, 127, 0.6);
            border-color: #ffffff;
        }

        .primary-cta-button:active {
            transform: translateY(-1px);
        }

        .navigation-controls-wrapper {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 20;
        }

        .nav-arrow-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #ffffff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .nav-arrow-button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: #ffffff;
            transform: scale(1.1);
        }

        .nav-arrow-button:active {
            transform: scale(0.95);
        }

        .indicator-dots-container {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
        }

        .dot-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot-indicator.active-dot {
            background: #6b9b7f;
            border-color: #ffffff;
            transform: scale(1.3);
        }

        .dot-indicator:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.1);
            }
        }

        @media (max-width: 1024px) {
            .main-title-text,
            .subtitle-brand-text {
                font-size: 56px;
                letter-spacing: 6px;
            }

            .description-paragraph {
                font-size: 16px;
            }

            .primary-cta-button {
                padding: 16px 40px;
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .hero-slider-wrapper {
                min-height: 600px;
            }

            .main-title-text,
            .subtitle-brand-text {
                font-size: 42px;
                letter-spacing: 4px;
            }

            .description-paragraph {
                font-size: 15px;
                padding: 0 20px;
            }

            .primary-cta-button {
                padding: 14px 35px;
                font-size: 14px;
            }

            .navigation-controls-wrapper {
                bottom: 30px;
            }

            .nav-arrow-button {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .indicator-dots-container {
                bottom: 100px;
            }
        }

        @media (max-width: 480px) {
            .hero-slider-wrapper {
                min-height: 500px;
            }

            .main-title-text,
            .subtitle-brand-text {
                font-size: 32px;
                letter-spacing: 3px;
            }

            .description-paragraph {
                font-size: 14px;
                line-height: 1.6;
            }

            .primary-cta-button {
                padding: 12px 30px;
                font-size: 13px;
                letter-spacing: 1.5px;
            }

            .nav-arrow-button {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .dot-indicator {
                width: 10px;
                height: 10px;
            }
        }











         .products-section {
            width: 100%;
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 30px;
            padding: 60px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.8s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .products-title {
            text-align: center;
            font-size: 42px;
            font-weight: 900;
            letter-spacing: 4px;
            color: #1a1a1a;
            margin-bottom: 60px;
            position: relative;
            animation: slideDown 1s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .products-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #4CAF50, #8BC34A);
            border-radius: 3px;
            animation: expandLine 1.2s ease 0.3s backwards;
        }

        @keyframes expandLine {
            from {
                width: 0;
            }
            to {
                width: 100px;
            }
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .product-card {
            text-align: center;
            padding: 40px 20px;
            background: #f9fafb;
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: fadeInScale 0.6s ease backwards;
        }

        .product-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .product-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .product-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .product-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            transition: left 0.6s;
        }

        .product-card:hover::before {
            left: 100%;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
            background: white;
        }

        .product-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4CAF50, #8BC34A);
            border-radius: 20px;
            transition: all 0.4s ease;
            animation: bounceIn 0.8s ease backwards;
        }

        .product-card:nth-child(1) .product-icon {
            animation-delay: 0.2s;
        }

        .product-card:nth-child(2) .product-icon {
            animation-delay: 0.3s;
        }

        .product-card:nth-child(3) .product-icon {
            animation-delay: 0.4s;
        }

        .product-card:nth-child(4) .product-icon {
            animation-delay: 0.5s;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                transform: scale(1);
            }
        }

        .product-card:hover .product-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
        }

        .product-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .product-card:hover .product-icon svg {
            animation: wiggle 0.5s ease;
        }

        @keyframes wiggle {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(-10deg);
            }
            75% {
                transform: rotate(10deg);
            }
        }

        .product-name {
            font-size: 16px;
            font-weight: 600;
            color: #2d3748;
            transition: all 0.3s ease;
            animation: fadeIn 1s ease backwards;
        }

        .product-card:nth-child(1) .product-name {
            animation-delay: 0.3s;
        }

        .product-card:nth-child(2) .product-name {
            animation-delay: 0.4s;
        }

        .product-card:nth-child(3) .product-name {
            animation-delay: 0.5s;
        }

        .product-card:nth-child(4) .product-name {
            animation-delay: 0.6s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .product-card:hover .product-name {
            color: #4CAF50;
            transform: scale(1.05);
        }

        /* Floating particles effect */
        .product-card::after {
            content: '✨';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 20px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .product-card:hover::after {
            opacity: 1;
            animation: float 2s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @media (max-width: 768px) {
            .products-section {
                padding: 40px 20px;
            }

            .products-title {
                font-size: 32px;
                letter-spacing: 2px;
                margin-bottom: 40px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }

            .product-card {
                padding: 30px 15px;
            }

            .product-icon {
                width: 60px;
                height: 60px;
            }

            .product-icon svg {
                width: 30px;
                height: 30px;
            }

            .product-name {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .products-title {
                font-size: 24px;
                letter-spacing: 1px;
            }

            .products-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .product-card {
                padding: 25px 10px;
            }

            .product-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }

            .product-icon svg {
                width: 25px;
                height: 25px;
            }

            .product-name {
                font-size: 12px;
            }
        }


         .coffee-hero {
            position: relative;
            min-height: 500px;
            background-image: url(pic/kaffa/image\ 32.png);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 60px 20px;
        }

        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 600px;
            animation: slideInLeft 1s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-size: 56px;
            font-weight: 900;
            color: white;
            line-height: 1.2;
            margin-bottom: 25px;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title .highlight {
            color: #4CAF50;
            position: relative;
            display: inline-block;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
            }
            50% {
                text-shadow: 0 0 20px rgba(76, 175, 80, 0.8);
            }
        }

        .hero-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            margin-bottom: 35px;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .hero-btn {
            padding: 15px 35px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .hero-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(76, 175, 80, 0.5);
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: white;
            color: #333;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
        }

        .btn-secondary:active {
            transform: translateY(-1px);
        }

        /* Coffee cup illustration on the right */
        .coffee-visual {
            position: absolute;
            right: 10%;
            top: 50%;
            transform: translateY(-50%);
            width: 300px;
            height: 300px;
            animation: floatCup 6s ease-in-out infinite;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
        }

        @keyframes floatCup {
            0%, 100% {
                transform: translateY(-50%) rotate(0deg);
            }
            50% {
                transform: translateY(-55%) rotate(5deg);
            }
        }

        .coffee-cup {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .cup-body {
            width: 180px;
            height: 200px;
            background: linear-gradient(135deg, #654321 0%, #4a3319 100%);
            border-radius: 0 0 80px 80px;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.3);
            animation: fillCup 3s ease-in-out infinite;
        }

        @keyframes fillCup {
            0%, 100% {
                transform: translateX(-50%) scaleY(1);
            }
            50% {
                transform: translateX(-50%) scaleY(1.02);
            }
        }

        .cup-handle {
            width: 60px;
            height: 80px;
            border: 15px solid #654321;
            border-left: none;
            border-radius: 0 50px 50px 0;
            position: absolute;
            right: -20px;
            bottom: 80px;
        }

        .coffee-steam {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .steam-line {
            width: 4px;
            height: 60px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
            border-radius: 50%;
            position: absolute;
            animation: steamRise 3s ease-in-out infinite;
        }

        .steam-line:nth-child(1) {
            left: -20px;
            animation-delay: 0s;
        }

        .steam-line:nth-child(2) {
            left: 0;
            animation-delay: 1s;
        }

        .steam-line:nth-child(3) {
            left: 20px;
            animation-delay: 2s;
        }

        @keyframes steamRise {
            0% {
                transform: translateY(0) scaleX(1);
                opacity: 0;
            }
            50% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-80px) scaleX(2);
                opacity: 0;
            }
        }

        @media (max-width: 1024px) {
            .coffee-visual {
                right: 5%;
                width: 250px;
                height: 250px;
            }

            .hero-title {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .coffee-hero {
                min-height: 400px;
                padding: 40px 20px;
            }

            .coffee-visual {
                display: none;
            }

            .coffee-beans {
                width: 100%;
                opacity: 0.3;
            }

            .hero-content {
                max-width: 100%;
                text-align: center;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 15px;
            }

            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .coffee-hero {
                min-height: 350px;
            }

            .hero-title {
                font-size: 28px;
                letter-spacing: 1px;
            }

            .hero-description {
                font-size: 14px;
                line-height: 1.6;
            }

            .hero-btn {
                padding: 12px 28px;
                font-size: 14px;
            }

            .hero-buttons {
                gap: 15px;
            }
        }


         .container {
            width: 100%;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2px;
            background: rgba(255, 255, 255, 0.2);
            padding: 2px;
            border-radius: 12px;
            overflow: hidden;
        }

        .benefit-card {
            background: rgba(76, 145, 96, 0.95);
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .benefit-card:hover::before {
            width: 400px;
            height: 400px;
        }

        .benefit-card:hover {
            background: rgba(82, 156, 103, 0.95);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }

        .icon-wrapper svg {
            width: 100%;
            height: 100%;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            animation: float 3s ease-in-out infinite;
        }

        .benefit-card:nth-child(1) .icon-wrapper svg { animation-delay: 0s; }
        .benefit-card:nth-child(2) .icon-wrapper svg { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) .icon-wrapper svg { animation-delay: 0.4s; }
        .benefit-card:nth-child(4) .icon-wrapper svg { animation-delay: 0.6s; }
        .benefit-card:nth-child(5) .icon-wrapper svg { animation-delay: 0.8s; }
        .benefit-card:nth-child(6) .icon-wrapper svg { animation-delay: 1s; }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .benefit-card:hover .icon-wrapper svg {
            animation: bounce 0.6s ease;
            stroke: #fff;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1) translateY(0); }
            25% { transform: scale(1.1) translateY(-10px); }
            50% { transform: scale(0.95) translateY(0); }
            75% { transform: scale(1.05) translateY(-5px); }
        }

        .benefit-title {
            color: white;
            font-size: 18px;
            font-weight: 500;
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .benefit-card:nth-child(1) .benefit-title { animation-delay: 0.1s; }
        .benefit-card:nth-child(2) .benefit-title { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) .benefit-title { animation-delay: 0.3s; }
        .benefit-card:nth-child(4) .benefit-title { animation-delay: 0.4s; }
        .benefit-card:nth-child(5) .benefit-title { animation-delay: 0.5s; }
        .benefit-card:nth-child(6) .benefit-title { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .benefit-card:hover .benefit-title {
            transform: scale(1.05);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1px;
            }

            .benefit-card {
                padding: 30px 20px;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .benefit-title {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }


         .container2 {
            max-width: 800px;
            margin: 0 auto;
                padding: 30px 0;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            animation: fadeInDown 0.8s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-size: 3rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            color: #1a1a1a;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .filter-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeIn 1s ease 0.3s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .filter-btn {
            padding: 12px 28px;
            border: none;
            border-radius: 25px;
            background: white;
            color: #666;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(76, 145, 96, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .filter-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, #4a8f5f 0%, #5fa877 100%);
            color: white;
            box-shadow: 0 5px 20px rgba(74, 143, 95, 0.4);
        }

        .menu-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
            animation: slideUp 0.8s ease 0.5s both;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            opacity: 0;
            animation: fadeInItem 0.5s ease forwards;
        }

        .menu-item:nth-child(1) { animation-delay: 0.7s; }
        .menu-item:nth-child(2) { animation-delay: 0.8s; }
        .menu-item:nth-child(3) { animation-delay: 0.9s; }
        .menu-item:nth-child(4) { animation-delay: 1s; }
        .menu-item:nth-child(5) { animation-delay: 1.1s; }
        .menu-item:nth-child(6) { animation-delay: 1.2s; }
        .menu-item:nth-child(7) { animation-delay: 1.3s; }
        .menu-item:nth-child(8) { animation-delay: 1.4s; }

        @keyframes fadeInItem {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item:hover {
            background: linear-gradient(90deg, transparent 0%, rgba(74, 143, 95, 0.05) 50%, transparent 100%);
        }

        .menu-item:hover::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60%;
            background: linear-gradient(180deg, #4a8f5f 0%, #5fa877 100%);
            border-radius: 0 4px 4px 0;
            animation: slideInLeft 0.3s ease;
        }

        @keyframes slideInLeft {
            from {
                width: 0;
            }
            to {
                width: 4px;
            }
        }

        .item-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .item-name {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            transition: color 0.3s ease;
        }

        .menu-item:hover .item-name {
            color: #4a8f5f;
        }

        .stars {
            display: flex;
            gap: 3px;
        }

        .star {
            color: #ddd;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .star.filled {
            color: #ffc107;
            animation: starPop 0.4s ease;
        }

        @keyframes starPop {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        .menu-item:hover .star {
            transform: scale(1.1);
        }

        .menu-item:hover .star.filled {
            filter: drop-shadow(0 0 3px rgba(255, 193, 7, 0.6));
        }

        .item-price {
            font-size: 18px;
            font-weight: 600;
            color: #5fa877;
            transition: all 0.3s ease;
        }

        .menu-item:hover .item-price {
            transform: scale(1.1);
            color: #4a8f5f;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .menu-card {
                padding: 25px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .menu-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .item-left {
                width: 100%;
            }

            .item-price {
                align-self: flex-end;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }

            .menu-card {
                padding: 20px;
            }

            .item-name {
                font-size: 16px;
            }

            .item-price {
                font-size: 16px;
            }
        }


         .main-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .info-section {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: slideInView 0.8s ease forwards;
        }

        .info-section:nth-child(1) {
            animation-delay: 0.2s;
        }

        .info-section:nth-child(2) {
            animation-delay: 0.4s;
        }

        @keyframes slideInView {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .info-section:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        }

        .espresso-image-box {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .espresso-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .info-section:hover .espresso-photo {
            transform: scale(1.1) rotate(2deg);
        }

        .espresso-photo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .info-section:hover .espresso-photo-overlay {
            opacity: 1;
        }

        .schedule-panel {
            background: linear-gradient(135deg, #4a8f5f 0%, #5fa877 100%);
            padding: 40px;
            color: white;
        }

        .panel-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
            animation: fadeSlideIn 0.6s ease 0.6s both;
        }

        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .clock-symbol {
            width: 32px;
            height: 32px;
            border: 3px solid white;
            border-radius: 50%;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
        }

        .clock-symbol::before,
        .clock-symbol::after {
            content: '';
            position: absolute;
            background: white;
            border-radius: 2px;
        }

        .clock-symbol::before {
            width: 2px;
            height: 10px;
            top: 4px;
            left: 50%;
            transform: translateX(-50%);
            animation: tickMinute 2s linear infinite;
        }

        .clock-symbol::after {
            width: 2px;
            height: 7px;
            top: 7px;
            left: 50%;
            transform: translateX(-50%);
            animation: tickHour 24s linear infinite;
        }

        @keyframes tickMinute {
            to {
                transform: translateX(-50%) rotate(360deg);
            }
        }

        @keyframes tickHour {
            to {
                transform: translateX(-50%) rotate(360deg);
            }
        }

        .panel-title {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .schedule-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            animation: fadeUp 0.5s ease forwards;
        }

        .schedule-row:nth-child(1) { animation-delay: 0.8s; }
        .schedule-row:nth-child(2) { animation-delay: 0.95s; }
        .schedule-row:nth-child(3) { animation-delay: 1.1s; }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .schedule-row:last-child {
            border-bottom: none;
        }

        .schedule-row:hover {
            padding-left: 10px;
            transition: padding-left 0.3s ease;
        }

        .day-label {
            font-size: 16px;
            font-weight: 500;
        }

        .time-range {
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        .booking-panel {
            background-image: url(pic/kaffa/Container.png);
            background-size: cover;
            background-position: center;
            padding: 40px;
            color: white;
            position: relative;
        }

        .booking-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
            animation: sparkle 20s linear infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.5; }
        }

        .booking-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            animation: fadeSlideIn 0.6s ease 0.6s both;
        }

        .calendar-symbol {
            width: 32px;
            height: 32px;
            border: 3px solid white;
            border-radius: 6px;
            position: relative;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .calendar-symbol::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 6px;
            right: 6px;
            height: 2px;
            background: white;
        }

        .calendar-symbol::after {
            content: '';
            position: absolute;
            top: 14px;
            left: 6px;
            right: 6px;
            height: 2px;
            background: white;
        }

        .booking-title {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .booking-description {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeUp 0.5s ease 0.8s forwards;
        }

        .reserve-button {
            background: linear-gradient(135deg, #4a8f5f 0%, #5fa877 100%);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeUp 0.5s ease 1s forwards;
        }

        .reserve-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .reserve-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .reserve-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74, 143, 95, 0.4);
        }

        .reserve-button:active {
            transform: translateY(-1px);
        }

        @media (max-width: 1024px) {
            .main-wrapper {
                grid-template-columns: 1fr;
            }

            .espresso-image-box {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .schedule-panel,
            .booking-panel {
                padding: 30px;
            }

            .panel-title,
            .booking-title {
                font-size: 20px;
            }

            .schedule-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
                padding: 15px 0;
            }

            .espresso-image-box {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }

            .main-wrapper {
                gap: 20px;
            }

            .schedule-panel,
            .booking-panel {
                padding: 25px;
            }

            .panel-title,
            .booking-title {
                font-size: 18px;
            }
        }

        .testimonial-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
            width: 100%;
        }

        .review-card {
            background: white;
            border-radius: 20px;
            padding: 50px 45px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            animation: cardAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes cardAppear {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .review-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(74, 143, 95, 0.03) 0%, transparent 70%);
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(10%, 10%) scale(1.1);
            }
        }

        .quote-symbol {
            text-align: center;
            margin-bottom: 25px;
            opacity: 0;
            animation: fadeSlideDown 0.6s ease 0.3s forwards;
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quote-icon {
            font-size: 48px;
            color: #5fa877;
            font-weight: bold;
            display: inline-block;
            animation: pulseQuote 2s ease-in-out infinite;
        }

        @keyframes pulseQuote {
            0%, 100% {
                transform: scale(1);
                opacity: 0.7;
            }
            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        .customer-avatar-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeSlideDown 0.6s ease 0.5s forwards;
        }

        .profile-image-container {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #5fa877;
            box-shadow: 0 5px 20px rgba(95, 168, 119, 0.3);
            position: relative;
            animation: avatarPulse 3s ease-in-out infinite;
        }

        @keyframes avatarPulse {
            0%, 100% {
                box-shadow: 0 5px 20px rgba(95, 168, 119, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 8px 30px rgba(95, 168, 119, 0.5);
                transform: scale(1.05);
            }
        }

        .profile-image-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .customer-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .profile-image-container:hover .customer-photo {
            transform: scale(1.15);
        }

        .feedback-text {
            text-align: center;
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            max-width: 600px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeSlideUp 0.6s ease 0.7s forwards;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .rating-stars-container {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeSlideUp 0.6s ease 0.9s forwards;
        }

        .star-icon {
            font-size: 24px;
            color: #ffc107;
            display: inline-block;
            animation: starTwinkle 1.5s ease-in-out infinite;
            filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
        }

        .star-icon:nth-child(1) { animation-delay: 0s; }
        .star-icon:nth-child(2) { animation-delay: 0.2s; }
        .star-icon:nth-child(3) { animation-delay: 0.4s; }
        .star-icon:nth-child(4) { animation-delay: 0.6s; }
        .star-icon:nth-child(5) { animation-delay: 0.8s; }

        @keyframes starTwinkle {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
            50% {
                transform: scale(1.2) rotate(5deg);
                opacity: 0.8;
            }
        }

        .rating-stars-container:hover .star-icon {
            animation: starBounce 0.5s ease;
        }

        @keyframes starBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .reviewer-info {
            text-align: center;
            opacity: 0;
            animation: fadeSlideUp 0.6s ease 1.1s forwards;
        }

        .reviewer-name {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            position: relative;
            display: inline-block;
        }

        .reviewer-name::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4a8f5f, #5fa877);
            transition: width 0.4s ease;
        }

        .review-card:hover .reviewer-name::after {
            width: 100%;
        }

        .customer-status {
            font-size: 14px;
            color: #999;
            font-style: italic;
        }

        .decorative-element {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(74, 143, 95, 0.1), rgba(95, 168, 119, 0.05));
            animation: floatAround 10s ease-in-out infinite;
        }

        .decorative-element:nth-child(1) {
            top: -30px;
            right: -30px;
        }

        .decorative-element:nth-child(2) {
            bottom: -40px;
            left: -40px;
            animation-delay: -5s;
        }

        @keyframes floatAround {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            25% {
                transform: translate(10px, -10px) scale(1.1);
            }
            50% {
                transform: translate(-10px, 10px) scale(0.9);
            }
            75% {
                transform: translate(5px, 5px) scale(1.05);
            }
        }

        @media (max-width: 768px) {
            .review-card {
                padding: 40px 30px;
            }

            .quote-icon {
                font-size: 40px;
            }

            .feedback-text {
                font-size: 15px;
            }

            .profile-image-container {
                width: 70px;
                height: 70px;
            }
        }

        @media (max-width: 480px) {
            .review-card {
                padding: 35px 25px;
            }

            .quote-icon {
                font-size: 36px;
            }

            .feedback-text {
                font-size: 14px;
                line-height: 1.7;
            }

            .star-icon {
                font-size: 20px;
            }

            .reviewer-name {
                font-size: 16px;
            }

            .customer-status {
                font-size: 13px;
            }
        }
        .nav-container {
            background: linear-gradient(135deg, #6b9b7f 0%, #5a8a6e 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-wrapper {
            display: flex;
            animation: scroll 20s linear infinite;
            width: fit-content;
        }

        .nav-content {
            display: flex;
            gap: 60px;
            padding: 0 60px;
            white-space: nowrap;
        }

        .nav-item {
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-item:hover {
            color: #ffffff;
            transform: translateY(-2px);
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffffff;
            transition: width 0.3s ease;
        }

        .nav-item:hover::after {
            width: 100%;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .nav-wrapper:hover {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {
            .nav-content {
                gap: 40px;
                padding: 0 40px;
            }

            .nav-item {
                font-size: 11px;
                letter-spacing: 1.5px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 15px 0;
            }

            .nav-content {
                gap: 30px;
                padding: 0 30px;
            }

            .nav-item {
                font-size: 10px;
                letter-spacing: 1px;
            }
        }


         .articles-section {
                padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }

        .header-title {
            font-size: 42px;
            font-weight: 900;
            letter-spacing: 3px;
            color: #1a1a1a;
            text-transform: uppercase;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .article-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out backwards;
        }

        .article-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .article-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .article-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .card-image-wrapper {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .article-card:hover .card-image {
            transform: scale(1.1);
        }

        .card-content {
            padding: 25px;
        }

        .content-badge {
            display: inline-block;
            background: #5a8a6e;
            color: #ffffff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            animation: pulse 2s ease-in-out infinite;
        }

        .content-heading {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.4;
        }

        .content-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .content-link {
            display: inline-flex;
            align-items: center;
            color: #5a8a6e;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .content-link::after {
            content: '→';
            margin-left: 8px;
            transition: margin-left 0.3s ease;
        }

        .content-link:hover {
            color: #4a7a5e;
        }

        .content-link:hover::after {
            margin-left: 14px;
        }

        .cta-wrapper {
            text-align: center;
            animation: fadeIn 1s ease-out 0.5s backwards;
        }

        .cta-button {
            display: inline-block;
            background: #5a8a6e;
            color: #ffffff;
            padding: 16px 50px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(90, 138, 110, 0.3);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #4a7a5e;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(90, 138, 110, 0.4);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @media (max-width: 1024px) {
            .articles-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }

            .header-title {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 40px 15px;
            }

            .header-title {
                font-size: 30px;
                letter-spacing: 2px;
            }

            .section-header {
                margin-bottom: 35px;
            }

            .articles-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card-content {
                padding: 20px;
            }

            .content-heading {
                font-size: 16px;
            }

            .cta-button {
                padding: 14px 40px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .header-title {
                font-size: 24px;
                letter-spacing: 1.5px;
            }

            .card-image-wrapper {
                height: 180px;
            }

            .content-heading {
                font-size: 15px;
            }

            .content-description {
                font-size: 13px;
            }
        }

        .social-feed-section {
            padding: 60px 20px;
            background: #f9f9f9;
        }

        .feed-header-container {
            text-align: center;
            margin-bottom: 40px;
            animation: slideDown 0.8s ease-out;
        }

        .instagram-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .instagram-icon {
            width: 32px;
            height: 32px;
            margin-right: 12px;
            animation: rotateIn 1s ease-out;
        }

        .instagram-icon svg {
            width: 100%;
            height: 100%;
            fill: #1a1a1a;
        }

        .follow-heading {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: inline-block;
        }

        .follow-subtext {
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }

        .gallery-grid-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .gallery-item-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            animation: zoomIn 0.6s ease-out backwards;
        }

        .gallery-item-wrapper:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item-wrapper:nth-child(2) { animation-delay: 0.15s; }
        .gallery-item-wrapper:nth-child(3) { animation-delay: 0.2s; }
        .gallery-item-wrapper:nth-child(4) { animation-delay: 0.25s; }
        .gallery-item-wrapper:nth-child(5) { animation-delay: 0.3s; }
        .gallery-item-wrapper:nth-child(6) { animation-delay: 0.35s; }

        .gallery-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
        }

        .overlay-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(90, 138, 110, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .overlay-icon {
            color: #ffffff;
            font-size: 40px;
            transform: scale(0.5);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .gallery-item-wrapper:hover .gallery-photo {
            transform: scale(1.15);
        }

        .gallery-item-wrapper:hover .overlay-effect {
            opacity: 1;
        }

        .gallery-item-wrapper:hover .overlay-icon {
            transform: scale(1);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0);
            }
            to {
                opacity: 1;
                transform: rotate(0) scale(1);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @media (max-width: 1200px) {
            .gallery-grid-container {
                grid-template-columns: repeat(5, 1fr);
            }

            .gallery-item-wrapper:nth-child(6) {
                display: none;
            }
        }

        @media (max-width: 992px) {
            .gallery-grid-container {
                grid-template-columns: repeat(4, 1fr);
            }

            .gallery-item-wrapper:nth-child(5),
            .gallery-item-wrapper:nth-child(6) {
                display: none;
            }

            .follow-heading {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .social-feed-section {
                padding: 40px 15px;
            }

            .gallery-grid-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-item-wrapper:nth-child(n+4) {
                display: none;
            }

            .follow-heading {
                font-size: 20px;
            }

            .follow-subtext {
                font-size: 13px;
            }

            .instagram-icon {
                width: 28px;
                height: 28px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2px;
            }

            .gallery-item-wrapper:nth-child(n+3) {
                display: none;
            }

            .follow-heading {
                font-size: 18px;
            }

            .feed-header-container {
                margin-bottom: 30px;
            }
        }

        /* Add hover effect on mobile - tap to see */
        @media (hover: none) {
            .gallery-item-wrapper:active .overlay-effect {
                opacity: 1;
            }

            .gallery-item-wrapper:active .overlay-icon {
                transform: scale(1);
            }
        }

         /* Footer */
        footer {
          font-family: hind;
            background-color: #1a1a1a;
            color: white;
            padding: 60px 50px 30px;
        }

        .newsletter {
            max-width: 600px;
            margin-bottom: 60px;
            animation: fadeIn 1s ease;
        }

        .newsletter h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .newsletter p {
            color: #999;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid #333;
            background-color: #2a2a2a;
            color: white;
            border-radius: 5px;
        }

        .newsletter-form button {
            padding: 15px 30px;
            background-color: #5a9f6f;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background-color: #4a8f5f;
            transform: scale(1.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-section p, .footer-section a {
            color: #999;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #5a9f6f;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: #5a9f6f;
            border-color: #5a9f6f;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            color: #666;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #5a9f6f;
        }

        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }