* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: #ffffff;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Course section container */
.course-section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Header styles */
.course-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.course-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.course-subtitle {
  font-size: 1.4rem;
  color: #5c6bc0;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Courses grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  height: auto;
}

/* Course card */
.course-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 41, 59, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 24px 0;
  height: auto;
  border: 1px solid #e0e0e0;
}

.course-card.simple-card {
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.1);
  padding: 0 0 28px 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(30, 41, 59, 0.07);
}

.card-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.course-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a237e;
  margin: 18px 0 8px 0;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.course-desc {
  font-size: 1.02rem;
  color: #444;
  margin: 0 18px 18px 18px;
  text-align: center;
  line-height: 1.5;
}

.discover-link-arrow {
  display: inline-block;
  margin-top: 8px;
  color: #1866b6;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  transition: color 0.18s, text-shadow 0.18s;
  outline: none;
  background: none;
  border: none;
}
.discover-link-arrow .arrow {
  font-size: 1.18em;
  margin-left: 6px;
  transition: transform 0.18s;
}
.discover-link-arrow:hover,
.discover-link-arrow:focus {
  color: #0050a3;
  text-shadow: 0 2px 8px rgba(24, 102, 182, 0.1);
}
.discover-link-arrow:hover .arrow,
.discover-link-arrow:focus .arrow {
  transform: translateX(4px);
}

.course-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card header with image */
.card-header {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .card-header img {
  transform: scale(1.05);
}

/* Badge styles */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
}

.badge.offline {
  background: linear-gradient(90deg, #ff7043, #ff8a65);
}

.badge.live {
  background: linear-gradient(90deg, #ab47bc, #ce93d8);
}

/* Card content */
.card-content {
  padding: 16px 18px 14px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.course-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #5c6bc0;
  margin-bottom: 20px;
}

.course-info {
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}

.info-item i {
  width: 24px;
  color: #5c6bc0;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag {
  background: #e8eaf6;
  color: #3949ab;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Highlight card */
.highlight-card {
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  color: white;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(26, 35, 126, 0.2);
}

.highlight-card .title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.4;
}

.highlight-card .subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #c5cae9;
  margin-bottom: 25px;
}

.highlight-card .badge {
  position: static;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

/* Responsive styles */
@media (max-width: 1100px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding: 30px 15px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .course-header h1 {
    font-size: 2.2rem;
  }

  .course-subtitle {
    font-size: 1.1rem;
  }

  .card-content {
    padding: 20px;
  }

  .course-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 20px 10px;
  }

  .course-header {
    margin-bottom: 30px;
  }

  .course-header h1 {
    font-size: 1.8rem;
  }

  .course-subtitle {
    font-size: 1rem;
  }

  .highlight-card {
    padding: 20px;
  }

  .highlight-card .title {
    font-size: 1.5rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000000;
  z-index: 1000;
  padding: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.nav-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  width: auto;
  margin-bottom: 0;
}

.logo {
  height: 35px; /* same height as searchbar */
  display: flex; /* flex to vertically center image */
  align-items: center;
  margin-right: 4px;
}

.logo-icon img {
  height: 100%; /* fill the logo container's height */
  width: auto; /* keep aspect ratio */
  display: block;
}

.searchbar {
  height: 35px;
  display: flex;
  align-items: center;
  background: transparent !important;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 2px 8px 2px 8px;
  transition: box-shadow 0.2s;
  border: 1px solid #e0e0e0;
  min-width: 250px;
  width: 100%;
  position: relative;
}

.searchbar {
  height: 35px;
  display: flex;
  align-items: center;
  background: transparent !important;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  padding: 2px 8px 2px 8px;
  transition: box-shadow 0.2s;
  border: 1px solid #e0e0e0;
  min-width: 250px;
  width: 100%;
  position: relative;
}

.searchbar:focus-within {
  box-shadow: 0 4px 16px rgba(61, 59, 64, 0.12);
  border-color: #bdbdbd;
}

.searchbar input {
  border: none;
  outline: none;
  background: transparent;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  width: 170px;
  color: white;
  height: 100%; /* fill the searchbar height */
}

.searchbar .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
  pointer-events: none;
}

.searchbar button {
  border: none;
  background: none;
  cursor: pointer;
  color: #00000000;
  font-size: 18px;
  display: none;
  align-items: center;
  transition: color 0.2s;
}

.searchbar button:hover {
  color: #222;
}

#nav-menu {
  display: flex;
  list-style: none;
  transition: transform 0.4s ease;
}

