/* 
==============================================
FARMTECH CSS - STREAMLINED STYLES
==============================================
TABLE OF CONTENTS:
1. Global Styles & Variables
2. Typography & Utilities 
3. Layout & Container
4. Header & Navigation
5. Buttons & CTAs (Consolidated)
6. Page Heroes (Consolidated)
7. Page-Specific Content
   - Homepage
   - Features Page
   - Pricing Page
   - About Page
   - Contact Page
   - Tutorials Page
8. Common Components
   - Cards
   - Forms
   - FAQ Section
   - CTA Section 
9. Footer (Consolidated)
10. Animations
11. Media Queries (Consolidated)
==============================================
*/

/* 1. Global Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary: #78C154;
    --secondary: #07262D;
    --accent:rgb(255, 255, 255);
    --light: #ffffff;
    --dark: #333333;
    --gray: #f5f5f5;
    --popular: #FF9F43;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary);
    color: var(--dark);
    overflow-x: hidden;
}

/* 2. Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
}

/* 3. Layout & Container */
.container {
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title - Consolidated */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark);
}

/* Dark background section title */
.bg-dark .section-title h2,
.section-title--light h2 {
    color: var(--light);
}

.bg-dark .section-title p,
.section-title--light p {
    color: var(--accent);
}

/* 4. Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 38, 45, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--accent);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent);
    cursor: pointer;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* 5. Buttons & CTAs - Consolidated */
/* Base Button Class */
.button, 
.cta-button, 
.secondary-button,
.signup-button,
.contact-button,
.form-submit,
.tutorial-link {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

/* Primary Button Style */
.button--primary,
.cta-button {
    background-color: var(--primary);
    color: var(--secondary);
}

.button--primary:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #8fd66b;
}

/* Secondary Button Style */
.button--secondary,
.secondary-button {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.button--secondary:hover,
.secondary-button:hover {
    background-color: var(--light);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Signup Button (Pricing) */
.signup-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary);
    color: var(--light);
    font-size: 1rem;
}

.signup-button:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Contact Button */
.contact-button {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary);
    color: var(--light);
    font-size: 1rem;
}

.contact-button:hover {
    background-color: #0e3946;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Form Submit Button */
.form-submit {
    width: 100%;
    padding: 12px 25px;
    background-color: var(--primary);
    color: var(--light);
    font-size: 1rem;
}

.form-submit:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Homepage Hero - Special case for two-column layout */
.hero-home {
    padding: 120px 0 60px;
    background-image: url('images/288A1989-Edit-2.jpg');
    text-align: left; /* Override the center alignment from page-hero */
}


.home-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(-2deg) translateY(-10px);
}

/* Feature Preview in Hero */
.features-preview {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

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

.feature-text h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
}

/* Responsive styles for homepage hero */
@media (max-width: 992px) {
    .home-hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 90%;
    }
    
    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-home {
        padding: 100px 0 50px;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Unified Hero Section Styling */

/* Base Hero Section - This is the main class to use on all pages */
.page-hero {
    position: relative;
    padding: 200px 0 150px;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 0 20px 20px;
    color: #fff;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
      url(images/288A1989-Edit-2.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    z-index: 0;
    transform: scale(1.05);

  }
  

/* Hero content container */
.hero-content {
    position: relative;
    z-index: 2; /* Above the overlay */
    max-width: 800px;
    margin: 0 auto;
}

/* Hero headings */
.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

/* Hero paragraph */
.page-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 auto 30px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA button in hero */
.page-hero .cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.page-hero .cta-button:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* Additional classes for specific pages - add background images */
.hero-about {
    background-image: url('images/about-hero.jpg');
}

.hero-contact {
    background-image: url('images/field-of-young-corn-and-farms-on-rolling-hills-at-2025-01-07-12-36-11-utc.jpg');
}

.hero-features {
    background-image: url('images/lines-of-sectors-of-cereal-crop-wheat-varieties-pl-2025-01-09-18-38-49-utc.JPG');
}

.hero-pricing {
    background-image: url('images/tractor-plowing-field-agriculture-and-scenic-natu-2025-02-09-07-16-10-utc.jpeg');
}

.hero-tutorials {
    background-image: url('images/DJI_20250325153812_0276_D-2.jpg');
}

/* Optional gradient overlay for a more premium look */
.gradient-overlay::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Feature navigation styling that appears after hero on some pages */
.feature-nav {
    background-color: #fff;
    border-radius: 50px;
    margin-top: -25px;
    position: relative;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.feature-nav-item {
    margin: 0;
    padding: 0;
}

.feature-nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.feature-nav-link:hover,
.feature-nav-link.active {
    color: var(--primary);
}

/* Animation classes for hero content */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-hero {
        padding: 150px 0 80px;
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 70px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .feature-nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .feature-nav-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 5px;
    }
    
    .feature-nav-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* 7. Page-Specific Content */
/* 7.1 Homepage Specific */
/* Tagline Section */
.tagline {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px ;
    background-color: var(--secondary);
}

.tagline img {
    max-width: 80%;
    margin: 0 auto;
    animation: pulse 2s infinite ease-in-out;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--accent);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.1);
}

.feature-card-content {
    padding: 25px;
    flex: 1;
}

.feature-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    background-color: var(--light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(120, 193, 84, 0.2);
    position: absolute;
}

.testimonial-text::before {
    top: -40px;
    left: -20px;
}

.testimonial-text::after {
    bottom: -80px;
    right: -20px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary);
}

