.carousel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: white;
	margin-top: 100px;
	text-align: center;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.3);
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
  }
.slide-title{
	font-size: 25px;
}
  .slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 0;
  }

  .slide-content {
	width: 61%;
	background-color: rgba(0,0,0,0.6);
	text-align: center;
	padding: 20px;
    position: absolute;
    z-index: 2;
    max-width: 80%;
	border-radius: 10px;
	bottom: 30px;
	left: 18%;
  }

  .slide h2 {
    margin: 0 0 10px;
    font-size: 24px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  }

  .slide spans {
    margin: 0 0 15px;
    font-size: 16px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  }

  .slide button {
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.4);
    transition: background 0.3s ease;
  }

  .slide button:hover {
    background: #ffffff;
	color: black;
  }

  /* Navigation buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
    z-index: 3;
  }

  .nav-btn:hover {
    background: rgba(0,0,0,0.7);
  }

  .prev {
    left: 200px;
  }

  .next {
    right: 200px;
  }
/* About Section Styles */
.about-section {
	max-width: 1300px;
	margin: 80px 160px;
	background: #fff;
	border-radius: 10px;
}
.about-section2 {
	max-width: 1300px;
	margin: 30px 160px;
	background: #fff;
	border-radius: 10px;
}
.about-title {
	font-size: 20px;
	margin-bottom: 18px;
    font-weight: lighter;
	color: #222;
	font-family: 'Inter', 'Myanmar Text', 'Noto Sans', sans-serif;
}
.about-text {
	font-size: 15px;
	color: #222;
	line-height: 2.1;
	margin-bottom: 24px;
	font-family: 'Inter', 'Myanmar Text', 'Noto Sans', sans-serif;
}
.about-text2 {
	font-size: 14px;
	color: #585757;
	line-height: 2.1;
	margin-bottom: 24px;
	font-family: 'Inter', 'Myanmar Text', 'Noto Sans', sans-serif;
}
.about-images {
	display: flex;
	gap: 1px;
	justify-content: flex-start;
	align-items: flex-end;
}
.about-images img {
	width: 300px;
	height: 200px;
	object-fit: cover;
	box-shadow: 0 2px 8px #0001;
	background: #f5f5f5;
}
.about-section3 {
	max-width: 1300px;
	margin: 80px 160px;
	background: #fff;
	border-radius: 10px;
}
.about-images3 {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.about-images3 img {
	width: 300px;
	height: 230px;
	object-fit: cover;
	box-shadow: 0 2px 8px #0001;
	background: #f5f5f5;
}
@media (max-width: 900px) {
	.about-section { padding: 12px 4px; }
	.about-images { flex-direction: column; gap: 10px; align-items: center; }
	.about-images img { width: 100%; max-width: 320px; height: auto; }
}
/* Contact Page Styles */
.contact-banner {
	background: #fafafa;
	padding: 48px 0 32px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 100vw;
}
.contact-title {
	font-size: 2.4rem;
	font-weight: 600;
	margin-left: 12vw;
	font-family: 'Inter', 'Myanmar Text', 'Noto Sans', sans-serif;
}
.contact-breadcrumb {
	font-size: 1.2rem;
	color: #222;
	margin-right: 12vw;
	font-family: 'Inter', 'Myanmar Text', 'Noto Sans', sans-serif;
}
.contact-breadcrumb a {
	color: #111;
	text-decoration: none;
	font-weight: 600;
}
.contact-content {
	margin: 48px 160px 100px 160px;
	font-size: 14px;
	color: #666666;
	font-family: 'Inter', 'Myanmar Text', 'Noto Sans', sans-serif;
	line-height: 2.1;
}

@media (max-width: 900px) {
	.contact-banner { flex-direction: column; align-items: flex-start; padding: 32px 0 18px 0; }
	.contact-title { margin-left: 6vw; }
	.contact-breadcrumb { margin-right: 6vw; margin-top: 12px; }
	.contact-content { padding: 0 12px; }
}
/* Comment Section Styles */
.comment-section {
	max-width: 1150px;
	margin: 40px auto 0 auto;
	padding: 0 24px 40px 24px;
}
.comment-title {
    font-size: 20px;
	margin-bottom: 18px;
	color: #111;
}
.comment-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.comment-form-row {
	display: flex;
	gap: 24px;
}
.comment-form-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.input-group {
	position: relative;
	display: flex;
	align-items: center;
}
.input-group input {
	width: 100%;
	padding: 18px 44px 18px 18px;
	font-size: 1.1rem;
	border: 1.5px solid #eee;
	border-radius: 6px;
	outline: none;
	background: #fff;
	color: #222;
	transition: border 0.2s;
}
.input-group input:focus {
	border-color: #d2691e;
}
.input-icon {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
.comment-form-col textarea {
	width: 100%;
	min-height: 170px;
	padding: 18px;
	font-size: 1.1rem;
	border: 1.5px solid #eee;
	border-radius: 6px;
	outline: none;
	background: #fff;
	color: #222;
	resize: vertical;
	transition: border 0.2s;
}
.comment-form-col textarea:focus {
	border-color: #d2691e;
}
.comment-submit {
	margin-top: 18px;
	padding: 13px 0;
	width: 180px;
	background: #222;
	color: #fff;
	font-size: 1rem;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	letter-spacing: 1px;
	transition: background 0.2s;
}
.comment-submit:hover {
	background: #d2691e;
}
@media (max-width: 900px) {
	.comment-form-row {
		flex-direction: column;
	}
	.comment-form-col {
		width: 100%;
	}
	.comment-submit {
		width: 100%;
	}
}
hr {
	border: none;
	border-top: 1px solid #eae9e9;
	width: 100%;
}
/* Make nav sticky for subpages that use <nav> instead of .navbar */
nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: #fff;
	z-index: 1002;
	box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

body {
	padding-top: 80px;
}
/* Meditation Methods Overview Page Styles */
.methods-hero {
	background: linear-gradient(120deg, #b2d8e6 0%, #e0e7ef 100%);
	padding: 3rem 0 2rem 0;
	text-align: center;
}
.methods-hero-content {
	max-width: 700px;
	margin: 0 auto;
}
.methods-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #2a3a4b;
	margin-bottom: 12px;
	letter-spacing: 1px;
}
.methods-desc {
	font-size: 1.15rem;
	color: #4a5a6a;
	margin-bottom: 0;
	line-height: 1.7;
}
.methods-list-section {
	background: #fff;
	padding: 2.5rem 0 2rem 0;
}
.methods-list-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}
.method-list-card {
	background: #faf9f9;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s, transform 0.2s;
}
.method-list-card:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.10);
	transform: translateY(-4px) scale(1.02);
}
.method-list-card img {
	width: 100%;
	max-width: 320px;
	height: 180px;
	object-fit: cover;
	border-radius: 12px 12px 0 0;
	margin-bottom: 0;
}
.method-list-card-content {
	padding: 1.2rem 1.2rem 1.2rem 1.2rem;
	text-align: center;
}
.method-list-card-content h2 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #2a3a4b;
	margin: 0 0 0.5rem 0;
}
.method-list-card-content p {
	font-size: 1rem;
	color: #4a5a6a;
	margin: 0;
}
@media (max-width: 700px) {
	.methods-title {
		font-size: 1.3rem;
	}
	.methods-list-grid {
		gap: 1rem;
	}
	.method-list-card img {
		height: 120px;
	}
}
/* Method Page Styles */
.method-hero {
	background: linear-gradient(120deg, #b2d8e6 0%, #e0e7ef 100%);
	padding: 3rem 0 2rem 0;
	text-align: center;
}
.method-hero-img {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.method-hero-img img {
	width: 100%;
	max-width: 700px;
	height: 320px;
	object-fit: cover;
	display: block;
	border-radius: 12px;
	margin: 0 auto 24px auto;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.method-hero-content {
	max-width: 700px;
	margin: 0 auto;
}
.method-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: #2a3a4b;
	margin-bottom: 12px;
	letter-spacing: 1px;
}
.method-desc {
	font-size: 1.15rem;
	color: #4a5a6a;
	margin-bottom: 0;
	line-height: 1.7;
}
.method-detail {
	background: #fff;
	padding: 2.5rem 0 2rem 0;
}
.method-detail-card {
	max-width: 700px;
	margin: 0 auto;
	background: #faf9f9;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	padding: 32px 28px 28px 28px;
}
.method-detail-card h2 {
	color: #2a3a4b;
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
}
.method-steps {
	font-size: 1.08rem;
	color: #3a4a5b;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	padding-left: 1.2rem;
}
.method-steps li {
	margin-bottom: 0.7rem;
}
.method-note {
	background: #e0e7ef;
	color: #2a3a4b;
	border-radius: 8px;
	padding: 1rem 1.2rem;
	font-size: 1rem;
	margin-top: 1.2rem;
	text-align: left;
}
@media (max-width: 700px) {
	.method-hero-img img {
		height: 180px;
	}
	.method-title {
		font-size: 1.3rem;
	}
	.method-detail-card {
		padding: 18px 8px 18px 8px;
	}
}
/* Third section: Meditation Methods */
.third-container {
	padding-top: 60px;
	padding-bottom: 40px;
	margin: auto;
	max-width: 1200px;
	box-sizing: border-box;
}
.third-card-row {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 60px;
}
.third-card {
	background-color: #faf9f9;
	width: 290px;
	min-width: 220px;
	flex: 1 1 220px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	margin-bottom: 24px;
	overflow: hidden;
}
.third-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}
.third-card .card-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.third-card .card-title {
	font-size: 17px;
	margin: 12px 0 8px 0;
}
.third-card .read-more-btn {
	align-self: flex-start;
	margin-top: 8px;
	padding: 10px 18px;
	font-size: 13px;
	background: #fa4205;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}
.third-card .read-more-btn:hover {
	background: #f13813;
}
/* Ensure all read more buttons in second-card align at the bottom */
.second-card-row {
	display: flex;
	gap: 32px;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}
.second-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 2px 12px rgba(0,0,0,0.07);
	width: 340px;
	min-width: 260px;
	margin-bottom: 24px;
	overflow: hidden;
}
.second-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}
.card-content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 18px 18px 18px 18px;
}
.card-content span {
	flex: 1 1 auto;
}
.read-more-btn {
	align-self: flex-start;
	margin-top: 8px;
}
/* Card title and read more button for second-container */
.card-title {
	font-size: 17px;
	margin: 12px 0 8px 0;
}
.read-more-btn {
	padding: 16px 18px;
	font-size: 13px;
	background: #fa4205;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}
.read-more-btn:hover {
	background: #f13813;
}
body.with-navbar-padding.navbar-shrink-padding {
	padding-top: 48px;
}
/* Scroll to top button */
#scrollToTopBtn {
	position: fixed;
	right: 32px;
	bottom: 32px;
	width: 44px;
	height: 44px;
	background: #d2691e;
	color: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.13);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 2000;
}
#scrollToTopBtn.show {
	opacity: 1;
	pointer-events: auto;
}
/* Center Meditation title */
.meditation-title {
	text-align: center;
    font-size: 25px;
	letter-spacing: 1px;
}
/* Flex row for cards */
.card-row {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
}

