body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light gray text for dark theme */
}

header {
    background-color: #ff6f61; /* Warm coral for the header */
    color: white;
    padding: 20px;
    text-align: center;
}

.header-contents {
  display: flex;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 10px;
}

.logo-slogan-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-logo {
  height: 60px;
}

.slogan {
  margin: 8px 0 0 0;
  color: #4CAF50;
  font-style: italic;
}

nav a {
    color: white; /* White text color for nav links */
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background-color: #45a049; /* Hover effect */
    transform: scale(1.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

nav a:active {
  background-color: #000;
}

nav .separator {
  display: none;
}

section {
    padding: 20px;
}

.about {
    background: linear-gradient(to bottom, #ff9800, #f44336); /* Gradient from orange to red */
    text-align: center;
    padding: 50px 20px;
    /* margin-top: 50px; */
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #fff;
}

.about p {
    font-size: 1.2em;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
    color: white;
}

.about .tile {
  padding: 10px;
}

.about .tile:hover {
  transform: scale(1.02);
}

.about p.about-two-wings {
  max-width: 100%;
} 

.venpra-wing {
  color: #ff5722;
  font-weight: bold;
}

.about .highlight {
    font-weight: bold;
    color: #FFD700; /* Gold for highlights */
}

.about-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tile {
    background-color: #333; /* Dark background for tiles */
    border: 1px solid #555;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.tile h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ff5722; /* Vibrant orange-red for headings */
}

.tile p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ddd; /* Lighter text for dark theme */
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-tile {
    background-color: #333; /* Dark background for service tiles */
    border: 1px solid #555;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tile:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-tile h3 {
    color: #4CAF50; /* Bright green for headings */
    margin-bottom: 10px;
}

.service-tile p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ddd; /* Lighter text for dark theme */
}

.contact {
    text-align: center;
    padding: 50px 20px;
    background-color: #009688; /* Teal background for contact */
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact form {
    display: grid;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.contact input,
.contact textarea,
.contact button {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #333; /* Dark input background */
    color: #e0e0e0; /* Light text for inputs */
    transition: transform 0.3s ease;
}

.contact input:hover,
.contact textarea:hover,
.contact button:hover {
    transform: scale(1.05);
}

.contact button {
    background-color: #ff5722; /* Bright orange-red button */
    color: white;
    border: none;
    cursor: pointer;
}

.contact button:hover {
    background-color: #e64a19; /* Darker orange-red on hover */
}

footer {
    background-color: #ff6f61; /* Matching footer with header */
    color: white;
    text-align: center;
    padding: 10px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.venpra-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: #ff5722; /* Vibrant heading color */
}

.mission-vision-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.mission-vision-values .tile {
    background-color: #333; /* Dark background for mission-vision tiles */
    color: #ddd;
    text-align: center;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-values .tile:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.mission-vision-values h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ff5722; /* Vibrant heading color */
}

.mission-vision-values p {
    font-size: 1.1em;
}

.mission-vision-values .subheading {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff9800; /* Orange for subheadings */
}

@media (max-width: 500px) {
  nav {
    flex-direction: column;
    row-gap: 30px;
  }

  nav a {
    background-color: #000;
    font-size: 18px;
    padding: 6px;
  }

  nav a:hover {
    background-color: #000;
  }

  nav a:active {
    background-color: #000;
  }

  .us-info {
    display: none;
  }
}
