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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #0f2027 100%);
            color: #ffffff;
            overflow-x: hidden;
        }

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

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #00ff88;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00ff88;
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            color: #00ff88;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero1 {
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        #canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

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

        .hero-content1 {
            margin-top: 15vh;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00ff88, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
                      text-transform: uppercase;

            animation: slideUp 1s ease-out;
        }

        .hero1 h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00ff88, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
                      text-transform: uppercase;

            animation: slideUp 1s ease-out;
        }


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

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: #b0b0b0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #00ff88, #00cc66);
            color: #ffffff;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
            animation: slideUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 60px;
            color: #00ff88;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #00ff88;
            box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #00ff88;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .service-card p {
            color: #b0b0b0;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0a0a 0%, #0f2027 100%);
        }

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

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #00ff88;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #b0b0b0;
            margin-bottom: 20px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat {
            text-align: center;
            padding: 20px;
            background: rgba(0, 255, 136, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #00ff88;
        }

        .stat-label {
            color: #b0b0b0;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #203a43 0%, #0a0a0a 100%);
        }

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

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #00ff88;
        }

        .contact p {
            font-size: 1.1rem;
            color: #b0b0b0;
            margin-bottom: 40px;
        }

        .contact-form {
            display: grid;
            gap: 20px;
        }

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

        .contact-form input,
        .contact-form textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 10px;
            padding: 15px;
            color: #ffffff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #00ff88;
        }

        .contact-form textarea {
            grid-column: 1 / -1;
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(45deg, #00ff88, #00cc66);
            color: #ffffff;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
        }

        /* Footer */



        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

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

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

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

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

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .form-group {
                grid-template-columns: 1fr;
            }
        }
.dropdown {
              background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 10px;
            padding: 15px;
            color: #ffffff;
            font-size: 1rem;
            transition: border-color 0.3s ease;
}
@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anta&family=Climate+Crisis&display=swap');


/* === GLOBAL === */

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

.anta-regular {
  font-family: "Anta", sans-serif;
}

.footer {
  font-family: "Anta", sans-serif;
  margin-top: auto;
                        color: #b0b0b0;
              background: #0a0a0a;
  padding: 5vw 5vw 8vw 5vw;
            text-align: center;
            border-top: 1px solid rgba(0, 255, 136, 0.2);
        }


.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-title {
  font-size: 4vw;
background: linear-gradient(45deg, #00ff88, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;  margin-bottom: 1vw;
}

.footer-text {
  font-size: 2vw;
  margin-bottom: 2vw;
}

.subscription-form {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  justify-content: center;
  flex-wrap: wrap;
}

.subscription-form input[type="email"] {
  padding: 1vw;
  border-radius: 0.8vw;
  border: none;
  font-size: 1.8vw;
  width: 50vw;
  max-width: 60vw;
  outline: none;
}

.subscription-form button {
  padding: 1vw 2vw;
  border-radius: 0.8vw;
  border: none;
  background: linear-gradient(45deg, #00ff88, #00cc66);       
  color: #ffffff;
  font-weight: bold;
  font-size: 1.8vw;
  cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.subscription-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5);
}

.footer-links {
  margin-top: 3vw;
  font-size: 1.6vw;
  color: #ded2e6;
}

.footer-links a {
  color: #ded2e6;
  text-decoration: none;
  margin: 0 1vw;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #a78bfa;
}

.safari-fix {
  margin-bottom: 12vh;
  background-color: #1c1a3f;
}

.menu-select {
      color: black;

}