.card {
	padding: 28px 22px 22px 22px;
	max-width: 350px;
	min-width: 260px;
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.card p {
	font-size: 1.4rem;
	margin-bottom: 12px;
}
.card span {
	font-size: 14px;
	color: #515050;
}
.navbar-menu .dropdown-menu li a {
	text-decoration: none !important;
	border-bottom: none !important;
}
.navbar-menu .dropdown-menu li a:hover {
	text-decoration: none !important;
	border-bottom: none !important;
}
/* Dropdown styles */
.navbar-menu .has-dropdown {
	position: relative;
}
.navbar-menu .dropdown-menu {
	position: absolute;
	top: 100%; /* flush with menu, no gap */
	left: 0;
	right: auto;
    left: -20px;
	width: 205px;
	min-width: unset;
	transform: translateX(-50%) rotateX(-90deg);
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,0.07);
	border-radius: 0;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	pointer-events: none;
	transform: rotateX(-90deg);
	transform-origin: top center;
	transition: opacity 0.25s, transform 0.35s cubic-bezier(.4,0,.2,1);
	z-index: 1002;
}
.navbar-menu .has-dropdown:hover > .dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	transform: rotateX(0deg);
}
.navbar-menu .dropdown-menu li a {
	display: block;
	padding: 5px 24px;
	color: #444;
	font-size: 12px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}
