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

:root {
    --primary-color: #2872AF;
    --primary-dark: #1e5a8f;
    --primary-light: #3a8bc7;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

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

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(40, 114, 175, 0.3);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-image {
  height: 100px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo h2 {
    margin: 0;
    font-size: 1.5rem;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(40, 114, 175, 0.1) 0%, rgba(40, 114, 175, 0.05) 100%);
}

.hero-content {
    flex: 1;
    animation: slideInLeft 0.8s ease;
}

.hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(40, 114, 175, 0.2);
    animation: slideInRight 0.8s ease;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 20px;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 2.5rem;
}

/* Intro Section */
.intro {
    padding: 4rem 20px;
    background-color: var(--bg-white);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.intro-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 4rem 20px;
    background-color: var(--bg-light);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 114, 175, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.service-card p {
    font-size: 0.95rem;
}

/* Metals Section */
.metals {
    padding: 4rem 20px;
    background-color: var(--bg-white);
}

.metals-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.metals-text {
    flex: 1;
}

.metals-text h2 {
    color: var(--primary-color);
}

.metals-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.metals-column ul {
    list-style: none;
}

.metals-column li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.metals-column li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.metals-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* E-Waste Section */
.ewaste {
    padding: 4rem 20px;
    background-color: var(--bg-light);
}

.ewaste-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.ewaste-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ewaste-text {
    flex: 1;
}

.ewaste-text h2 {
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 4rem 20px;
    background-color: var(--bg-white);
    text-align: center;
}

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

.pricing-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.benefit {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 114, 175, 0.15);
}

.benefit h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.9rem;
    margin: 0;
}

/* Environmental Section */
.environmental {
    padding: 4rem 20px;
    background: linear-gradient(135deg, rgba(40, 114, 175, 0.1) 0%, rgba(40, 114, 175, 0.05) 100%);
    text-align: center;
}

.environmental h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.stat {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.95rem;
    margin: 0;
}

.env-text {
    max-width: 700px;
    margin: 2rem auto;
}

/* CTA Final Section */
.cta-final {
    padding: 4rem 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* About Sections */
.about-section {
    padding: 4rem 20px;
    background-color: var(--bg-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

/* Mission Section */
.mission {
    padding: 4rem 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.mission h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Community Section */
.community {
    padding: 4rem 20px;
    background-color: var(--bg-white);
}

.community h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.community-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.community-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 114, 175, 0.15);
}

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

.community-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Sustainability Section */
.sustainability {
    padding: 4rem 20px;
    background-color: var(--bg-light);
}

.sustainability-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.sustainability-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-text {
    flex: 1;
}

.sustainability h2 {
    color: var(--primary-color);
}

.sustainability-list {
    list-style: none;
    margin: 1.5rem 0;
}

.sustainability-list li {
    padding: 0.8rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
}

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

/* Values Section */
.values {
    padding: 4rem 20px;
    background-color: var(--bg-white);
}

.values h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

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

.value-item:hover h3 {
    color: white;
}

.value-item p {
    margin: 0;
    font-size: 0.95rem;
}

.value-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Promise Section */
.promise {
    padding: 4rem 20px;
    background: linear-gradient(135deg, rgba(40, 114, 175, 0.1) 0%, rgba(40, 114, 175, 0.05) 100%);
    text-align: center;
}

.promise h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.promise p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 4rem 20px;
    background-color: var(--bg-white);
}

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

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(40, 114, 175, 0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

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

.info-item p,
.info-item a {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.info-item ul {
    list-style: none;
}

.info-item li {
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 0;
    background-color: var(--bg-white);
}

.map-container {
    width: 100%;
    max-width: 100%;
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 20px;
    text-align: center;
}
.footer-logo-image {
  height: 50px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--primary-light);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero,
    .intro-content,
    .metals-content,
    .ewaste-content,
    .about-content,
    .sustainability-content {
        flex-direction: column;
    }

    .about-content.reverse {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: none;
    }
.logo-image {
    width: 300px;
    height: 60px;
  }
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 20px;
    }

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

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

    .services-grid,
    .community-grid,
    .values-grid,
    .pricing-benefits,
    .env-stats,
    .metals-list {
        grid-template-columns: 1fr;
    }

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

    .metalss-column {
        margin-bottom: 1rem;
    }

    .intro,
    .metals,
    .ewaste,
    .about-section,
    .sustainability,
    .values,
    .promise {
        padding: 2rem 20px;
    }

    .btn-large {
        width: 100%;
    }

    .contact-form,
    .contact-info {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.2rem;
    }

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

    .nav-menu {
        gap: 0;
    }

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

    .stat h3 {
        font-size: 2rem;
    }

    .service-card,
    .community-item,
    .value-item,
    .benefit {
        padding: 1.5rem;
    }
}
