        :root {
            --primary-color: #00d4aa;
            --secondary-color: #007bff;
            --accent-color: #ff6b6b;
            --dark-bg: #1a1a1a;
            --light-bg: #f8f9fa;
            --text-color: #333;
            --text-light: #fff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --border-radius: 15px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            user-select:none;
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: linear-gradient(135deg, var(--light-bg) 0%, #e8f5e8 100%);
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 Q60 30 50 50 Q40 70 50 90 Q60 70 50 50 Q40 30 50 10" fill="rgba(0,212,170,0.05)"/></svg>');
            background-size: 200px 200px;
            animation: fadeIn 1s ease-in;
            min-height: 100vh;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        /* Navigation  */
.nav {
  background: rgba(52, 58, 64, 0.95);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  margin: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 101;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-light);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--text-light);
  margin: 0 25px;
  font-weight: 700;
  font-size: 1.1em;
  position: relative;
  transition: var(--transition);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 123, 255, 0.1));
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::before {
  opacity: 1;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu a:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
  /* Header */
header {
  background: linear-gradient;
  background-image: url('https://drive.google.com/thumbnail?id=1fW3ktotqVHKr949kknZMpYcsoLh28d-Q&sz=s1000');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  min-height: 85vh;
  padding: 40px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  margin: 20px;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.1;
}

header .hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  animation: bounceIn 1.5s ease-out;
  transition: var(--transition);
}

header .hero-image:hover {
  transform: scale(1.05);
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

header h1 {
  font-size: 2.5em;
    height: 40px;
  margin-bottom: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
  animation: slideIn 1.5s ease-out;
  position: relative;
  z-index: 1;
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

header p {
  font-size: 1.3em;
  opacity: 0.9;
  animation: slideIn 2s ease-out;
  position: relative;
  z-index: 1;
}

        /* Sections*/
        section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 30px auto;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        section h2 {
            font-size: 2.2em;
            margin-bottom: 25px;
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            display: inline-block;
        }
        section h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            display: block;
        }

        section ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

section li {
  background: linear-gradient(135deg, rgba(248, 255, 248, 0.8), rgba(232, 245, 232, 0.8));
  margin: 0;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

section li:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(232, 245, 232, 0.9), rgba(212, 237, 218, 0.9));
}
/* Products */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            border: 1px solid #eee;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .product-card h3 {
            padding: 15px;
            color: var(--primary-color);
        }

        /* Map and Contact */
        .contact-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .map-box {
            height: 350px;
            border-radius: var(--border-radius);
            overflow: hidden;
            border: 4px solid white;
            box-shadow: var(--shadow);
        }

        footer {
            background: #343a40;
            color: white;
            text-align: center;
            padding: 40px;
            margin-top: 40px;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
/* Tablet and smaller laptop screens */
@media (max-width: 1024px) {
  header {
    padding: 300px 100px;
  }
  header .hero-image {
    max-width: 90%;
  }
  header h1 {
    font-size: 2.8em;
  }
  header p {
    font-size: 1.2em;
  }
  nav a {
    margin: 0 15px;
    font-size: 1em;
  }
  section {
    padding: 50px 20px;
  }
  #businesses {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

/* Tablet screens */
@media (max-width: 768px) {
  header {
    padding: 250px 50px;
  }
  header h1 {
    font-size: 2.2em;
  }
  header p {
    font-size: 1.1em;
  }
  header .hero-image {
    max-width: 90%;
  }
  .nav {
    padding: 10px 0;
    margin: 0 10px;
  }
  .nav-toggle-label {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(52, 58, 64, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle:checked ~ .nav-menu {
    max-height: 500px;
  }
  .nav-menu li {
    margin: 10px 0;

/* Small tablet and large mobile screens */
@media (max-width: 600px) {
  header {
    padding: 200px 30px;
  }
  header .hero-image {
    max-width: 90%;
  }
  header h1 {
    font-size: 2em;
  }
  header p {
    font-size: 1em;
  }
  nav {
    margin: 0 5px;
  }
  section {
    padding: 25px 10px;
  }
  section h2 {
    font-size: 2em;
  }
  #businesses .business h3 {
    font-size: 1.2em;
  }
  #projects img {
    max-width: 100%;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  header {
    padding: 150px 20px;
    margin: 10px;
  }
  header .hero-image {
    max-width: 90%;
  }
  header h1 {
    font-size: 1.8em;
  }
  header p {
    font-size: 0.9em;
  }
  .nav {
    margin: 0 5px;
    padding: 10px 0;
    background: rgba(52, 58, 64, 0.98);
    border-radius: 10px;
    backdrop-filter: blur(20px);
  }
  .nav-toggle-label {
    display: block;
  }
  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(52, 58, 64, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle:checked ~ .nav-menu {
    max-height: 500px;
  }
  .nav-menu li {
    margin: 10px 0;
  }
  .nav-menu a {
    margin: 0;
    font-size: 0.85em;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
  }
  .nav-menu a:hover {
    background: rgba(0, 212, 170, 0.2);
    transform: translateY(-1px);
  }
  section, #login {
    padding: 20px 10px;
    margin: 10px auto;
    max-width: 100%;
  }
  section h2 {
    font-size: 1.8em;
  }
  section p, section ul {
    font-size: 1em;
  }
  #businesses {
    padding: 15px 5px;
  }
  #businesses .business {
    padding: 15px;
  }
  #businesses .business img {
    width: 80px;
    height: 80px;
  }
  #businesses .business h3 {
    font-size: 1.1em;
  }
  #login h2 {
    font-size: 2em;
  }
  #login form {
    max-width: 100%;
  }
  #contact input, #contact textarea {
    padding: 12px;
    font-size: 0.9em;
  }
  #contact button {
    padding: 12px 20px;
    font-size: 1em;
  }
  footer {
    padding: 20px;
    font-size: 0.9em;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  header {
    padding: 120px 15px;
  }
  header .hero-image {
    max-width: 90%;
  }
  header h1 {
    font-size: 1.5em;
  }
  header p {
    font-size: 0.8em;
  }
  nav a {
    font-size: 0.8em;
  }
  section h2 {
    font-size: 1.6em;
  }
  #login h2 {
    font-size: 1.8em;
  }
  #businesses .business img {
    width: 60px;
    height: 60px;
  }
}
  }
}