/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d7a3e;
    --light-green: #4caf50;
    --bright-green: #66bb6a;
    --milky-white: #fafaf8;
    --light-yellow: #ffd54f;
    --bright-yellow: #ffeb3b;
    --orange: #ff9800;
    --dark-text: #333;
    --light-text: #666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.2);
    --gradient-1: linear-gradient(135deg, #2d7a3e 0%, #4caf50 50%, #66bb6a 100%);
    --gradient-2: linear-gradient(135deg, #ffd54f 0%, #ffeb3b 50%, #ff9800 100%);
    --gradient-3: linear-gradient(135deg, #4caf50 0%, #2d7a3e 100%);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--milky-white);
}

h1,
h2,
h3,
.hero-title,
.brand-name {
    font-family: 'Playfair Display', serif;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
}

.logo {
    background: var(--gradient-1);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.brand-name {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 213, 79, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 187, 106, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--dark-text);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--milky-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(45, 122, 62, 0.3);
}

.card:hover::before {
    opacity: 1;
}

.card .icon {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.card:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

.card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--light-text);
}

/* Products */
.products-section {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-2);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
}

.product-card:hover .product-image {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.5);
}

.product-image i {
    font-size: 4rem;
    color: white;
}

.product-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* Directors */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.director-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.director-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-image i {
    font-size: 3rem;
    color: white;
}

.director-card h3 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.director-card p {
    color: var(--light-text);
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid transparent;
    border-image: var(--gradient-2);
    border-image-slice: 1;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-2);
    border-radius: 15px 0 0 15px;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.testimonial-card p {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.testimonial-card span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 235, 59, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 152, 0, 0.15) 0%, transparent 40%);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1a4d2e;
    color: white;
    padding: 40px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--light-yellow);
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--light-yellow);
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-col i {
    margin-right: 8px;
    color: var(--light-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light-text);
}

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

.modal-content h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-content ul {
    margin-left: 20px;
    margin-bottom: 1rem;
}

.modal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

    .section-title {
        font-size: 1.5rem;
    }

    .cards-grid,
    .products-grid,
    .directors-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-1);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 187, 106, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* About Page */
.about-content {
    padding: 60px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.about-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.about-image i {
    font-size: 5rem;
    color: white;
}

.about-text h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--light-text);
}

