/* General Styles */
html, body {
    height: 100%;
    margin: 0;
  }
  main {
    flex: 1;
  }
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
}

 /* --- Navigation Bar --- */
  .navbar {
    background-color: #1F3D7A;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar .nav-left .logo{
    font-size: 22px;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
  }

  .navbar .nav-right {
    display: flex;
    align-items: center;
  }
  .navbar .nav-right img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
  }
  .navbar .nav-right span {
    color: white;
    font-weight: bold;
    margin-right: 20px;
  }
  .navbar .nav-right button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
  }
  .navbar .nav-right button:hover {
    background-color: #d32f2f;
  }

.jssbottomfootertop {
  background-color: #999999;
  color: white;
  max-height: 300px;
  font-size: 12px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* horizontal centering */
  align-items: center;       /* vertical centering */
  text-align: center;        /* centers inline text */
}

.jssbottomfootercredits
{
background-color: maroon;
color: white;
font-size: 12px;
max-height: 130px;
}
/* Hero Section */
.hero {
  position: relative;
  background: url('https://source.unsplash.com/1600x800/?technology,abstract') center/cover no-repeat;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  max-height: 300px;
}

.hero-content h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 19px;
  margin-bottom: 15px;
}


/* Features Section */
.features {
    flex-grow: 1;
    padding: 40px 20px;
    text-align: center;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature {
    width: 300px;
    padding: 20px;
    background: #f1f1f1;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.featuretraining {
    width: 300px;
    padding: 20px;
    background: #aed6f1;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-decoration: none;
}
.featurecorporate {
    width: 300px;
    padding: 20px;
    background: #58d68d;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-decoration: none;
}
.featuregrid {
    width: 300px;
    padding: 20px;
    background: #fce303;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-decoration: none;
}

.feature:hover {
    background-color: #1F3D7A;
    color: white;
}

.feature a {
    text-decoration: none;
    color: black;
}

.feature a:hover,
.feature a:visited,
.feature a:active {
    color: black;
    text-decoration: none;
}

.feature h3 {
    font-size: 20px;
    font-weight: bold;
}

.feature p {
    font-size: 14px;
}

  /* Footer */
.footer {
    background-color: #1F3D7A;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    margin-top: auto;
  }

.featuretraining a {
  text-decoration: none;
  color: inherit; /* Optional: use parent element's color */
}

/* Optional: add hover styling for better UX */
.featuretraining a:hover {
  text-decoration: underline;
  color: #0078d4; /* Customize this color as needed */
}

.featuregrid a {
  text-decoration: none;
  color: inherit; /* Optional: use parent element's color */
}

/* Optional: add hover styling for better UX */
.featuregrid a:hover {
  text-decoration: underline;
  color: #0078d4; /* Customize this color as needed */
}

.featurecorporate a {
  text-decoration: none;
  color: inherit; /* Optional: use parent element's color */
}

/* Optional: add hover styling for better UX */
.featurecorporate a:hover {
  text-decoration: underline;
  color: #0078d4; /* Customize this color as needed */
}
