       body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            background: #f7f7f7;
            color: #333;
        }

        .bg-dark {
            background-color: #000;
        }

        .text-light {
            color: #fff;
        }

        .py-5 {
            padding: 60px 0;
        }

        .lead {
            font-size: 20px;
            margin-top: 10px;
        }

        .text-center {
            text-align: center;
        }

        .site-header {
            background: #111;
            color: #fff;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 50px;
        }

        .main-nav a {
            color: #ccc;
            margin-left: 20px;
            text-decoration: none;
            transition: 0.3s;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: #0dcaf0;
        }

       .contact-hero {
        background: url('https://images.unsplash.com/photo-1615840287214-7ff58936c4cf?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fGNvbnRhY3R8ZW58MHx8MHx8fDA%3D') no-repeat center center/cover;
        position: relative;
        padding: 100px 0;
        color: #fff;
        }

        .contact-hero::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
        z-index: 1;
        }

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

        .contact-hero h1 {
        font-size: 48px;
        margin-bottom: 10px;
        }

        .contact-hero .lead {
        font-size: 20px;
        }


        .contact-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .contact-section h2 {
            margin-bottom: 20px;
            color: #007bff;
        }

        .contact-section label {
            display: block;
            margin-top: 15px;
            font-weight: bold;
        }

        .contact-section input,
        .contact-section textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 6px;
        }

        .contact-section button {
            margin-top: 20px;
            padding: 12px 25px;
            background: #007bff;
            border: none;
            color: white;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
        }

        .contact-section button:hover {
            background: #0056b3;
        }

        .site-footer {
            background: #111;
            color: #ccc;
            text-align: center;
            padding: 20px 0;
            font-size: 15px;
            margin-top: 50px;
        }

        .dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  color: #ccc;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-block;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 5px;
}

.dropdown-content a {
  color: #ccc;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #0dcaf0;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: #0dcaf0;
}
