/* New styles for hero section and buttons */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #2c2c2c; /* Your preferred dark background */
    color: white;
}

.hero-text {
    font-size: 48px;
    color: white;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    opacity: 0; /* Ensures animation works */
}

.hero-subtext {
    font-size: 20px;
    margin-top: 10px;
    opacity: 0;
}

.hero-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 18px;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    border: none;
    color: #2c2c2c;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.hero-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #ff9900, #ffcc00);
}

/* Additional button styles */
.card {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    will-change: transform;
    transition: box-shadow 0.3s ease;
}

header {
  background-color: rgb(53, 53, 58);
  color: white;
  text-align: center;
  padding: 20px;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #2c2c2c;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #2c2c2c;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    list-style-type: none;
    padding: 10px 0;
    border-radius: 8px;
}

.dropdown-menu li a {
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

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

/* Layout styles */
main {
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2c2c2c;
    color: white;
}