/* Base Styles */
:root {
    --primary-color: #2e7d32;
    --secondary-color: #81c784;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --dark-green: #1b5e20;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    z-index: 1001;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.5s ease;
}

.nav-links ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
    }

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

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
    }

    .nav-links a::after {
        width: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 50%;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section */
.about {
    background-color: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 60px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 20px;
}

/* Resources Section */
.resources-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.resources-title {
    font-size: 1.8rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 10px;
}

.resources-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.resource-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid #eee;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.resource-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.resource-content {
    flex: 1;
}

.resource-content h4 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 8px;
}

.resource-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.download-btn i {
    margin-right: 8px;
}

.download-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Key Contacts Section */
.key-contacts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.key-contacts .section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.key-contacts .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.contact-person {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.contact-person:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.contact-icon {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

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

.contact-details .designation {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-details .phone {
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 500;
}

.contact-details .phone i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.contact-details .phone a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive styles for contacts section */
@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-person {
        padding: 20px;
    }
}

/* Responsive styles for resources section */
@media (max-width: 768px) {
    .resources-section {
        padding: 25px 20px;
    }
    
    .resources-title {
        font-size: 1.5rem;
    }
    
    .resource-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }
    
    .resource-icon {
        margin: 0 0 15px 0;
    }
}

@media (max-width: 576px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        text-align: left;
        align-items: flex-start;
    }
    
    .resource-icon {
        margin: 0 15px 0 0;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-grid .product-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    mix-blend-mode: multiply;
}

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

.product-info {
    padding: 25px 30px 30px;
    position: relative;
}

.product-info h3 {
    color: var(--dark-green);
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-tagline {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px;
}

.product-info p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-features {
    margin: 0 0 25px 0;
    padding: 0;
    list-style: none;
}

.product-features li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.product-features i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
    font-size: 0.8rem;
}

.product-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background-color: #f9fafb;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.contact-text h3 {
    margin: 0 0 10px;
    color: #1f2937;
    font-size: 1.25rem;
}

.contact-text p, 
.contact-text a {
    margin: 5px 0 0;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.business-hours {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.business-hours h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 10px;
}

.business-hours h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours span {
    font-weight: 600;
    color: #1f2937;
    margin-right: 10px;
}

.social-media {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.social-media h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 1.25rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: sticky;
    top: 30px;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #1f2937;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

/* Phone Input with Country Code */
.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.phone-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.country-code {
    padding: 0 12px;
    background-color: #f0f0f0;
    color: #4b5563;
    font-weight: 500;
    border-right: 1px solid #e5e7eb;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.phone-input-group .form-control {
    border: none;
    border-radius: 0;
    padding-left: 12px;
    background-color: transparent;
    box-shadow: none;
}

.phone-input-group .form-control:focus {
    box-shadow: none;
}

.hint {
    display: block;
    margin-top: 6px;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Form Status Messages */
.form-status {
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.success-message {
    background-color: #f0fdf4;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.error-message {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.success-message i,
.error-message i {
    font-size: 1.25rem;
    margin-top: 0.15em;
}

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

/* Loading spinner for submit button */
.fa-spinner {
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

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

/* Disabled button state */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Control Focus State */
.form-control:focus {
    border-color: var(--primary-color);
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Form Validation */
.form-control.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-control.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Success Message */
.success-message {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

.success-message i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #065f46;
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.success-message p {
    color: #047857;
    margin: 0;
    line-height: 1.5;
}

/* Loading state */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

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

.form-submit {
    margin-top: 30px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.form-note {
    margin: 15px 0 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        position: static;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .about-image {
        order: -1;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-text .btn {
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Resources Section Mobile */
    .resources-section {
        padding: 25px 15px !important;
        margin-top: 20px !important;
    }
    
    .resources-title {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }
    
    .resources-subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    .resources-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .resource-card {
        padding: 20px 15px !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .resource-icon {
        margin: 0 0 15px 0 !important;
    }
    
    .download-btn {
        padding: 8px 15px !important;
        font-size: 0.85rem !important;
    }
    
    /* Key Contacts Mobile */
    .key-contacts {
        margin-top: 30px !important;
        padding-top: 20px !important;
    }
    
    .key-contacts .section-subtitle {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .contact-person {
        padding: 20px 15px !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 0 15px 0 !important;
    }
    
    .contact-details h4 {
        font-size: 1.1rem !important;
    }
    
    .contact-details .designation {
        font-size: 0.85rem !important;
    }
    
    .contact-details .phone {
        justify-content: center;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .contact-form,
    .contact-card,
    .business-hours,
    .social-media {
        padding: 25px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0 20px;
}

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

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-logo h2 img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

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

.footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info-item i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding: 25px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom p {
    margin: 8px 0;
}

/* PDF Viewer Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

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

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #000;
}

.pdf-container {
    width: 100%;
    height: 70vh;
    margin-top: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

#pdfViewer {
    width: 100%;
    height: 100%;
    border: none;
}

/* Resource Cards */
.resources-section {
    margin: 80px 0;
}

.resources-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.resources-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background: var(--white);
    border-radius: 8px;
    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;
}

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

.resource-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-green));
    color: white;
    font-size: 2rem;
    padding: 20px;
    text-align: center;
}

.resource-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.resource-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.view-pdf-btn, .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
}

.view-pdf-btn {
    background-color: var(--primary-color);
    color: white;
}

.view-pdf-btn:hover {
    background-color: var(--dark-green);
}

.download-btn {
    background-color: #f0f0f0;
    color: #333;
}

.download-btn:hover {
    background-color: #e0e0e0;
}

.view-pdf-btn i, .download-btn i {
    margin-right: 8px;
}

/* Custom Video Controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 5px;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.volume-btn {
    background: none;
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.volume-btn i {
    font-size: 1.2rem;
    color: white;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.video-section .section-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.video-section .section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hide default video controls */
.video-player::-webkit-media-controls {
    display: none !important;
}

.video-player::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-player {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
    background-color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-container.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: white;
}

.video-play-btn i {
    font-size: 30px;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        max-width: 100%;
    }
}

.developer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.developer-link:hover {
    color: var(--white);
    text-decoration: none;
}

.developer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top i {
    font-size: 20px;
}

.back-to-top:hover {
    background-color: var(--dark-green);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
        text-align: center;
    }
    
    .footer-links h3::after, 
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info-item {
        justify-content: center;
    }
}