.author-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #777;
}

/* 7.2 Pricing Page Specific */
/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.toggle-option {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
}

.toggle-option.active {
    color: var(--light);
    background-color: var(--secondary);
    border-radius: 30px;
}

/* Pricing Cards Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--popular);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--popular);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.card-header {
    padding: 30px 20px;
    text-align: center;
    background-color: rgba(120, 193, 84, 0.1);
}

.card-header img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: block;
}

.card-header h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.price-container {
    margin: 20px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.7;
}

.card-body {
    padding: 30px;
    flex: 1;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.setup-fee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.card-footer {
    padding: 0 30px 30px;
}

/* 7.3 Features Page Specific */
/* Feature Categories Navigation */
.feature-nav {
    background-color: var(--light);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 80px;
}

.feature-nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0 30px;
}

.feature-nav-item {
    margin: 0 15px;
}

.feature-nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.feature-nav-link:hover, .feature-nav-link.active {
    background-color: var(--primary);
    color: var(--light);
}

/* Feature Sections */
.feature-section {
    padding: 80px 0;
    position: relative;
}

.feature-section:nth-child(odd) {
    background-color: var(--secondary);
}

.feature-section:nth-child(even) {
    background-color: #0a2f39;
}

.feature-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(120, 193, 84, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.feature-section:nth-child(odd)::before {
    top: -150px;
    right: -150px;
}

.feature-section:nth-child(even)::before {
    bottom: -150px;
    left: -150px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--accent);
    line-height: 1.6;
}

.feature-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-section:nth-child(even) .feature-content {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    padding: 0 50px;
}

.feature-section:nth-child(odd) .feature-text {
    padding-left: 0;
}

.feature-section:nth-child(even) .feature-text {
    padding-right: 0;
}

.feature-heading {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-description {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list-item {
    color: var(--light);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.feature-list-item::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-image {
    flex: 1;
    text-align: center;
}

.feature-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}

.feature-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.3);
}

/* Sub-features Grid */
.sub-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.sub-feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.sub-feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.sub-feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(120, 193, 84, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.sub-feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.sub-feature-description {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.6;
}

/* 7.4 About Page Specific */
/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1440px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.partner-section .section-title h2 {
    color: var(--light);
}

.partner-section .section-title p {
    color: var(--accent);
}

.partner-content {
    background-color: var(--light);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
}

.partner-logo {
    width: 200px;
}

.partner-info h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.partner-info p {
    font-size: 1.1rem;
    color: var(--dark);
}

.partner-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 30px;
}

.specialties {
    margin-top: 30px;
}

