@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

:root {
    --green: #2ecc71;
    --orange: #e67e22;
    --red: #e74c3c;
    --blue: #3498db;
    --dark-blue: #2980b9;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-gray: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--blue);
}

/* Page Header */
.page-header {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.9);
}

.date {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header i {
    color: var(--text-gray);
    cursor: pointer;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.card-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.progress-container {
    margin-top: auto;
}

.progress {
    background-color: var(--medium-gray);
    border-radius: 10px;
    height: 6px;
    margin: 8px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
}

.card-footer {
    padding: 15px 20px;
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-to-cart {
    background-color: var(--dark-gray);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #495057;
}

.view-price {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

/* Card Color Variations */
.green .progress-bar,
.green .view-price:hover {
    background-color: var(--green);
    color: var(--green);
}

.orange .progress-bar,
.orange .view-price:hover {
    background-color: var(--orange);
    color: var(--orange);
}

.red .progress-bar,
.red .view-price:hover {
    background-color: var(--red);
    color: var(--red);
}

.blue .progress-bar,
.blue .view-price:hover {
    background-color: var(--blue);
    color: var(--blue);
}

/* Footer */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

:root {
    --green: #2ecc71;
    --orange: #e67e22;
    --red: #e74c3c;
    --blue: #3498db;
    --dark-blue: #2980b9;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-gray: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    list-style: none;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--blue);
}

/* Page Header */
.page-header {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.9);
}

.date {
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header i {
    color: var(--text-gray);
    cursor: pointer;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.card-body p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.progress-container {
    margin-top: auto;
}

.progress {
    background-color: var(--medium-gray);
    border-radius: 10px;
    height: 6px;
    margin: 8px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
}

.card-footer {
    padding: 15px 20px;
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-to-cart {
    background-color: var(--dark-gray);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #495057;
}

.view-price {
    color: var(--dark-gray);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

/* Card Color Variations */
.green .progress-bar,
.green .view-price:hover {
    background-color: var(--green);
    color: var(--green);
}

.orange .progress-bar,
.orange .view-price:hover {
    background-color: var(--orange);
    color: var(--orange);
}

.red .progress-bar,
.red .view-price:hover {
    background-color: var(--red);
    color: var(--red);
}

.blue .progress-bar,
.blue .view-price:hover {
    background-color: var(--blue);
    color: var(--blue);
}

/* Footer */
/* Footer Styles */
.site-footer {
  background-color: #2a2d34;
  color: #ffffff;
  padding: 60px 0 0;
  font-family: 'Nunito', sans-serif;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  padding: 0 15px;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #00bed3;
}

.footer-text {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Brand Column */
.footer-brand {
  padding-right: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #00bed3;
  transform: translateY(-3px);
}

/* Links Column */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #00bed3;
}

.footer-links i {
  margin-right: 8px;
  font-size: 10px;
  color: #00bed3;
}

/* Newsletter Column */
.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  background-color: #3a3e46;
  color: #ffffff;
}

.newsletter-form input::placeholder {
  color: #b0b0b0;
}

.newsletter-form button {
  background-color: #00bed3;
  color: white;
  border: none;
  padding: 0 18px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #0099ad;
}

/* Contact Column */
.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 15px;
  color: #00bed3;
  font-size: 16px;
  margin-top: 3px;
}

.contact-info span {
  color: #b0b0b0;
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b0b0b0;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .footer-col {
      margin-bottom: 30px;
  }
  
  .footer-brand {
      padding-right: 15px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .nav-link {
        padding: 8px 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .nav-link {
        padding: 8px 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
}
/* Contact Page Styles */
.contact-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), url('images/kaybg2.jpg') no-repeat center center);
  background-size: cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.contact-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00bed3;
  outline: none;
}

.submit-btn {
  background-color: #00bed3;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background-color: #0099ad;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #00bed3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #0099ad;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-grid {
      grid-template-columns: 1fr;
  }
  
  .contact-image {
      order: 2;
  }
  
  .contact-form-container {
      order: 1;
  }
}

@media (max-width: 768px) {
  .contact-header {
      padding: 80px 0;
  }
  
  .contact-header h1 {
      font-size: 2.2rem;
  }
  
  .contact-form-container {
      padding: 30px 20px;
  }
}