.navbar-menu .dropdown-menu li a:hover {
	background: #f7f7f7;
	color: #d2691e;
}
/* Search bar push-down styles */
.search-bar {
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	background: #fff;
	box-shadow: 0 4px 24px rgba(0,0,0,0.07);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition:
		height 0.35s cubic-bezier(.4,0,.2,1),
		opacity 0.25s,
		padding 0.35s cubic-bezier(.4,0,.2,1);
	padding: 0 0;
	pointer-events: none;
}
.search-bar.active {
	height: 80px;
	opacity: 1;
	padding: 0 0;
	pointer-events: auto;
}
.search-bar-content {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 600px;
	padding: 0 24px;
}
.search-bar-input {
	flex: 1;
	font-size: 1.1rem;
	padding: 12px 16px;
	border: 1.5px solid #d2691e;
	border-radius: 6px;
	outline: none;
	color: #222;
	background: #faf9f7;
	transition: border 0.2s;
}
.search-bar-input:focus {
	border-color: #b85c16;
}
.search-bar-close {
	background: none;
	border: none;
	font-size: 2rem;
	color: #d2691e;
	cursor: pointer;
	margin-left: 16px;
	transition: color 0.2s;
	line-height: 1;
}
.search-bar-close:hover {
	color: #b85c16;
}
.navbar.search-active {
	transition: transform 0.35s cubic-bezier(.4,0,.2,1);
	transform: translateY(80px);
	z-index: 1000;
}
.navbar-search:hover svg circle,
.navbar-search:hover svg line {
	stroke: #d2691e;
	transition: stroke 0.2s;
}
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255,255,255,0.98);
	z-index: 9999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-100%);
	transition: opacity 0.3s, transform 0.4s cubic-bezier(.4,0,.2,1);
}
.search-overlay.active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.search-overlay-content {
	margin-top: 60px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	padding: 32px 24px 24px 24px;
	min-width: 320px;
	max-width: 90vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
.search-overlay-input {
	width: 320px;
	max-width: 80vw;
	font-size: 1.1rem;
	padding: 12px 16px;
	border: 1.5px solid #d2691e;
	border-radius: 6px;
	outline: none;
	margin-top: 12px;
	color: #222;
	background: #faf9f7;
	transition: border 0.2s;
}
.search-overlay-input:focus {
	border-color: #b85c16;
}
.search-overlay-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 2rem;
	color: #d2691e;
	cursor: pointer;
	transition: color 0.2s;
	line-height: 1;
}
.search-overlay-close:hover {
	color: #b85c16;
}
.navbar-divider {
	width: 1px;
	height: 26px;
	background: #e0e0e0;
	margin: 0 10px 0 24px;
	display: block;
}
body {
	margin: 0;
	padding: 0;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
/* Navbar Styles */

.navbar {
	background: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.03);
	padding: 22px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1002;
	transition: padding 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}

