/* common nav styles */
.navigation-wrapper {
    height: 10px;
    background: linear-gradient(
    135deg,
    rgba(210, 207, 212, 1),
	rgba(204, 216, 225, 1),
	rgba(102, 138, 167, 1),
	rgba(36, 80, 106, 1),
	rgba(30, 45, 79, 1),
	rgba(1, 4, 37, 1)
    );
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
    color: #cbcbcb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    position: sticky;
}
                                                           /* center column */
.navigation-wrapper > .center-column > .webpages {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 42px;
    width: 500px;
}
/* .links-wrapper */
.navigation-wrapper > .center-column > .webpages > .links-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 /* .nav-link */
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link {
    width: 95px;
    align-items: center;
}
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link a {
    font-family: sans-serif;
    color: rgba(135, 122, 133, 1);
    text-decoration: none;
    transition: 0.5s;
}
.navigation-wrapper > .center-column > .webpages > .links-wrapper > .nav-link a:hover {
    color: #A7C8CD;
    letter-spacing: 2px;
}
.navigation-wrapper > .logo img {
    width: 80px;
}
@keyframes gradientMove {
  0% { background-position: 0% 25%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}
.heading-wrapper {
    color: rgba(135, 122, 133, 1);
    background-color: rgba(36, 80, 106, 1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 400px;
    padding: 10px;
    text-align: center;
    margin-top: -36px;
    margin-left: 480px;
}
.background-image-section > .sign {
    margin-top: 10px;
    margin-left: 1140px;
}
.background-image-section > .login {
    margin-top: -33px;
    margin-left: 1230px;
}
/* Style the links */
.background-image-section > .sign > a,
.background-image-section > .login > a {
    position: relative;
    display: inline-block;
    color: rgba(1, 4, 37, 1);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 800;
}
/* Animated underline */
.background-image-section > .sign > a::after,
.background-image-section > .login > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.background-image-section > .sign > a:hover::after,
.background-image-section > .login > a:hover::after {
    transform: scaleX(1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: rgba(135, 122, 133, 1);
    scroll-behavior: smooth;
    background-color: rgba(102, 138, 167, 1);
}
header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
header p {
    font-size: 1.2em;
    opacity: 0.9;
}
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}
.about-section {
    animation: fadeUp 0.8s ease forwards;
    margin-bottom: 40px;
    background: rgba(204, 216, 225, 1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.about-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-section:hover h2 {
    color:rgba(36, 80, 106, 1);
    border-color: rgba(36, 80, 106, 1);
}
.about-section h2 {
    color: rgba(1, 4, 37, 1);
    margin-bottom: 15px;
    font-size: 1.8em;
    border-bottom: 3px solid rgba(1, 4, 37, 1);
    padding-bottom: 10px;
    transition: all 0.4s ease;
}
.about-section p {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1.05em;
}
.qualifications {
    background: rgba(204, 216, 225, 1);
    padding: 20px;
    border-left: 4px solid rgba(1, 4, 37, 1);
    margin: 20px 0;
    transition: all 0.4s ease;
}
.qualifications ul {
    list-style-position: inside;
}
.about-section:hover > .qualifications {
    border-color: rgba(36, 80, 106, 1);
}
.qualifications li {
    margin-bottom: 10px;
}
.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease forwards;
}
.stat-box {
    background: rgba(204, 216, 225, 1);
    color: rgba(1, 4, 37, 1);
    width: 200px;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
}
.stat-box:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    color: rgba(36, 80, 106, 1);
}
.cta {
    text-align: center;
    margin: 80px 0;
    color: rgba(204, 216, 225, 1);
}
.cta-btn {
    display: inline-block;
    background: rgba(36, 80, 106, 1);
    color: rgba(204, 216, 225, 1);
    margin-top: 20px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s;
}
.cta-btn:hover {
    transform: translateY(-5px);
    background: rgba(36, 80, 106, 1);
    color: rgba(204, 216, 225, 1);
}
.footer {
    background: linear-gradient(
    135deg,
    rgba(102, 138, 167, 1),
    rgba(36, 80, 106, 1),
    rgba(30, 45, 79, 1),
    rgba(1, 4, 37, 1)
    );
    animation: gradientMove 12s ease infinite;
    background-size: 300% 300%;
    position: relative;
    font-family: "Ubuntu Condensed", sans-serif;
    width: 100%;
    box-sizing: border-box;
    height: 440px ;
    margin-top: -4px;
    padding:40px 32px;
}
.footer > * {
    margin: 10px 0;
}
.footer-top {
    width: 100;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:30px;
    padding-bottom:32px;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand p {
    margin-top: 15px;
    margin-bottom: 15px;
}
.footer-brand img {
    width:140px;
    margin-bottom:18px;
    margin-left: 110px;
}
.footer-brand p {
    width:420px;
    line-height:1.75;
    color: rgba(135, 122, 133, 1);
}
.footer-links {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-top: 15px;
}
.footer-column h3 {
    margin-bottom:14px;
    color: rgba(210, 207, 212, 1);
    font-size:1.05rem;
}
.footer-column a, .footer-column p {
    display:block;
    color: rgba(135, 122, 133, 1);
    text-decoration:none;
    margin-bottom:10px;
    font-size:.95rem;
    transition: 0.5s;
}
.footer-column a:hover {
    color: #A7C8CD;
    letter-spacing: 2px;
}
.footer-bottom {
    width: 100%;
    max-width:1180px;
    margin-top: 17px;
    margin-left: 50px;
    padding-top:20px;
    text-align:center;
    color:#94a3b8;
    font-size:.95rem;
}
