* {
    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;
}
/* 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%; }
}
.background-image-section > .sign {
    margin-top: -110px;
    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);
}
.container {
    background: linear-gradient(135deg, rgb(227, 232, 236) 0%, rgba(36, 80, 106, 1) 90%);
    min-height: 100vh;
    padding: 120px 0px;
    width: 1341px;
}
.container > .main-content > .courses-section {
    margin-bottom: 40px;
}
.container > .main-content > .courses-section h2 {
    text-align: center;
    color: white;
    margin-top: -30px;
    margin-bottom: 30px;
    font-size: 2em;
}
.container > .main-content > .courses-section > .courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 400px);
    justify-content: center;
    align-content: center;
    gap: 30px;
}
.container > .main-content > .courses-section > .courses-grid > .course-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.container > .main-content > .courses-section > .courses-grid > .course-card:hover {
    transform: translateY(-10px);
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-header {
    background: rgba(36, 80, 106, 1);
    color: white;
    padding: 20px;
    text-align: center;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-header h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body {
    padding: 20px;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body > .course-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body > .course-price {
    font-size: 1.5em;
    color: rgba(36, 80, 106, 1);
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body > .course-features {
    list-style: none;
    margin-bottom: 20px;
    color: #555;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body > .course-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body > .course-features li:before {
    content: "✓ ";
    color: rgba(36, 80, 106, 1);
    font-weight: bold;
    margin-right: 8px;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body > .enroll-button {
    width: 100%;
    padding: 12px;
    background: rgba(36, 80, 106, 1);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.container > .main-content > .courses-section > .courses-grid > .course-card > .course-body > .enroll-button:hover {
    background: rgb(71, 204, 38);
}
.container > .footer > .copyright-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
    color: #858585;
    padding: 20px;
}
.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;
}