body.with-navbar-padding {
	padding-top: 80px;
}

.navbar.navbar-shrink {
	padding: 0;
	box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.navbar-container {
	/* max-width: 1200px; */
	padding: 0px 100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}
.navbar-left {
	display: flex;
	align-items: center;
}
.navbar-logo img {
	height: 70px;
	width: auto;
	display: block;
}
.navbar-right {
	padding-top: 0;
	display: flex;
	align-items: center;
}
.navbar-menu {
	display: flex;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Add vertical divider between main menu items */
.navbar-menu > li {
	position: relative;
	display: flex;
	align-items: center;
}
.navbar-menu > li:not(:last-child)::after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 28px;
	background: #e0e0e0;
	margin: 0 22px;
	vertical-align: middle;
	position: relative;
	z-index: 2;
}

/* Ensure dropdown parent li has same height as others for divider alignment */
.navbar-menu > li.has-dropdown {
	align-items: center;
}
/* Active menu link styles */
.navbar-menu li a {
	color: #141414;
	text-decoration: none;
	font-size: 14px;
	padding: 8px 0 4px 0;
	transition: color 0.2s;
	letter-spacing: 0.5px;
	position: relative;
}

/* Active menu link styles (JS) */
.navbar-menu li a.active,
.navbar-menu > li > a.active {
	color: #d2691e !important;
}
.navbar-menu li a.active::after,
.navbar-menu > li > a.active::after {
	width: 100%;
	left: 50%;
	background: #d2691e;
}
/* Pure CSS: highlight menu link on click/focus/active */
.navbar-menu li a:active,
.navbar-menu li a:focus {
	color: #d2691e !important;
}
.navbar-menu li a:active::after,
.navbar-menu li a:focus::after {
	width: 100%;
	left: 50%;
	background: #d2691e;
}
.navbar-menu li a::after {
	content: '';
	display: block;
	width: 0%;
	height: 1.5px;
	background: #d2691e;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	bottom: -7px;
	opacity: 1;
	transform: translateX(-50%);
	transition: width 0.3s cubic-bezier(.4,0,.2,1), background 0.2s, left 0.3s cubic-bezier(.4,0,.2,1);
}
/* UPDATED: hover effect ONLY for main menu links */
.navbar-menu > li > a:hover {
	color: #d2691e;
}
.navbar-menu > li > a:hover::after {
	width: 100%;
	left: 50%;
	background: #d2691e;
}
.navbar-search {
	background: none;
	border: none;
	margin-left: 0;
	cursor: pointer;
	padding: 6px;
	display: flex;
	align-items: center;
}
.navbar-search svg {
	display: block;
	width: 14px;
	height: 14px;
    stroke-width: 2.8;
}
@media (max-width: 768px) {
    /* Keep logo + search + menu btn visible */
    .navbar-menu {
        position: absolute;
        top: 70px; /* below navbar */
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        display: none; /* hidden by default */
        border-top: 1px solid #ddd;
        box-shadow: 0px 4px 6px rgba(0,0,0,0.05);
    }
    .navbar-menu li {
        border-bottom: 1px solid #eee;
    }
    .navbar-menu li a {
        display: block;
        padding: 12px 20px;
    }
    .navbar-right {
        gap: 10px;
    }
    .navbar-search {
        padding: 0;
    }
    .navbar-toggle {
        display: block;
    }
    /* Show menu when active */
    .navbar-menu.active {
        display: flex;
    }
}
.footer{
    height: 130px;
    background-color: #2c2c2c;
}
.slide-container {
    position: relative;
    overflow: hidden;
    height: 450px;
    margin-top: 60px;
    background-color: #e3e3e3;
}
.beginner-container{
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: #faf9f9;
}
.second-container{
    padding-top: 60px;
    padding-bottom: 40px;
}
.second-card-row {
	display: flex;
    gap: 20px;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
    margin-top: 80px;
}
.second-card {
    background-color: #faf9f9;
	max-width: 365px;
	min-width: 260px;
	flex: 1 1 260px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.card-content {
    padding: 20px;
    flex: 1;
}
.second-card span {
	font-size: 14px;
	color: #737272;
}
.third-card {
    background-color: #faf9f9;
	max-width: 120px;
	min-width: 270px;
	/* flex: 1 1 260px; */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.card-content {
    padding: 20px;
    flex: 1;
}
.second-card span {
	font-size: 14px;
	color: #737272;
}
.link{
    text-decoration: none;
}
.banner-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f7fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 80px 160px 30px 160px;
    font-size: 1.1rem;
    font-family: 'Myanmar Text', 'Noto Sans', sans-serif;
}
.banner-bar2 {
    background: #f5f7fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 80px 160px 30px 160px;
    font-size: 1.1rem;
    font-family: 'Myanmar Text', 'Noto Sans', sans-serif;
}
.banner-left {
    
font-size: 22px;
    color: #2a3a4b;
}
.banner-right {
    color: #4e4e4e;
    font-size: 1rem;
}
.banner-right2 {
    color: #4e4e4e;
    font-size: 1rem;
    float: right;
}
@media (max-width: 700px) {
    .banner-bar { flex-direction: column; align-items: flex-start; padding: 12px 10px; }
    .banner-right { margin-top: 4px; }
}
.img-container{
    padding: 60px 160px 0px 160px;
}
.container {
    max-width: 1150px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px 24px 24px;
}
.container2 {
    max-width: 800px;
    margin: 32px 50px 0 130px;
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px 24px 24px;
}
.post-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #222;
}
.post-title2 {
    font-size: 30px;
    margin-bottom: 12px;
    color: #222;
}
.post-meta {
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-bottom: 24px;
}
.post-meta2 {
    color: #888;
    font-size: 1rem;
}
.post-content {
    font-size: 14px;
    color: #222;
    line-height: 2.1;
}
@media (max-width: 700px) {
    .container { padding: 12px 4px; }
    .post-title { font-size: 1.2rem; }
}
.more{
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 30px 0;
    color: #d2691e;
}
.text-light{
 color: white;
}
.hide{
	display: none;
}
@media (max-width: 900px) {
	.navbar-container{
		padding: 0px 20px;
	}
	.navbar-container img{
		height: 50px;
		width: auto;
	}
}