body {
	margin: 0;
	font-family: Arial;
}
main {
    width: 96%;
    padding-left: 2%;
    padding-right: 2%;
    box-sizing: border-box;
    margin: 0 auto;
    word-break: break-word;
}
#headbar {
	background-color: #0452b7;
	position: fixed;
	top: 0;
	width: 100%;
	display: block;
	transition: top 0.3s;
	z-index: 1002;
}
#headbar #logo {
	font-size: 30px;
	font-weight: bold;
	transition: 0.4s;
}
#headbar a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 15px;
	text-decoration: none;
	font-size: 17px;
}
#headbar a:hover {
	transform: scale(1.12);
}
.ham {
	font-size: 30px;
	cursor: pointer;
	color: white;
	position: absolute;
	top: 10px;
	right: 15px;
}
.icon-bar {
	background-color: #0452b7;
	overflow: auto;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 1001;
}
.icon-bar a {
	float: left;
	width: 20%;
	text-align: center;
	padding: 06px 0;
	transition: all 0.3s ease;
	color: white;
	font-size: 16px;
	text-decoration: none;
}

.icon {
  width: 18px; /* Adjust size as needed */
  height: 18px; /* Adjust size as needed */
  filter: invert(100%);
}


.tdnone a {
	text-decoration: none;
}
.tdnone p {
	padding-left: 10px;
}
.bottom-gap {
	margin-top: 65px;
}
.top-gap {
	margin-top: 75px;
}
.icon-bar a:hover {
	background-color: #000;
}
.active {
	background-color: #04AA6D;
}
.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1004;
	top: 0;
	left: 0;
	background-color: #0039c6;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 25px;
}
.sidenav a {
	padding: 3px;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
}
.sidenav .closebtn {
	position: absolute;
	top: 12px;
	right: 10px;
	font-size: 26px;
	margin-left: 50px;
	color: white;
	text-align: center;
	font-weight: bolder;
}
@media screen and (max-height:450px) {
.sidenav {
	padding-top: 8px;
}
}
.user__button {
	display: inline-flex;
	flex-flow: row nowrap;
	align-items: center;
	padding: 0;
	background: none;
	color: #a7bbeb;
	border: 0;
	overflow: hidden;
	border-radius: 0.5rem;
	cursor: pointer;
	outline-offset: -2px;
	transition-property: background, color;
	transition-duration: 250ms;
	border-radius: 50vh;
	width: 100%;
	max-width: 100%;
	color: #fff;
}
.is-active .user__button {
	color: #fff;
}
.user__button:focus-visible {
	outline: 2px solid #2c5bd0;
}
.user__button:focus-visible, .user__button:hover {
	background: #0d43c9;
	color: #fff;
}
.user__badge {
	flex: 0 0 auto;
	width: 2.5rem;
	height: 2.5rem;
	padding: 2px;
}
.user__svg {
  width: 1.5rem; /* Adjust as needed */
  height: 1.5rem; /* Adjust as needed */
  border-radius: 50%; /* Make it circular if necessary */
}
.user__image {
  width: 100%;
  height: 100%;
  border-radius: 100%; /* Keep the circular shape */
  background: #CFD8DC;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Ensure the SVG stays within the circle */
}
.user__image .user__svg { /* Target the SVG inside the image */
  /* No need to set width/height here if they're already set in .user__svg */
}
.user__image .fa {
	color: #263238;
	font-size: 1.5rem;
}
.user__text {
	display: inline-block;
	flex: 1;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition-property: opacity, transform;
	transition-duration: 250ms;
	transition-timing-function: ease-out;
	transition-delay: 100ms;
	margin-left: 0.5rem;
	display: flex;
	flex-flow: column nowrap;
	font-size: 18px;
}
.is-collapsed .user__text {
	opacity: 0;
	transform: translateX(1rem);
	transition-delay: 0s;
}
.user__name, .user__title {
	overflow: hidden;
	text-overflow: ellipsis;
}
.user__title {
	font-size: 0.75rem;
	color: #a7bbeb;
}
.user__logout {
	font-size: 18px;
	background: green;
	border-radius: 15px;
	padding: 4px;
}
/* Course hover */
.container {
	position: relative;
	border-radius: 25px;
	padding: 10px;
	background-color: #0747BF;
	color: white;
}
.overlay {
	position: absolute;
	bottom: 0;
	left: 100%;
	right: 0;
	background-color: white;
	overflow: hidden;
	width: 0;
	height: 100%;
	transition: .5s ease;
	border-radius: 25px;
}
.container:hover .overlay {
	width: 100%;
	left: 0;
}
.text {
	color: white;
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	white-space: nowrap;
}
/* Buttons */
.button {
	background-color: #4CAF50;
/* Green */
	border: none;
	color: white;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	-webkit-transition-duration: 0.4s;
/* Safari */
	transition-duration: 0.4s;
	border-radius: 15px;
}
.button:active {
	box-shadow: 0 5px #666;
	transform: translateY(4px);
}
.button:hover {
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.bggreen {
	background-color: green;
}
.bgred {
	background-color: red;
}
.bgyellow {
	background-color: #dbba05f7;
}
.bgprime {
	background-color: #0452b7;
}
.green {
	color: green;
}
.red {
	color: red;
}
.yellow {
	color: #dbba05f7;
}
.white {
	color: #ffffff;
}
.blue {
	color: blue;
}
.button2 {
	padding: 6px 10px;
}
.button2:hover {
	box-shadow: 0 3px 6px 0 rgba(0,0,0,0.24), 0 7px 20px 0 rgba(0,0,0,0.19);
}
.pos {
	background-color: green;
	color: white;
	opacity: 0.7;
	padding: 5px;
}
.neg {
	background-color: red;
	color: white;
	opacity: 0.7;
	padding: 5px;
}
.que {
	background-color: #dbba05f7;
	color: white;
	opacity: 0.7;
	padding: 5px;
}
.ans {
	padding-left: 10px;
	font-weight: bold;
	font-size: 20px;
}
.ul {
	text-decoration: underline overline;
}
.sgtool fieldset {
	border: 2px dotted hotpink;
	font-size: 20px;
}
.sgtool p {
	margin: 10px;
	padding-bottom: 10px;
	font-size: 18px;
}
.sgtool legend {
	background-color: #e5ab5f;
	border: 1px solid #efd1aa;
	border-radius: 10px;
	padding: 5px 10px;
	text-transform: uppercase;
}
.sgtool input[type=text], input[type=email], input[type=password], select {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 20px;
	font-family: 'NTR', sans-serif;
}
.flex-box {
	display: flex;
	justify-content: space-between;
	outline: 1px solid;
	border-radius: 6px;
}
.p {
	border-bottom: 1px dotted #a87cba;
	margin: 10px;
	padding-bottom: 10px;
}
.pt {
	font-size: 22px;
	font-family: 'Mandali', sans-serif;
}
.telugu {
	font-size: 20px;
	font-family: 'NTR', sans-serif;
	padding: 10px;
}
.te {
	font-family: 'NTR', sans-serif;
}
.tc {
	text-align: center;
}
/* top button */
#topbutton {
	display: flex;
    align-items: center;
    justify-content: center;
	background-color: #0452b7;
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 100%;
	position: fixed;
	bottom: 55px;
	right: 10px;
	transition: background-color .3s, opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

#topbutton::after {
    content: ""; /* Remove the FontAwesome content */
    background-image: url("https://ltsenglish.in/icon/arrow-up.svg"); /* Set the SVG as background image */
    background-size: contain; /* Adjust as needed (cover, 100%, etc.) */
    background-repeat: no-repeat;
    background-position: center;
    width: 1.5em; /* Adjust size as needed */
    height: 1.5em; /* Adjust size as needed */
    /* line-height: 35px; Remove or adjust if needed for vertical alignment */
    filter: invert(100%); /* White icons */
    display: inline-block; /* Make sure it's displayed */
}

