/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7fa;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

/* Link Styling */
a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  background-color: #007BFF; /* Adjust to match your site's color scheme */
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu li a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
  background-color: #0056b3; /* Adjust hover color as needed */
}


/* Main Content */
main {
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.domain-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.domain-item h2 {
    font-size: 28px;
    font-weight: 600;
}

.domain-item p {
    font-size: 16px;
    margin: 10px 0;
}

/* Inquiry Form Styling */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

form button {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #007BFF;
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        text-align: center;
    }

    nav ul {
        display: block;
    }

    nav ul li {
        margin: 10px 0;
    }

    main {
        padding: 20px;
    }

    form input, form textarea {
        font-size: 14px;
    }
}
/* Dashboard Navigation Links */
.dashboard-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.dashboard-links a {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
}

.dashboard-links a:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
}