#nav-menu li {
  margin: 0 10px;
  position: relative;
}

#nav-menu li a {
  text-decoration: none;
  color: white;
  padding: 7px 0;
  display: inline-block;
  position: relative;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.01em;
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

#nav-menu li a:hover {
  color: rgb(51, 51, 51) !important;
  text-shadow: 0 1px 6px rgba(255, 193, 7, 0.1);
}

#nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #1866b6;
  transition: width 0.3s ease;
}

#nav-menu li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-left: 10px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop styles */
@media (min-width: 901px) {
  #nav-menu {
    display: flex !important;
  }
}

/* Mobile styles */
@media (max-width: 900px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .hamburger {
    display: flex;
    order: 2;
  }

  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #3d3b40;
    flex-direction: column;
    padding: 80px 30px 30px;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    display: flex !important;
    transform: translateX(0);
    transition: right 0.4s ease;
  }

  #nav-menu.open {
    right: 0;
  }

  #nav-menu li {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s, transform 0.4s;
  }

  #nav-menu.open li {
    opacity: 1;
    transform: translateX(0);
  }

  #nav-menu li:nth-child(1) {
    transition-delay: 0.1s;
  }
  #nav-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  #nav-menu li:nth-child(3) {
    transition-delay: 0.3s;
  }
  #nav-menu li:nth-child(4) {
    transition-delay: 0.4s;
  }
  #nav-menu li:nth-child(5) {
    transition-delay: 0.5s;
  }

  #nav-menu li a {
    font-size: 18px;
    padding: 12px 0;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 1002;
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.content {
  max-width: 1200px;
  margin: 100px auto 50px;
  padding: 20px 24px;
  border-radius: 15px;
  margin-top: 8px;
  margin-bottom: 4px;
}

.content-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  background: transparent;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Reposiveness Rules in header*/
@media (max-width: 900px) {
  .content {
    margin-top: 80px;
  }
}

/* Hide the close button on desktop views */
@media (min-width: 768px) {
  li.close-menu-li {
    display: none !important;
  }
}

/* Ensure it's visible on mobile */
@media (max-width: 767px) {
  li.close-menu-li {
    display: block; /* Or list-item/inline-block depending on your layout */
  }
}
/* Reposiveness Rules in header end*/

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 80px 0 24px 0;
  gap: 18px;
}

.contact-us-container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-us {
  background: #3d3b40;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.contact-us:hover {
  background: #1866b6;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 16px;
}

.ig-id {
  background: #fff url("/logo/instagram.png") no-repeat center center;
  background-size: 60% 60%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

.youtube-id {
  background: #fff url("/logo/youtube.png") no-repeat center center;
  background-size: 60% 60%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

.viber-id {
  background: #fff url("/logo/viber.png") no-repeat center center;
  background-size: 60% 60%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  margin: 0;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

.social-links {
  display: inline-flex;
  gap: 10px;
	padding-left: 380px;
    
}

.ig-id,
.youtube-id,
.whatsapp-id {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}

/*Responsive Rules for contact*/
@media (max-width: 600px) {
  .content-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-us-container {
    justify-content: flex-start;
  }

  .contact-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .contact-us-container {
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .contact-row > a.zoom-link {
    margin-bottom: 4px !important;
    display: block;
  }
  .contact-us-container > .contact-us {
    margin-bottom: 4px !important;
  }
}
/*Responsive Rules for contact end*/

/*Responsive Rules for image end*/
.partnership {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 0 0;
}

.partnership h2 {
  text-align: center;
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 24px;
  color: #3d3b40;
}

.partner-logos {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 8px 16px;
  transition: transform 0.2s;
}

.partner-logos img:hover {
  transform: scale(1.05);
}

/*Responsive Rules for partnership*/
@media (max-width: 700px) {
  .partner-logos {
    gap: 16px;
  }
  .partner-logos img {
    height: 40px;
    max-width: 90vw;
    padding: 6px 8px;
  }
}

@media (max-width: 500px) {
  .partner-logos {
    flex-direction: column;
    gap: 10px;
  }
  .partner-logos img {
    height: 32px;
    max-width: 98vw;
    flex: 0 0 auto;
  }
}
/* Responsive Rules for Category Buttons layout end */

/* Modal Styles */
.gold-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
}

.gold-modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 32px 24px 24px 24px;
  border-radius: 12px;
  max-width: 350px;
  box-shadow: 0 4px 24px rgba(24, 102, 182, 0.13);
  text-align: center;
  position: relative;
}

.gold-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.7em;
  color: #888;
  cursor: pointer;
}

.gold-login-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  background: #1866b6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.gold-login-link:hover {
  background: #2d8cff;
}