#topbutton:hover {
	cursor: pointer;
	background-color: #333;
}
#topbutton:active {
	background-color: #555;
}
#topbutton.show {
	opacity: 1;
	visibility: visible;
}
.login input[type=text], input[type=password] {
	margin: 8px 0;
	display: inline-block;
	box-sizing: border-box;
	font-size: 20px;
}
.login input[type=submit]:hover {
	background-color: #45a049;
}


.sidenav__nav {
	flex: 1 1 auto;
	margin: 1rem -1.375rem 0;
	padding: 0 1.375rem;
}
.nav {
	overflow: hidden;
	overflow-y: auto;
}
@media (pointer:fine) {
.nav {
	scrollbar-color: #a7bbeb transparent;
	scrollbar-width: thin;
	transition: scrollbar-color 200ms;
}
.nav::-webkit-scrollbar {
	height: 8px;
	width: 8px;
}
.nav::-webkit-scrollbar-track {
	background: transparent;
	transition: background 200ms;
}
.nav::-webkit-scrollbar-thumb {
	background: #a7bbeb;
}
.nav::-webkit-scrollbar-corner {
	background: none;
}
.nav:hover {
	scrollbar-color: #a7bbeb #2c5bd0;
}
.nav:hover::-webkit-scrollbar-track {
	background: #2c5bd0;
}
}
.nav__list {
	display: flex;
	flex-flow: column nowrap;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 2.5rem;
}
.nav__divider {
	margin: 1rem 0;
	padding: 0 0.625rem;
	min-width: 2.5rem;
}
.nav__divider::before {
	display: block;
	content: "";
	height: 0.99px;
	background: #2c5bd0;
}
.nav__item {
	position: relative;
}
.nav__item + .nav__item {
	margin-top: 0.25rem;
}
.nav__button {
	display: inline-flex;
	flex-flow: row nowrap;
	align-items: center;
	padding: 0;
	background: none;
	color: #fff;
	;
	border: 0;
	overflow: hidden;
	border-radius: 0.5rem;
	cursor: pointer;
	outline-offset: -2px;
	transition-property: background, color;
	transition-duration: 250ms;
	max-width: 100%;
	width: 100%;
}
.is-active .nav__button {
	color: #0039c6;
	background: #fff;
}
.nav__button:focus-visible {
	outline: 2px solid #2c5bd0;
}
.nav__button:focus-visible, .nav__button:hover {
	background: #0d43c9;
	color: #fff;
}
.nav__svg {
  width: 18px; /* Set width to 18px */
  height: 18px; /* Set height to 18px */
  filter: invert(100%); /* White icons */
}