.specialties h4 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.specialty-item {
    background-color: rgba(120, 193, 84, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    background-color: rgba(120, 193, 84, 0.2);
}

.specialty-item h5 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.partner-contact {
    background-color: rgba(7, 38, 45, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.partner-contact h4 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item p {
    font-size: 1rem;
    color: var(--dark);
}

.contact-address {
    grid-column: 1 / -1;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

.team-container {
    background-color: var(--light);
    border-radius: 20px;
    padding: 60px;
}

.team-title {
    text-align: center;
    margin-bottom: 60px;
}

.team-title h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.team-title p {
    font-size: 1.1rem;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background-color: var(--gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.team-info h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--light);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: var(--light);
    border: 4px solid var(--primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--gray);
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
}

.timeline-date {
    display: inline-block;
    background-color: var(--primary);
    color: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background-color: var(--primary);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1440px;
    text-align: center;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.vision-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 40px;
}

/* 7.5 Contact Page Specific */
/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
    border-radius: 20px;
    margin: 120px auto;
    max-width: 1440px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section {
    padding-right: 30px;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.contact-info-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 30px;
}

.contact-method {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(120, 193, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary);
}

.office-hours {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(120, 193, 84, 0.1);
    border-radius: 10px;
}

.office-hours h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--dark);
}

/* Contact Form */
.contact-form {
    background-color: var(--gray);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(120, 193, 84, 0.2);
}

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

/* Map Section */
.map-section {
    padding: 0;
    margin: 120px auto;
    max-width: 1200px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

/* 7.6 Tutorials Page Specific */
/* Tutorial Card Styles */
.tutorial-category {
    margin-bottom: 60px;
    padding-top: 40px;
}

.category-header {
    margin-bottom: 30px;
    text-align: center;
}

.category-header h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.tutorial-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tutorial-video {
    flex: 0 0 40%;
    position: relative;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    aspect-ratio: 16/9;
}

.video-placeholder.hover .placeholder-image,
.video-placeholder:hover .placeholder-image {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #78C154;
    font-size: 24px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-placeholder.hover .play-button,
.video-placeholder:hover .play-button {
    background-color: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.tutorial-content {
    flex: 0 0 60%;
    padding: 25px;
}

.tutorial-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary);
}

.video-duration {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.tutorial-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.tutorial-topics {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.topic-tag {
    background-color: #f0f8ff;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tutorial-link {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.tutorial-link:hover {
    background-color: var(--secondary);
}

/* Resources Section */
.additional-resources {
    background-color: #f9f9f9;
    padding: 80px 0;
}

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

.resource-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
}

.resource-icon {
    margin-bottom: 20px;
}

.resource-icon img {
    width: 60px;
    height: auto;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.resource-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.resource-link:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.resource-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* 8. Common Components */
/* CTA Section - Consolidated */
.cta-section {
    padding: 0;
    margin: 100px auto;
    max-width: 1440px;
    position: relative;
    background-image: url('images/close-up-of-grape-rows-at-vineyard-in-south-styria-2024-10-16-02-18-14-utc copy.jpg'); /* Default image */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 38, 45, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Special CTA backgrounds for different pages */
.homepage .cta-section {
    background-image: url('images/redgrapes16x9.jpg');

}

.pricing-page .cta-section {
    background-image: url('images/organic-vegetables-for-good-health-2025-03-26-12-52-52-utc.jpg');
}

.features-page .cta-section {
    background-image: url('images/Capsicum-YellowV2.jpg');
}

/* FAQ Section - Consolidated */
.faq-section {
    padding: 80px 0;
    background-color: var(--secondary);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.faq-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--accent);
}

.faq-item {
    background-color: var(--light);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--dark);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--dark);
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: rgba(120, 193, 84, 0.1);
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Features page specific FAQ styling */
.features-page .faq-section {
    background-color: initial;
}

.features-page .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.features-page .faq-item {
    background-color: rgba(255, 255, 255, 0.05);
}

.features-page .faq-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.features-page .faq-question {
    color: var(--light);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 30px;
}

.features-page .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.features-page .faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.features-page .faq-answer {
    padding: 0 30px;
}

.features-page .faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 500px;
}

.features-page .faq-answer p {
    color: var(--accent);
}

/* Contact page specific FAQ styling */
.contact-page .faq-section {
    background-color: var(--light);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1440px;
}

.contact-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.contact-page .faq-item {
    background-color: var(--gray);
    padding: 30px;
    border-radius: 10px;
}

.contact-page .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-page .faq-item h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-page .faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
}

/* 9. Footer - Consolidated */
footer {
    background-color: var(--primary);
    padding: 60px 0 20px;
}

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

.footer-logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary);
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--light);
    padding-left: 5px;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-contact .contact-info {
    margin-bottom: 20px;
}

.footer-contact .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--secondary);
}

.footer-contact .contact-info p i {
    margin-right: 10px;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: var(--accent);
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(7, 38, 45, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* 10. Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 11. Media Queries - Consolidated */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .pricing-card.popular {
        grid-column: 1 / span 1;
    }
    
    .timeline-container::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 18px;
    }
    
    .timeline-right {
        left: 0;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .page-header h1, .hero-text h1 {
        font-size: 3rem;
    }
    
    .feature-heading {
        font-size: 1.8rem;
    }
    
    .feature-card-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-section {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .features-preview {
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .feature-nav-item {
        margin: 5px;
    }
    
    .feature-content {
        flex-direction: column !important;
    }
    
    .feature-text, .feature-section:nth-child(odd) .feature-text, .feature-section:nth-child(even) .feature-text {
        padding: 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .feature-list-item {
        padding-left: 0;
        padding-top: 25px;
        text-align: center;
    }
    
    .feature-list-item::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .partner-header {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-content {
        padding: 30px;
    }
    
    .pricing-hero h1, .about-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--secondary);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tutorial-card {
        flex-direction: column;
    }
    
    .tutorial-video, .tutorial-content {
        flex: 0 0 100%;
    }
    
    .video-placeholder {
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }
    
    .partner-contact {
        padding: 20px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
}
.promo-video-section {
    padding: 80px 0;
    background-color: var(--light-bg);
  }
  
  .video-card-large {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }
  
  .video-card-large .tutorial-video {
    width: 100%;
  }
  
  .video-card-large .video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .video-card-large .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .video-card-large .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(var(--primary-rgb), 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s ease;
    z-index: 2;
  }
  
  .video-card-large .video-placeholder:hover .placeholder-image {
    transform: scale(1.05);
  }
  
  .video-card-large .video-placeholder:hover .play-button {
    background-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .video-card-large .video-title {
    padding: 20px;
    text-align: center;
  }
  
  .video-card-large .video-title h4 {
    margin: 0 0 10px;
    font-size: 20px;
    color: var(--text-dark);
  }
  
  .video-card-large .video-duration {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
  }
  
  /* For mobile screens */
  @media (max-width: 768px) {
    .video-card-large .play-button {
      width: 60px;
      height: 60px;
      font-size: 24px;
    }
  }