/*Responsive Rules for Modal*/
@media (max-width: 900px) {
  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .learning-thumb {
    height: 120px;
  }
}

@media (max-width: 600px) {
  .learning-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .learning-card {
    padding: 0 0 10px 0;
  }
  .learning-thumb {
    height: 80px;
  }
  .learning-caption {
    font-size: 1em;
  }
}
/*Responsive Rules for Modal end*/

.gold-highlight {
  color: #fff;
  background: linear-gradient(90deg, #ffc107 60%, #ffe082 100%);
  padding: 2px 10px;
  border-radius: 8px;
  font-weight: 700;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.13);
}

.avail-link {
  color: #ffc107;
  font-weight: 500;
  font-size: 20px;
  margin-top: 8px;
}

/*Responsive Rules for card benefits*/
@media (max-width: 700px) {
  .card-benefits-inner {
    padding: 28px 10px 24px 10px;
  }
  .card-benefits-title {
    font-size: 1.3em;
  }
  .card-benefits-desc {
    font-size: 1em;
  }
}
/*Responsive Rules for card benefits end*/

/* Login button: dark background, white text, professional look */
#nav-menu li.login-register a {
  background: #3d3b40;
  color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 22px;
  box-shadow: 0 2px 12px rgba(61, 59, 64, 0.13);
  margin-left: 10px;
  transition: 0.2s, color 0.2s, box-shadow 0.2s;
  border: 1.5px solid #3d3b40;
  letter-spacing: 0.5px;
  font-size: 1.08em;
  text-transform: uppercase;
}

#nav-menu li.login-register a:hover {
  background: #1866b6;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(24, 102, 182, 0.18);
  text-decoration: none;
}

#nav-menu li.login-register a::after {
  display: none !important;
}

/*Responsive Rules for login and register*/
@media (max-width: 900px) {
  #nav-menu li.login-register a {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0 0 0;
    font-size: 1.15em;
    padding: 14px 0;
  }
}
/*Responsive Rules for login and register end*/

.lang-toggle-btn {
  background: none;
  border: none;
}

.lang-toggle-btn:hover,
.lang-toggle-btn:focus {
  background: #1866b6;
  color: #fff;
  border-color: #1866b6;
}

/* Responsive Rules for Language Toggle Button */
@media (max-width: 600px) {
  .lang-toggle-btn {
    font-size: 0.88rem;
    padding: 3px 10px;
    min-width: 60px;
    min-height: 24px;
  }
}
/* Responsive Rules for Language Toggle Button end*/

/* Language toggle button styles */
#lang-toggle {
  font-size: 0.97em;
  padding: 6px 12px;
  border-radius: 14px;
  color: #1866b6;
  font-weight: 600;
  min-width: 0;
  line-height: 1.1;
  margin-left: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.18s, color 0.18s, border 0.18s;
}

#lang-toggle:hover,
#lang-toggle:focus {
  background: #1866b6;
  color: #fff;
  border-color: #1866b6;
}

/* Responsive Rules for Learning Section */
@media (max-width: 900px) {
  #lang-toggle {
    font-size: 1.08em;
    padding: 10px 16px;
    border-radius: 18px;
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    min-width: 0;
    display: block;
  }
}
/* Responsive Rules for Language Toggle Button end*/

/* Footer*/
		footer {
			background-color: #000;
			color: #fff;
			padding: 60px 0 30px;
			margin-top: auto;
		}
		
		.footer-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-column h3 {
			font-size: 1.4rem;
			margin-bottom: 25px;
			position: relative;
			padding-bottom: 10px;
		}
		
		.footer-column h3::after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 50px;
			height: 3px;
			background: linear-gradient(to right, #00BBFF, #000000);
			border-radius: 3px;
		}
		
		.footer-logo {
			display: flex;
			align-items: center;
			margin-bottom: 20px;
		}
		
		.footer-logo i {
			font-size: 2.5rem;
			color: #00BBFF;
			margin-right: 15px;
		}
		
		.footer-logo span {
			font-size: 1.8rem;
			font-weight: 700;
			background: linear-gradient(to right, #00BBFF, #000000);
			-webkit-background-clip: text;
			background-clip: text;
			-webkit-text-fill-color: transparent;
		}
		
		.footer-column p {
			line-height: 1.7;
			color: #aaa;
			margin-bottom: 20px;
		}
		
		.footer-links {
			list-style: none;
		}
		
		.footer-links li {
			margin-bottom: 15px;
		}
		
		.footer-links a {
			color: #ddd;
			text-decoration: none;
			transition: color 0.3s ease;
			display: flex;
			align-items: center;
		}
		
		.footer-links a i {
			margin-right: 10px;
			color: #00BBFF;
			width: 20px;
			text-align: center;
		}
		
		.footer-links a:hover {
			color: #00BBFF;
		}
    
.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  margin-bottom: 15px;
  color: #ddd;
}