/* Mission Vision */
.mission-vision {
    background: white;
    padding: 60px 20px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--milky-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.mv-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.mv-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Core Values */
.core-values {
    padding: 60px 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.value-card .icon {
    font-size: 2.5rem;
    color: var(--light-yellow);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Certifications */
.certifications {
    background: white;
    padding: 60px 20px;
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    width: 350px;
    max-width: 100%;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-2);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.cert-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cert-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.4);
}

.cert-card:hover::before {
    opacity: 1;
}

.cert-card:hover::after {
    width: 300px;
    height: 300px;
}

.cert-card i {
    font-size: 4rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.4s;
    position: relative;
    z-index: 1;
}

.cert-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

.cert-card p {
    color: var(--primary-green);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Services Page */
.services-section {
    padding: 60px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

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

/* Service Features */
.service-features {
    background: white;
    padding: 60px 20px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--milky-white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--light-green);
}

.feature-item p {
    color: var(--dark-text);
    margin: 0;
}

/* Production Capacity */
.production-capacity {
    background: white;
    padding: 60px 20px;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.capacity-card {
    background: var(--milky-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.capacity-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.capacity-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.capacity-card p {
    color: var(--light-text);
    font-weight: 600;
}

/* Research Page */
.research-intro,
.social-intro,
.careers-intro {
    padding: 60px 20px;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.intro-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Research Areas */
.research-areas,
.initiatives {
    padding: 60px 20px;
}

.research-grid,
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.research-card,
.initiative-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.research-card:hover,
.initiative-card:hover {
    transform: translateY(-5px);
}

.research-card .icon,
.initiative-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.research-card h3,
.initiative-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.research-card p,
.initiative-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Manufacturing Research */
.manufacturing-research {
    background: white;
    padding: 60px 20px;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.manufacturing-card {
    background: var(--milky-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.manufacturing-card .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.manufacturing-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.manufacturing-card p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Research Benefits */
.research-benefits {
    padding: 60px 20px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--light-green);
    flex-shrink: 0;
}

.benefit-item p {
    color: var(--dark-text);
    margin: 0;
}

/* Social Page */
.csr-section {
    background: white;
    padding: 60px 20px;
}

.csr-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.csr-content p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Social Media */
.social-media {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.social-text {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.youtube {
    background: #ff0000;
}

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

/* Impact Stories */
.impact-stories {
    padding: 60px 20px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
}

.story-card p {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.story-card span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Careers Page */
.why-join {
    background: white;
    padding: 60px 20px;
}

/* Job Openings */
.job-openings {
    padding: 60px 20px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.job-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.job-location {
    color: var(--light-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-location i {
    color: var(--primary-green);
}

.job-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-info>p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.info-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
}

/* Map Section */
.map-section {
    background: white;
    padding: 60px 20px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .social-btn {
        justify-content: center;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .manufacturing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}


/* Certificate Modal Styles */
.cert-modal-content {
    max-width: 900px;
    padding: 1rem;
}

.cert-image-container {
    width: 100%;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cert-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Prevent right-click and selection on certificate */
.cert-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Director Card Enhancements */
.director-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 15px;
}

.director-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(45, 122, 62, 0.3);
}

.director-card:hover::before {
    opacity: 0.05;
}

.director-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
    position: relative;
    z-index: 1;
}

.director-card:hover .director-image {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.5);
}

.director-image i {
    font-size: 3rem;
    color: white;
}

.director-card h3,
.director-card p {
    position: relative;
    z-index: 1;
}

/* Service Card Enhancements */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--gradient-2);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.3);
    border-color: var(--orange);
}

.service-card:hover::before {
    height: 100%;
}

.service-card .icon {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.service-card:hover .icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Research Card Enhancements */
.research-card,
.initiative-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    position: relative;
}

.research-card::before,
.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 15px 15px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.research-card:hover,
.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(45, 122, 62, 0.3);
}

.research-card:hover::before,
.initiative-card:hover::before {
    transform: scaleX(1);
}

.research-card .icon,
.initiative-card .icon {
    font-size: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.research-card:hover .icon,
.initiative-card:hover .icon {
    transform: scale(1.2);
}

/* Job Card Enhancements */
.job-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
    position: relative;
}

.job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-2);
    border-radius: 15px 0 0 15px;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.job-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.3);
}

.job-card:hover::before {
    transform: scaleY(1);
}

/* Story Card Enhancements */
.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid transparent;
    position: relative;
    transition: all 0.4s ease;
}

.story-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-1);
    border-radius: 15px 0 0 15px;
}

.story-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(45, 122, 62, 0.3);
}

/* Social Button Enhancements */
.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.social-btn span {
    position: relative;
    z-index: 1;
}

/* Feature Item Enhancements */
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    border-left-color: var(--light-green);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--light-green);
    transition: transform 0.3s;
}

.feature-item:hover i {
    transform: scale(1.3) rotate(10deg);
}

/* Benefit Item Enhancements */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.benefit-item i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.benefit-item:hover i {
    transform: scale(1.3);
}

/* Navbar Enhancement */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

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

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

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

/* Logo Enhancement */
.logo {
    background: var(--gradient-1);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.4);
}

/* Section Title Enhancement */
.section-title {
    text-align: center;
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}


/* Watermark Overlay for Certificate */
.watermark-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 2rem;
    font-weight: bold;
    color: rgba(45, 122, 62, 0.15);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Additional protection styles */
.cert-image-container {
    position: relative;
}

/* Disable text selection on certificate modal */
.cert-modal-content * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Animated gradient backgrounds */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero,
.page-header,
.cta-section {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Pulse animation for icons */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.card:hover .icon,
.service-card:hover .icon,
.research-card:hover .icon {
    animation: pulse 1s ease-in-out infinite;
}

/* Shimmer effect for buttons */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.btn-primary {
    background-image: linear-gradient(90deg,
            #ffd54f 0%,
            #ffeb3b 25%,
            #ff9800 50%,
            #ffeb3b 75%,
            #ffd54f 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

/* Floating animation for product images */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-image {
    animation: float 3s ease-in-out infinite;
}

.product-card:hover .product-image {
    animation: none;
}


/* Certificate Preview Image in Card */
.cert-preview-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cert-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none;
    user-select: none;
}

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

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    background: linear-gradient(to right, #ffffff, #ffd54f, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

/*
 Hero Logo */
.hero-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out, float 3s ease-in-out infinite 1s;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*
 Product Image Photo (for actual product images) */
.product-image-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(45, 122, 62, 0.3);
    background: white;
}

.product-image-photo img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.product-card:hover .product-image-photo {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.5);
}