.nav__icon {
  height: 2.5rem; /* Keep the original height for the icon container */
  width: 2.5rem; /* Keep the original width for the icon container */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.nav__icon .fa {
	aspect-ratio: 1;
	font-size: 1.25rem;
}
.nav__label {
	display: inline-block;
	flex: 1;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition-property: opacity, transform;
	transition-duration: 250ms;
	transition-timing-function: ease-out;
	transition-delay: 100ms;
	margin-right: 2.35rem;
	font-size: 18px;
}
.is-collapsed .nav__label {
	opacity: 0;
	transform: translateX(1rem);
	transition-delay: 0s;
}
.nav__badge {
	border-radius: 50vh;
	background: #bafd5c;
	color: #000;
	font-size: 0.75rem;
	padding: 0.125rem 0.5rem;
	pointer-events: none;
	position: absolute;
	z-index: 1;
	right: 0;
	top: 50%;
	transform: translate(-0.25rem,-50%);
	transition-property: transform, font-size, padding, color;
	transition-duration: 250ms;
	transition-timing-function: ease-out;
}
.nav__badge.warn {
	background: #ffbc00;
}



/* page layout */
.page {
	padding: 10px;
}
hr {
	margin-block: 32px;
}
.layout {
	display: flex;
	gap: 24px;
	flex-flow: row wrap;
}
.layout > div {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	min-inline-size: 300px;
	min-block-size: 100px;
	box-shadow: 0 0 8px grey;
	padding: 10px;
	transition-duration: 0.2s;
}
.layout > div:hover {
	box-shadow: 0 0 16px grey;
}
/* Container styles */
.card {
	container: card / inline-size;
}
.card div {
	display: block;
	inline-size: 100%;
	border-radius: inherit;
	text-align: center;
}
@container card (min-width: 400px) {
	/* Containers cannot style themselves directly */
	div {
		background-color: salmon;
	}
	h2 {
		font-size: 3rem;
	}
}
/* Pricing Table */
.price {
	list-style-type: none;
	border: 1px solid #eee;
	margin: 0;
	padding: 0;
	transition: 0.3s;
}
.price:hover {
	box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.2);
}
.price .header {
	color: white;
	font-size: 25px;
	text-align: center;
	font-weight: bolder;
}
.price li {
	padding: 20px;
}
.price .grey {
	font-size: 20px;
	text-align: center;
}
/* Responsive */
@media only screen and (max-width: 600px) {
	.columns {
		width: 100%;
	}
}
.p5 {
	padding: 5px;
}
.font24 {
	font-size: 24px;
	font-weight: bold;
}
.when {
	padding: 5px;
	border: 1px solid black;
}
/* Tabs */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}
.tab button {
	float: left;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
	width: 33.33%;
}
.tab button:hover {
	opacity: 1;
}
.tab button.active {
	background-color: #0452b7;
	font-weight: bold;
}
.tab button.active:after {
	content: "\00A0";
}
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
}
/* Circle Badge */
.circle-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background-color: #3498db;
}
.circle {
	width: 100px;
	height: 100px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 48px;
	color: #3498db;
	margin-bottom: 10px;
	border: 2px dashed;
}
.info {
	text-align: center;
	color: #ffffff;
}
/* Badges */
.ubadge {
	padding: 2px 4px;
	font-weight: bolder;
}
.vip {
	color: gold;
	animation: blink 1s infinite;
}
.vip:before {
	content: '\2605';
	margin-right: 5px;
}
.pro {
	color: #21fb80;
	animation: blink 1s infinite;
}
.pro:before {
	content: '\2665';
	margin-right: 5px;
}
.basic {
	color: #21fb80;
	animation: blink 1s infinite;
}
.basic:before {
	content: '\2611';
	margin-right: 5px;
}
/* Blinking Animation */
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}
/* Section Titles */
.ttitle {
	background-color: #3498db;
	padding: 18px;
	color: white;
	font-size: 18px;
	font-weight: bolder;
}
.dtopic {
	padding: 10px;
}
.title-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background-color: #3498db;
}
.title {
	font-size: 24px;
	color: #ffffff;
}
.description {
	text-align: center;
	color: #ffffff;
	font-size: 20px;
	margin-top: 10px;
}
/* Accordion */
.accordion {
	background-color: #c1e1fd;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: 1px dotted;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	font-weight: bolder;
}
.accordion:hover, .active {
	background-color: #3498db;
	color: white;
}
.accordion:after {
	content: '\002B';
	font-weight: bold;
	float: right;
	margin-left: 5px;
}
.active:after {
	content: "\2212";
	color: white;
}
.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}
/* YouTube Video */
.youtube-video {
	aspect-ratio: 16 / 9;
	width: 100%;
}
/* Slideshow */
.mySlides {
	display: none;
}
.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -60px;
	padding: 8px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	border-radius: 3px;
	user-select: none;
	background-color: rgba(0, 0, 0, 0.8);
}
.prev {
	left: 0;
}
.next {
	right: 0;
	border-radius: 0 3px 3px 0;
}
.dot-container {
	text-align: center;
	padding: 20px;
}
.dot {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #8ca0ec;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	cursor: pointer;
}
.active-dot {
	background-color: #717171;
}
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}
@keyframes fade {
	from { opacity: 0.4; }
	to { opacity: 1; }
}
/* Testimonials */
.testimonials {
	padding: 20px;
}
.testimonials h2 {
	font-size: 2em;
	margin-bottom: 20px;
}
.testimonial {
	border: 1px solid #ddd;
	padding: 20px;
	margin-bottom: 20px;
}
.testimonial p {
	font-size: 1.2em;
	margin-bottom: 5px;
}
.testimonial em {
	font-style: italic;
}
/* CTA Button */
.cta {
	padding: 20px;
	text-align: center;
}
.cta-button {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.bu50 {
	padding: 10px;
	text-align: center;
	border: none;
	cursor: pointer;
	margin: auto;
	margin-bottom: 10px;
	color: white;
	border: 1px solid #a6d8a8;
	width: 49%;
}
.rowbu {
	display: flex;
	justify-content: space-between;
}
.content {
	background-color: #f0f0f0;
	padding: 20px;
	box-sizing: border-box;
}
/* Animations */
.animated {
	opacity: 0;
}
/* Animation Keyframes */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes rotateIn {
	from {
		opacity: 0;
		transform: rotate(-180deg);
	}
	to {
		opacity: 1;
		transform: rotate(0);
	}
}
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes fadeInUp {
	from {
		transform: scale(0);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}
.animated.in-view {
	animation: fadeIn 1s forwards;
	/* Experimental scroll-timeline */
	/* scroll-timeline: fadeInScroll; */
}
.animated-slide-left.in-view {
	animation: slideInLeft 1s forwards;
	/* scroll-timeline: slideInLeftScroll; */
}
.animated-rotate.in-view {
	animation: rotateIn 1s forwards;
	/* scroll-timeline: rotateInScroll; */
}
.animated-scale.in-view {
	animation: scaleIn 1s forwards;
	/* scroll-timeline: scaleInScroll; */
}
.animated-fadeInUp.in-view {
	animation: fadeInUp 1s forwards;
	/* scroll-timeline: fadeInUpScroll; */
}

/* Mobile */
@media (max-width: 768px) {
	.content {
		padding: 10px;
	}
	.pt {
		font-size: 20px;
	}
}
/* Blink text */
.blink-text {
	animation: blinker 1s linear infinite;
}
@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.lcontainer {
	width: 80%;
	margin: 20px auto;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.lesection {
	margin: 20px 0;
	padding: 20px;
	border-radius: 10%;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
	text-align: center;
	cursor: pointer;
	transition: transform 0.2s;
	color: #444;
}
.lesection:hover {
	transform: scale(1.05);
}
.level {
	font-size: 20px;
	margin-bottom: 10px;
	color: #2b1c50;
/* pink */
}
.lamount {
	font-size: 28px;
	font-weight: bold;
	color: #3f51b5;
/* indigo */
}
.lmembers {
	font-size: 24px;
	font-weight: bold;
	color: #ff5722;
/* deep orange */
}
.ldetails {
	font-size: 16px;
	margin-bottom: 20px;
	color: #009688;
/* teal */
}
.lprogress-bar {
	background: #ddd;
	border-radius: 5px;
	overflow: hidden;
	height: 30px;
}
.lprogress {
	height: 100%;
	text-align: center;
	color: white;
	line-height: 30px;
	border-radius: 5px;
}
.lesection:nth-child(1) .lprogress {
	background-color: #76c7c0;
}
.lesection:nth-child(2) .lprogress {
	background-color: #ff6f61;
}
.lesection:nth-child(3) .lprogress {
	background-color: #f7c242;
}
.lesection:nth-child(4) .lprogress {
	background-color: #6f9fd8;
}
.lesection:nth-child(5) .lprogress {
	background-color: #b39ddb;
}
.lesection:nth-child(6) .lprogress {
	background-color: #ffab91;
}
.lunlocked {
	color: green;
	font-weight: bold;
}
.head1 {
	color: #2b1c50;
	font-weight: bold;
}
/* Pink */
.head2 {
	color: #3f51b5;
	font-weight: bold;
}
/* Indigo */
.head3 {
	color: #00bcd4;
	font-weight: bold;
}
/* Cyan */
.head4 {
	color: #8bc34a;
	font-weight: bold;
}
/* Light Green */
.head5 {
	color: #795548;
	font-weight: bold;
}
/* Brown */
.head6 {
	color: #7c4dff;
	font-weight: bold;
}
/* Deep Purple Accent */
.head7 {
	color: #40c4ff;
	font-weight: bold;
}
/* Light Blue Accent */
.subh1 {
	color: #9c27b0;
}
/* Purple */
.subh2 {
	color: #2196f3;
}
/* Blue */
.subh3 {
	color: #009688;
}
/* Teal */
.subh4 {
	color: #ff9800;
}
/* Orange */
.subh5 {
	color: #607d8b;
}
/* Blue Grey */
.subh6 {
	color: #536dfe;
}
/* Indigo Accent */
.subh7 {
	color: #0e9523d9;
}
/* green Accent */
.par1 {
	color: #673ab7;
}
/* Deep Purple */
.par2 {
	color: #03a9f4;
}
/* Light Blue */
.par3 {
	color: #4caf50;
}
/* Green */
.par4 {
	color: #ff4081;
}
/* Pink Accent */
.par5 {
	color: #ff5722;
}
/* Deep Orange */
/* Base styles */
.msg {
	padding: 10px;
	border-radius: 10px;
	margin: 5px 0;
	max-width: 70%;
	display: inline-block;
}
/* Left-side message styling */
.leftside .msg {
	background-color: #007bff;
	color: white;
	text-align: left;
	padding-left: 10px;
}
.leftside .time-left {
	display: block;
	font-size: 12px;
	color: #777676;
	margin-top: 2px;
	text-align: left;
}
/* Right-side message styling */
.rightside .msg {
	background-color: #dceff2;
	color: #333;
	text-align: right;
	float: right;
	padding-right: 10px;
}
.rightside .time-right {
	display: block;
	font-size: 12px;
	color: #777676;
	margin-top: 2px;
	text-align: right;
}
/* Container styles for positioning */
.leftside, .rightside {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.rightside {
	align-items: flex-end;
}
/* Clear floats */
.leftside::after, .rightside::after {
	content: "";
	display: table;
	clear: both;
}
/* Spacer between message display and form */
.spacer {
	height: 10px;
}
/* Input field styling */
.input-field {
	display: flex;
	margin: 10px;
}
#textarea2 {
	width: 100%;
	padding: 8px;
	font-size: 14px;
	resize: none;
	border: solid;
	border-radius: 5px;
}
.hr {
	border-bottom: 2px solid;
}
.mr10 {
    margin-left: 10px;
    margin-right: 10px;
}


      .section {
            padding: 30px;
            text-align: center;
			margin-bottom: 25px;
			border-radius: 15px;
        }

        /* Section 1: Blue background with white text */
        #section1 {
            background-color: #003366;
            color: white;
            clip-path: polygon(1.5% 0,70% 3%,70% 13%,97% 9%,97.5% 89%,40% 100%,39.9% 90%,1% 88%);
        }

        /* Section 2: Green background with black text */
        #section2 {
            background-color: #006400;
            background: linear-gradient(135deg, #111019, #2575fc);
            color: white;
            clip-path: polygon(0 0, 80% 5%, 100% 50%, 85% 100%, 0 90%);
        }

        /* Section 3: Yellow background with black text */
        #section3 {
            background-color: #2b1c50;
            background: linear-gradient(135deg, #2776fb, #111019);
            color: white;
            clip-path: polygon(100% 0, 20% 5%, 0 50%, 15% 100%, 100% 90%);
        }

        /* Section 4: Red background with white text */
        #section4 {
            background-color: #111019;
            background: linear-gradient(135deg, #111019, #2776fb);
            color: white;
            clip-path: polygon(0 5%, 100% 0, 95% 95%, 5% 100%);
        }
        #section5 {
            background-color: #111019;
            background: linear-gradient(135deg, #2575fc, #111019);
            color: white;
            clip-path: polygon(0 95%, 100% 100%, 95% 5%, 5% 0%);
        }
        .sectionblack {
            background-color: #111019;
            color: white;
        }
        .sectionblue {
            background-color: #2b1c50;
            color: white;
        }
        
        .tick {
  list-style-type: none;
  text-align: left;
}

.tick li::before {
  content: '✓ ';
  color: green;
}

        #game-container {
            text-align: center;
            background: #fff;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            font-size: 24px;
        }

        #options-container {
            margin-top: 20px;
        }

        .option {
            margin: 10px;
            padding: 10px 20px;
            background: #007BFF;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        .option:hover {
            background: #0056b3;
        }

        #result {
            margin-top: 10px;
            font-size: 32px;
            font-weight: bolder;
            padding: 8px;
        }

        .options-group {
            margin-top: 20px;
        }

        .options-label {
            font-weight: bold;
        }

        .missing-letter {
            display: inline-block;
            width: 30px;
            font-size: 28px;
            margin: 0 5px;
            background: #fff;
            border-bottom: 2px solid #000;
        }

        .numb {
            display: inline-block;
            color: red;
            font-size: 12px;
            margin-bottom: 5px;
        }
        #word-container{
            font-size: 28px;
            border: black solid 2px;
            padding: 5px;
            letter-spacing: 2px;
        }