.contact-info i {
  color: #ffd700;
  margin-right: 15px;
  min-width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  color: #ffd700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #ffd700, #ff6b00);
  color: #000;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
  outline: none;
}

.newsletter-form button {
  background: linear-gradient(to right, #ffd700, #ff6b00);
  color: #000;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive Rules for footer */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-logo {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
  .newsletter-form {
    justify-content: center;
  }
  .content h1 {
    font-size: 2.2rem;
  }
}
/* Responsive Rules for footer end */

/* Auth Modal Styles */
.auth-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.auth-modal.open {
  display: flex;
}

.auth-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 370px;
  width: 98vw;
  max-height: 92vh;
  padding: 36px 18px 28px 18px;
  box-shadow: 0 8px 32px rgba(24, 102, 182, 0.13);
  position: relative;
  text-align: left;
  animation: fadeIn 0.3s;
  overflow-y: auto;
}

/* Responsive Rules for Auth modal */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Responsive Rules for Auth end */

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 2em;
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10;
  transition: color 0.2s;
}

.auth-modal-close:hover,
.auth-modal-close:focus {
  color: #1866b6;
  outline: none;
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.auth-tab {
  background: #f5f7fa;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 10px 28px;
  font-size: 1.08em;
  font-weight: 600;
  color: #3d3b40;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.auth-tab.active {
  background: #3d3b40;
  color: #fff;
}

.auth-tab-content {
  display: block;
}

.auth-tab-content[style*="display:none"] {
  display: none !important;
}

.auth-modal-content h2 {
  text-align: center;
  color: #1866b6;
  font-size: 1.4em;
  margin-bottom: 18px;
}

.google-signin-btn {
  width: 100%;
  background: #fff;
  color: #1866b6;
  border: 1.5px solid #1866b6;
  border-radius: 8px;
  font-size: 1.08em;
  font-weight: 600;
  padding: 10px 0;
  margin-bottom: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.google-signin-btn:hover {
  background: #1866b6;
  color: #fff;
  border-color: #1866b6;
}

.auth-divider {
  width: 100%;
  text-align: center;
  margin: 12px 0 18px 0;
  position: relative;
}

.auth-divider span {
  background: #fff;
  color: #888;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  font-size: 0.98em;
}

.auth-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  z-index: 0;
}

.auth-modal-content form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-modal-content label {
  font-size: 1em;
  color: #3d3b40;
  font-weight: 500;
  margin-bottom: 2px;
}

.auth-modal-content input {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1.5px solid #e0e0e0;
  font-size: 1em;
  outline: none;
  transition: border 0.2s;
}

.auth-modal-content input:focus {
  border: 1.5px solid #1866b6;
}

.auth-submit {
  background: #1866b6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.08em;
  font-weight: 600;
  padding: 12px 0;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.auth-submit:hover {
  background: #2d8cff;
}

.auth-loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #e3e9f2;
  border-top: 5px solid #2d8cff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Responsive animation for Auth modal */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 500px) {
  .auth-modal-content {
    padding: 18px 4vw 18px 4vw;
    max-width: 98vw;
  }
  .auth-tabs {
    gap: 2vw;
  }
}
/* Responsive animation for Auth modal */

/* Responsive Rules for Chat bot */
@media (max-width: 600px) {
  #chatbot-popup,
  #chatbot-loading {
    width: 98vw !important;
    height: 80vh !important;
    right: 1vw !important;
    bottom: 1vw !important;
    border-radius: 10px !important;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive Rules for Chat bot end*/

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
  width: 100%;
  padding-right: 38px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 1.2em;
  z-index: 2;
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 28px;
  transition: color 0.2s;
}

.toggle-password:focus,
.toggle-password:hover {
  color: #2d8cff;
}
/** Responsive Rules for Who We Are section end */

/*Forum Section*/
.forum-welcome-section {
  width: 100vw;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 80px 0;
  margin-top: 130px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.forum-welcome-card {
  text-align: center;
  padding: 0 20px;
}

.forum-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.forum-desc {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
}

.forum-highlight {
  display: inline-block;
  font-weight: 600;
  color: #2563eb;
  position: relative;
  padding: 0 5px;
}

.forum-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 4px;
  z-index: -1;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}

.stat-label {
  color: #64748b;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Decorative elements */
.decorative-element {
  position: absolute;
  opacity: 0.03;
  z-index: 1;
}

.decorative-element.circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 40px solid #2563eb;
  top: -200px;
  right: -200px;
}

.decorative-element.square {
  width: 300px;
  height: 300px;
  border: 30px solid #2563eb;
  bottom: -150px;
  left: -150px;
  transform: rotate(15deg);
}

.decorative-element.dots {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(#2563eb 3px, transparent 4px);
  background-size: 20px 20px;
  top: 50%;
  left: 10%;
  opacity: 0.07;
  transform: rotate(30deg);
}

/* Responsive design */
@media (max-width: 768px) {
  .forum-title {
    font-size: 2.2rem;
  }

  .forum-desc {
    font-size: 1.1rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stats-container {
    gap: 30px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .forum-title {
    font-size: 1.8rem;
  }

  .forum-desc {
    font-size: 1rem;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-value {
    font-size: 1.7rem;
  }
}
/* About and Why Sections */
.forum-why-section {
  background-color: #ffffff;
  margin-top: 24px;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
}

.forum-about-section {
  background-color: #ffffff;
  width: 100%;
  border-radius: 8px;
  padding: 8px;
}

.forum-about-card,
.forum-why-card {
  max-width: 800px;
  margin: 0 auto;
}

.forum-about-card h2,
.forum-why-card h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #3d3b40;
}

.forum-about-card p {
  text-align: center;
  line-height: 1.6;
  font-size: 1rem;
  color: #495057;
  margin-bottom: 20px;
}

.forum-why-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.forum-why-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #495057;
}

.forum-why-list li i {
  color: #1866b6;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Modal Styles */
.forum-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.forum-modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.forum-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  background: none;
  border: none;
}

.forum-modal-close:hover {
  color: #3d3b40;
}

.forum-modal-content h3 {
  margin-bottom: 20px;
  color: #3d3b40;
  font-size: 1.5rem;
}

#new-thread-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#new-thread-form label {
  font-weight: 600;
  color: #3d3b40;
}

#new-thread-form input,
#new-thread-form textarea {
  padding: 12px 15px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

#new-thread-form textarea {
  min-height: 150px;
  resize: vertical;
}

.forum-modal-submit {
  background: #1866b6;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.forum-modal-submit:hover {
  background: #2d8cff;
}

/* Responsive Styles for forum*/
@media (max-width: 768px) {
  .forum-title {
    font-size: 2rem;
  }

  .forum-desc {
    font-size: 1rem;
  }

  .forum-section-title {
    font-size: 1.5rem;
  }

  .forum-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .forum-title {
    font-size: 1.8rem;
  }

  .forum-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .forum-new-thread-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Forum Brochure Section */
.forum-brochure-section {
  padding: 40px 20px 30px 20px;
  margin: 30px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.forum-brochure-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1866b6;
  margin-bottom: 32px;
}

.forum-brochure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 900px) {
  .forum-brochure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .forum-brochure-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 20px;
  margin-bottom: 50px;
  border-radius: 8px;
}

.button {
  background: linear-gradient(to bottom, #0050a3, #004183);
  border: 2px solid #1a237e;
  color: #000000;
  padding: 14px 25px;
  margin: 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.3px;
}

.button:hover {
  background: #1a237e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(26, 35, 126, 0.2);
}

.button:active {
  transform: translateY(0);
}

.forum-brochure-card {
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e0e0e0;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e0e0e0;
  overflow: hidden;
}

.forum-brochure-card:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
}

.forum-brochure-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
  display: none;
}

