* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
}

.container {
    width: 100%;
}

.header {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 80px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-icon i {
    color: #2e7d32;
    font-size: 24px;
}

.logo-text {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Navigation Section */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c8e6c9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: white;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

 /* Overlay */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Modal */
  .modal {
    background: #fff;
    padding: 24px;
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }

  .modal h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 20px;
  }

  .modal label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
  }

  .modal input {
    width: 100%;
    padding: 8px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
  }

  .modal button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }

  .submit-btn {
    background: green;
    color: white;
    margin-bottom: 8px;
  }

  .close-btn {
    background: #e0e0e0;
  }

/* Member Button */
.member-btn {
    background-color: white;
    color: #2e7d32;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.member-btn:hover {
    background-color: #000;
    color: #4caf50;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Active link styling */
.nav-links a.active {
    color: #c8e6c9;
}

.nav-links a.active::after {
    width: 100%;
}

/* Content for demonstration */
.content {
    margin-top: 40px;
    text-align: center;
    max-width: 800px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content h1 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 32px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* HERO SECTION STYLES */
.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-image: url('../images/industry.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    color: #f0f0f0;
}

.hero-button {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-button:hover {
    background-color: #4caf50;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Content for demonstration */
.content {
    margin-top: 40px;
    text-align: center;
    max-width: 800px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-left: auto;
    margin-right: auto;
}

.content h1 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-size: 32px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: #2e7d32;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #4caf50;
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Individual Card */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px 10px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2e7d32, #4caf50);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    transform: scale(1.1);
}

.card-icon i {
    font-size: 32px;
    color: #2e7d32;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon i {
    color: white;
}

.card-title {
    color: #2e7d32;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .card-title {
    color: #1b5e20;
}

.card-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-features {
    text-align: left;
    margin-bottom: 30px;
    padding: 0 10px;
}

.card-features p {
    color: #555;
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.card-features i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 0.9rem;
}

.card-button {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
    margin-top: auto;
}

.card-button:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.card-button:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    
    .hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-image: url('../images/industry.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .member-btn {
    background-color: white;
    color: #2e7d32;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}


}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    
    .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 30px;
}
    
    .hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    color: #f0f0f0;
}

}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }
    
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width:100%;
    }
    
    .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
    .content {
        padding: 20px;
    }
    
    .content h1 {
        font-size: 26px;
    }
}

/* Header decoration elements */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    pointer-events: none;
}

.leaf {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 40px;
    z-index: 0;
}

.leaf-1 {
    top: 10px;
    left: 120px;
    transform: rotate(45deg);
}

.leaf-2 {
    bottom: 15px;
    right: 150px;
    transform: rotate(-20deg);
}

/* Main Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    width: 100%;
    padding: 60px 10px 30px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 36px;
    color: #2e7d32;
    margin-right: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #ecf0f1;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    color: #2e7d32;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2e7d32;
    color: #ecf0f1;
    transform: translateY(-3px);
}

/* Links Section */
.footer-links {
    padding: 0 10px;
}

.links-title {
    color: #ecf0f1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #2e7d32;
}

.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #4caf50;
    padding-left: 8px;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4caf50;
}

.footer-link:hover::before {
    left: -10px;
    opacity: 1;
}

/* Contact Section */
.footer-contact {
    padding: 0 10px;
}

.contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-list i {
    color: #2e7d32;
    margin-right: 12px;
    font-size: 16px;
    margin-top: 3px;
    width: 20px;
}

.contact-list a.footer-link {
    color: #2e7d32;
    font-weight: 500;
}

/* Newsletter */
.newsletter {
    background-color: #34495e;
    padding: 20px;
    border-radius: 8px;
}

.newsletter-title {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.newsletter-text {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #95a5a6;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #2e7d32;
}

.newsletter-form button {
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    width: 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    background-color: #4caf50;
    transform: scale(1.05);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #2e7d32, transparent);
    margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.copyright {
    color: #95a5a6;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 25px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2e7d32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #4caf50;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links, .footer-contact {
        text-align: center;
    }
    
    .links-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact-list li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .links-title {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
        height: 45px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}