/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, .nav-logo span {
    font-family: 'Playfair Display', serif;
}

body {
    background-color: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary: #006B5E;
    --primary-light: #00A896;
    --primary-dark: #004a41;
    --accent: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #607D8B;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --section-bg-1: #f0f7f6; /* Light mint */
    --section-bg-2: #ffffff; /* White */
    --section-bg-3: #e8f3f1; /* Lighter mint */
    --gradient-1: linear-gradient(135deg, #006B5E, #004a41);
    --gradient-2: linear-gradient(45deg, #00A896, #006B5E);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-strong: 0 15px 40px rgba(0,0,0,0.12);
}

/* Navigation */
.navbar {
    background-color: #006B5E;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo img {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo-text {
    display: flex;
    align-items: center;
}

.logo-text .dhruv {
    color: #2e2c2c;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text .ai {
    color: rgb(69, 133, 69);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-logo span {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

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

.nav-item {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: white;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-contact {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-contact:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s;
    z-index: 1001;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-btn:active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    background: var(--section-bg-2);
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Vision Section */
.intro-section {
    padding: 6rem 5%;
    /* background: var(--gradient-1); */
    /* color: white; */
    position: relative;
    overflow: hidden;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision-content h2 {
    color: var(--primary) !important;
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-align: center;
    
}

.vision-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

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

.vision-card {
    background: #035a4f;
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    background: var(--gradient-1);
}

.vision-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.vision-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.vision-description {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2.5rem;
    background: var(--gradient-1);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.vision-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

/* Features Section */
.features-section {
    padding: 5rem 5%;
    background: var(--section-bg-2);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.features-container h2 {
    color: var(--primary) !important;
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.features-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}



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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

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

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 5rem 5%;
    background: var(--section-bg-1);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-container h2 {
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

/* Process Section */
.mission-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.process-container h2 {
    color: var(--primary);
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.process-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.workflow-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 20px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.workflow-item {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: visible;
}

.workflow-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 1;
}

.workflow-item:last-child::before {
    display: none;
}

.workflow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.workflow-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.workflow-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.workflow-item:hover .workflow-icon img {
    transform: scale(1.1) rotate(5deg);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 3px solid white;
}

.workflow-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.workflow-item:hover h3 {
    color: var(--primary);
}

.workflow-item p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Styles */
@media (max-width: 1200px) {
    .workflow-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .workflow-item::before {
        width: 20px;
        right: -20px;
    }
}

@media (max-width: 992px) {
    .workflow-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 15px;
    }

    .process-container h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .workflow-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 10px;
    }

    .workflow-item {
        padding: 30px 20px;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .workflow-item::before {
        display: none;
    }

    .workflow-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -12px;
        right: -12px;
    }

    .workflow-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .workflow-item p {
        font-size: 0.95rem;
    }
}

/* Animation for workflow items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workflow-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.workflow-item:nth-child(1) { animation-delay: 0.1s; }
.workflow-item:nth-child(2) { animation-delay: 0.2s; }
.workflow-item:nth-child(3) { animation-delay: 0.3s; }
.workflow-item:nth-child(4) { animation-delay: 0.4s; }
.workflow-item:nth-child(5) { animation-delay: 0.5s; }

/* Accessibility Improvements */
.workflow-item:focus-within {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Touch Device Optimizations */
@media (hover: none) {
    .workflow-item {
        transform: none !important;
    }

    .workflow-item:active {
        background: #f8f9fa;
    }

    .workflow-icon img {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .mission-section {
        background: none;
        padding: 20px;
    }

    .workflow-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .workflow-item::before {
        display: none;
    }
}

/* Components Section */
.components-section {
    padding: 5rem 5%;
    background: var(--section-bg-2);
}

.components-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.components-section h2 {
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.components-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.component-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.component-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: var(--section-bg-1);
    padding: 1.5rem;
}

.component-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}

.specs-list {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    flex-grow: 1;
}

.specs-list li {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.specs-list li:last-child {
    border-bottom: none;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, #004a41 0%, #006B5E 50%, #004a41 100%);
    color: white;
    padding: 4rem 5% 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 168, 150, 0.1) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(0, 168, 150, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-logo {
    height: 60px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.footer-logo:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.footer-logo-section h3 {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

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

.contact-info-footer .info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: white;
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-footer .info-item:hover {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-info-footer .info-item i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    width: 24px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.contact-info-footer .info-item:hover i {
    transform: scale(1.1) rotate(-5deg);
    color: var(--accent);
}

.contact-info-footer .info-item p {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent) 50%, 
        transparent 100%
    );
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Section Wave Separator */
.section-wave {
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23006B5E' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -1px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Mobile Carousel for Process */
.progress-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 107, 94, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Mobile Optimizations */
@media (max-width: 1200px) {
    .components-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .workflow-container {
        gap: 2rem;
    }

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

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

    .vision-content h2 {
        font-size: 2.8rem;
    }

    .vision-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation Improvements */
    .navbar {
        padding: 0.8rem 1rem;
        height: 70px;
    }

    .nav-logo img {
        height: 35px;
    }

    .logo-text .dhruv,
    .logo-text .ai {
        font-size: 1.5rem;
    }

    .menu-btn {
        display: flex !important;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .menu-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .menu-btn i {
        font-size: 1.2rem;
        color: white;
        transition: transform 0.3s ease;
    }

    .menu-btn.active i {
        transform: rotate(90deg);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 107, 94, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
    }

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

    .nav-item {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

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

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Hero Section Improvements */
    .hero-section {
        padding: 100px 1rem 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .main-image {
        max-width: 90%;
        margin: 0 auto;
    }

    /* Vision Section Improvements */
    .intro-section {
        padding: 3rem 1rem;
    }

    .vision-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-card {
        padding: 1.5rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .vision-card i {
        font-size: 2rem;
        margin-bottom: 0;
    }

    .vision-description {
        padding: 1.5rem;
        margin-top: 2rem;
        font-size: 0.95rem;
    }

    /* Process Section Improvements */
    .mission-section {
        padding: 3rem 1rem;
    }

    .process-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .workflow-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0.5rem;
        gap: 1rem;
        margin: -1rem -0.5rem;
    }

    .workflow-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 1.5rem;
        min-height: auto;
    }

    .workflow-icon {
        width: 80px;
        height: 80px;
    }

    .workflow-item h3 {
        font-size: 1.2rem;
        margin: 1rem 0 0.5rem;
    }

    .workflow-item p {
        font-size: 0.9rem;
    }

    /* Disease Grid Improvements */
    .disease-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .disease-card {
        margin-bottom: 1rem;
    }

    .disease-image {
        height: 220px;
        padding: 8px;
    }

    .disease-info {
        padding: 1.5rem;
    }

    .disease-info h3 {
        font-size: 1.2rem;
    }

    .pesticide-recommendation {
        padding: 1.2rem;
    }

    /* Components Section Improvements */
    .components-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .component-card {
        padding: 1.5rem;
    }

    .component-card img {
        height: 120px;
    }

    /* Team Section Improvements */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .team-card {
        margin-bottom: 1rem;
    }

    .member-image {
        height: 200px;
    }

    /* Footer Improvements */
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .contact-info-footer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        padding: 1rem;
        justify-content: flex-start;
    }

    /* Touch Interaction Improvements */
    .disease-card,
    .component-card,
    .team-card,
    .vision-card {
        -webkit-tap-highlight-color: transparent;
    }

    .disease-card:active,
    .component-card:active,
    .team-card:active,
    .vision-card:active {
        transform: scale(0.98);
    }

    /* Loading States */
    .disease-card.loading {
        min-height: 400px;
    }

    /* Scroll Indicators */
    .workflow-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) var(--scroll), transparent 0);
        --scroll: 0%;
    }

    /* Progress Dots */
    .progress-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 107, 94, 0.2);
        transition: all 0.3s ease;
    }

    .dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

    /* Accessibility Improvements */
    .nav-item:focus,
    .social-link:focus,
    .info-item:focus {
        outline: 2px solid white;
        outline-offset: -2px;
    }

    /* Font Size Adjustments */
    body {
        font-size: 16px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }
    p { font-size: 1rem; }

    /* Button and Interactive Elements */
    .menu-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    .menu-btn i {
        font-size: 1.2rem;
    }

    /* Form Elements */
    input, 
    button, 
    select, 
    textarea {
        font-size: 16px !important;
    }
}

/* Tablet Improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

/* Additional Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    .hero-section,
    .intro-section,
    .mission-section {
        padding: 20px 0;
    }

    .vision-card,
    .workflow-item,
    .disease-card {
        break-inside: avoid;
    }
}

/* AIModel Section Styles */

.aimodel-section {
    padding: 100px 20px;

    position: relative;
    overflow: hidden;
}


.aimodel-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}


.aimodel-container h2 {
    color: var(--primary) !important;
    margin-bottom: 50px;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.aimodel-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.aimodel-description {
    text-align: center;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 0 20px;
}

.disease-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.disease-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.disease-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.disease-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.disease-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.disease-card:hover .disease-image img {
    transform: scale(1.08);
}

.damage-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.disease-card:hover .damage-overlay {
    transform: scale(1.05);
}

.disease-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.disease-info h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.disease-info p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pesticide-recommendation {
    margin-top: auto;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.disease-card:hover .pesticide-recommendation {
    transform: translateY(-5px);
}

.pesticide-recommendation h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pesticide-recommendation h4::before {
    content: '💊';
    font-size: 1.3rem;
}

.pesticide-recommendation p {
    color: #495057;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.application {
    color: #2ea44f !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.application::before {
    content: '🕒';
    font-size: 1.2rem;
}

.damage-scale {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.damage-scale h3 {
    color: #2c3e50;
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.damage-scale h3::before {
    content: '📊';
    font-size: 2rem;
}

.scale-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.scale-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.scale-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.scale-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.scale-color.low {
    background: linear-gradient(145deg, #2ecc71, #27ae60);
}

.scale-color.medium {
    background: linear-gradient(145deg, #f1c40f, #f39c12);
}

.scale-color.high {
    background: linear-gradient(145deg, #e67e22, #d35400);
}

.scale-color.severe {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.scale-item span {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .disease-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .disease-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .disease-card.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .aimodel-section {
        padding: 60px 15px;
    }

    .aimodel-section h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .aimodel-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .disease-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .disease-image {
        height: 220px;
        padding: 8px;
    }

    .disease-info {
        padding: 25px;
    }

    .damage-scale {
        padding: 30px 20px;
        margin-top: 50px;
    }

    .scale-container {
        gap: 20px;
    }

    .scale-item {
        padding: 10px 20px;
    }
}

/* Accessibility Improvements */
.disease-card:focus-within {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

.disease-card a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Animation for card entrance */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.disease-card {
    animation: cardEntrance 0.5s ease-out forwards;
}

/* Hover states for interactive elements */
.disease-card:hover .disease-info h3 {
    color: var(--primary);
}

/* Loading state improvements */
.disease-card.loading {
    opacity: 1;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

/* Print styles */
@media print {
    .aimodel-section {
        background: none;
        padding: 20px;
    }
    
    .disease-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .damage-scale {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        margin-top: 40px;
    }
} * Hero Section */
.hero-section {
    min-height: 90vh;
    background: var(--section-bg-2);
    padding: 120px 0 60px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: #006B5E;
    display: block;
    font-size: 4rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-container {
        flex-direction: column-reverse;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #2C3E50;
    }

    .hero-content h1 .highlight {
        font-size: 2.8rem;
        margin-top: 0.5rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1.5rem auto;
        max-width: 100%;
        color: #607D8B;
    }

    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 50%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
        padding: 0 3rem;
    }

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

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

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 400px;
    }
} 

.aimodel-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

.aimodel-container h2 {
    color: #2C3E50;
    font-size: 2rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.aimodel-container p {
    color: #34495E;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

/* Form styles optimized for mobile */
.disease-input-form {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 1rem;
    width: auto;
    transition: transform 0.3s ease;
}

.disease-input-form h3 {
    color: #2C3E50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2C3E50;
    font-weight: 600;
    font-size: 1rem;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #006B5E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 107, 94, 0.1);
}

.submit-btn {
    background: #006B5E;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    touch-action: manipulation;
}

.submit-btn:active {
    transform: scale(0.98);
    background: #005248;
}

/* Results section optimized for mobile */
.treatment-results {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 1rem;
    width: auto;
    animation: fadeIn 0.5s ease;
}

.results-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.damage-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.damage-label {
    color: #2C3E50;
    font-weight: 600;
    font-size: 1.1rem;
}

.damage-value {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
    background: #fff5f5;
    border-radius: 8px;
}

.pesticide-recommendations,
.application-timing,
.precautions {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.pesticide-recommendations h4,
.application-timing h4,
.precautions h4 {
    color: #2C3E50;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.pesticide-recommendations ul li,
.precautions ul li {
    color: #34495E;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.4;
}

/* Tablet and desktop styles */
@media (min-width: 768px) {
    .aimodel-container {
        max-width: 1200px;
        padding: 2rem;
    }

    .aimodel-container h2 {
        font-size: 2.5rem;
    }

    .aimodel-container p {
        font-size: 1.1rem;
    }

    .disease-input-form,
    .treatment-results {
        padding: 2.5rem;
        margin: 2rem auto;
        max-width: 800px;
    }

    .form-group select,
    .form-group input {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .submit-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }

    .damage-info {
        padding: 1.5rem;
    }

    .damage-label {
        font-size: 1.2rem;
    }

    .damage-value {
        font-size: 1.4rem;
    }

    .pesticide-recommendations h4,
    .application-timing h4,
    .precautions h4 {
        font-size: 1.3rem;
    }

    .pesticide-recommendations ul li,
    .precautions ul li {
        font-size: 1.1rem;
    }
}

/* Hide disease grid */
.disease-grid {
    display: none;
}

/* Add smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Improve touch targets */
button, select, input {
    min-height: 44px;
    min-width: 44px;
}

/* Add loading state for submit button */
.submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Add focus styles for better accessibility */
:focus {
    outline: 2px solid #006B5E;
    outline-offset: 2px;
}

/* Add active state for better touch feedback */
.submit-btn:active,
.form-group select:active,
.form-group input:active {
    transform: scale(0.98);
}

.disease-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.disease-image {
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.disease-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.disease-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.disease-info h3 {
    color: #2C3E50;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.damage-percentage {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pesticide-info {
    margin-top: 1rem;
}

.pesticide-info h4 {
    color: #2C3E50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pesticide-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.pesticide-info ul li {
    color: #34495E;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    padding-left: 1.5rem;
    position: relative;
}

.pesticide-info ul li:before {
    content: "•";
    color: #006B5E;
    position: absolute;
    left: 0;
}

.application-time {
    margin: 1rem 0;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.application-time h4 {
    color: #2C3E50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.application-time p {
    color: #34495E;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.precautions {
    margin-top: 1rem;
}

.precautions h4 {
    color: #2C3E50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.precautions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.precautions ul li {
    color: #34495E;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    padding-left: 1.5rem;
    position: relative;
}

.precautions ul li:before {
    content: "⚠";
    color: #e74c3c;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .disease-image {
        height: 200px;
        padding: 8px;
    }

    .disease-info {
        padding: 1rem;
    }

    .disease-info h3 {
        font-size: 1.2rem;
    }

    .pesticide-info h4,
    .application-time h4,
    .precautions h4 {
        font-size: 1rem;
    }

    .pesticide-info ul li,
    .application-time p,
    .precautions ul li {
        font-size: 0.9rem;
    }
} 