.forum-brochure-card h3 {
  font-size: 1.18em;
  font-weight: 700;
  color: #1866b6;
  margin-bottom: 10px;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
  margin-top: 18px;
}

.forum-brochure-card p {
  color: #444;
  font-size: 1em;
  line-height: 1.5;
  font-size: 1.04em;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

/* Enhanced Brochure Card Button & Card Effects */
.brochure-discover-btn {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 2;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 5px 16px 5px 12px;
  font-size: 0.92em;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(24, 102, 182, 0.1),
    0 1px 4px rgba(255, 193, 7, 0.13);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  cursor: pointer;
  transition: 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s, border 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  outline: none;
  overflow: hidden;
}

.brochure-discover-btn .arrow {
  font-size: 1.2em;
  transition: transform 0.2s;
}

.brochure-discover-btn:hover,
.brochure-discover-btn:focus {
  background: rgba(255, 255, 255, 0.32) !important;
  color: #1866b6 !important;
  box-shadow: 0 8px 32px rgba(255, 193, 7, 0.18),
    0 2px 12px rgba(24, 102, 182, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

/* Internal shadow at the top for better text readability */
.forum-brochure-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.38) 70%,
    rgba(0, 0, 0, 0.08) 100%,
    transparent 100%
  );
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12) inset;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.forum-brochure-card:hover::before {
  opacity: 1;
}