.playbutton {
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 25px;
}

.dict td {
  
}

.play-btn {
    cursor: pointer;
}

.play-btn::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('https://ltsenglish.in/icon/volume_up.svg');
    background-repeat: no-repeat;
    background-position: center;
}

        #search {
            width: 95%;
            padding: 10px;
            margin-bottom: 20px;
            font-size: 16px;
        }
        #results {
            list-style-type: none;
            padding: 0;
        }
        #results li {
            padding: 8px;
            border-bottom: 1px solid #ddd;
        }
        #results li:last-child {
            border-bottom: none;
        }
        
        
        .features, .benefits, .cta {
            margin-bottom: 40px;
        }
        .features ul, .benefits ul {
            list-style-type: none;
            padding: 0;
        }
        .features li, .benefits li {
            
            margin: 10px 0;
            padding: 10px;
            border-left: 5px solid #4CAF50;
        }
        
.active-tab {
  border: 3px solid transparent;
  position: relative;
  z-index: 1;
  background-clip: padding-box;
}

.active-tab::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: -1;
  background: linear-gradient(135deg, #56047b, #1e90ff); /* Bright cyan to dodger blue */
  background-size: 300% 300%;
  animation: bold-neon 2s ease-in-out infinite;
  filter: blur(3px);
  opacity: 1;
}