.forum-brochure-card:hover::before {
  opacity: 0.22;
}

.forum-brochure-card img {
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(255, 193, 7, 0.13);
  background: #fffbe7;
}

.forum-brochure-card h3 {
  letter-spacing: 0.5px;
}

.forum-brochure-card p {
  font-size: 1.04em;
  color: #6c4c00;
}

@media (max-width: 900px) {
  .brochure-discover-btn {
    padding: 9px 18px 9px 16px;
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  .brochure-discover-btn {
    padding: 8px 12px 8px 10px;
    font-size: 0.97em;
  }
  .forum-brochure-card img {
    border-radius: 10px;
  }
}

/* Responsive Rules for Forum Brochure Section */
@media (max-width: 900px) {
  .forum-brochure-grid {
    gap: 16px;
    padding: 0 2vw;
  }
}
@media (max-width: 600px) {
  .forum-brochure-section {
    padding: 24px 4vw 18px 4vw;
  }
  .forum-brochure-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  .forum-brochure-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }
  .forum-brochure-card {
    padding: 14px 8px 10px 8px;
    border-radius: 10px;
  }
  .forum-brochure-card img {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
  }
  .forum-brochure-card h3 {
    font-size: 1em;
    margin-bottom: 6px;
  }
  .forum-brochure-card p {
    font-size: 0.97em;
  }
}

/* Scrollable wrapper for all forum brochure cards (Show more/Hide) */
.forum-brochure-scroll-wrapper {
  max-height: none;
  overflow: visible;
  transition: max-height 0.4s;
}
.forum-brochure-scroll-wrapper.scrollable {
  max-height: 520px;
  overflow-y: auto;
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}
@media (max-width: 900px) {
  .forum-brochure-scroll-wrapper.scrollable {
    max-height: 340px;
  }
}
@media (max-width: 600px) {
  .forum-brochure-scroll-wrapper.scrollable {
    max-height: 220px;
  }
}
/* Extra grid for additional forum brochure cards (scrollable after show more) */
.forum-brochure-extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 32px;
  overflow-x: auto;
  max-height: 420px;
  padding-bottom: 12px;
  transition: max-height 0.4s;
}

@media (max-width: 900px) {
  .forum-brochure-extra-grid {
    gap: 16px;
    padding: 0 2vw 12px 2vw;
    max-height: 320px;
  }
}

@media (max-width: 600px) {
  .forum-brochure-extra-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 10px 0;
    max-height: 220px;
  }
}
/* Show more button for forum brochure section */
.forum-brochure-showmore-btn {
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85em 2.5em;
  border: none;
  border-radius: 2em;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin: 0 auto;
  transition: 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 0.03em;
  outline: none;
  display: inline-block;
}
.forum-brochure-showmore-btn:hover,
.forum-brochure-showmore-btn:focus {
  background: #222;
  color: #1866b6;
  transform: translateY(-2px) scale(1.04);
}

/* Responsive styles for main button group */
@media (max-width: 700px) {
  .button-container {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 4vw;
    gap: 0;
  }
  .button {
    min-width: 0;
    width: 100%;
    margin: 7px 0;
    font-size: 1em;
    padding: 12px 10px;
    border-radius: 10px;
    justify-content: flex-start;
  }
  .button img {
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .button {
    font-size: 0.97em;
    padding: 10px 6px;
    border-radius: 8px;
  }
}
/** Date under course image */
.course-date {
  font-size: 0.875rem;
  color: #666;
  margin: 8px 18px 12px;
  padding: 4px 0;
  text-align: center;
}