@keyframes bold-neon {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


    /* Style 1: Basic Custom Circle */
    .radio1 input[type="radio"] {
      display: none;
    }

    .radio1 label {
      display: inline-block;
      padding: 10px 20px;
      border: 2px solid #0088cc;
      border-radius: 30px;
      cursor: pointer;
      margin: 5px 10px 5px 0;
      transition: 0.3s;
    }

    .radio1 input[type="radio"]:checked + label {
      background-color: #0088cc;
      color: white;
    } 
    
/* timer.css */
.countdown {
  display: flex;
  gap: 5px;
  margin: 15px auto;
  justify-content: center;   /* center horizontally */
  flex-wrap: nowrap;         /* ❌ no wrapping (always one line) */
  overflow-x: auto;          /* allow horizontal scroll if too small */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on mobile */
  line-height: 1.1em;
}

.countdown div {
  background: #333;
  color: #f4f4f4;
  font-size: 22px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 8px;
  text-align: center;
  min-width: 60px;           /* prevent shrinking too much */
  flex: 0 0 auto;            /* keep natural size (don’t stretch) */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.countdown div span {
  display: block;
  font-size: 12px;
}

/* Tablet */
@media (max-width: 768px) {
  .countdown div {
    font-size: 22px;
    padding: 5px 10px;
    min-width: 55px;
  }
  .countdown div span {
    font-size: 11px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .countdown {
    gap: 6px;                /* tighter spacing */
  }
  .countdown div {
    font-size: 22px;
    padding: 5px 10px;
    min-width: 50px;
  }
  .countdown div span {
    font-size: 10px;
  }
}


.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.practice-card {
  background: #fff;
  border: 4px solid #0b50aa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.practice-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #0b4bc6;
}

.practice-card p {
  font-size: 16px;
  color: #0b0520;
  margin-bottom: 16px;
}

.highlight-card {
  border: 6px solid #0b50aa; /* green border */
}







/* 1. The Play Button Shape */
.play, .spk {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    background-color: #e3f2fd;
    color: #0277bd;
    border: 1px solid #b3e5fc;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    font-style: normal;
    transition: all 0.2s;
    margin: 6px 5px 6px 0px;
}

/* 2. THE TEXT (Updated Icon to Speaker) */
.play::after {
    content: "🔊 Play";  /* Changed from 🎙️ to 🔊 */
}

/* 3. Hover Effect */
.play:hover {
    background-color: #81d4fa;
    color: #01579b;
    transform: translateY(-1px);
}


/* 2. THE TEXT (Critical - Do not remove) */
.spk::after {
    content: "🎙️ Speak";
}

/* 3. Hover Effect */
.spk:hover {
    background-color: #81d4fa;
    color: #01579b;
}

/* COMPLETED STATE (Green Checkmark) */
.spk.done {
    background-color: #dcfce7 !important;
    color: #166534 !important;
    border-color: #86efac !important;
    transition: all 0.3s ease;
}

/* This changes the icon and text to a Tick */
.spk.done::after {
    content: "✅ Done" !important; 
}


 /* Global Telugu Style */
    .te {
        font-family: 'Mandali', sans-serif;
        font-size: 18px; 
        color: #000;
        margin-top: 5px;
        line-height: 1.6;
        font-weight:bold;
    }