* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
	font-size: 22px
}
body{
	background-color:transparent;
  color:black ;
  font-family: 'Playfair Display', Georgia, serif;
}

/*section 1 track learn improve*/
/* #region Navigation Styles */
.first-section{
	background-color: #F8F8FF;
	padding-top: 26px;
	padding-right: 8px;
}
a{
	color: aliceblue;
}
a:visited{
	color: lightgray;
}
a:hover, a:active{
	color: #eee;
}
.logo-container{
	display: flex;
  align-items: center;
  gap: 0px;
}
.logo{
	width: 60px;
  height: auto;
  transform: translate(18px, -6px);
}
.hero{
	text-align: center;
  margin-top: 180px;
}    
.hero h1{
	margin-bottom: 4%;
	font-size: 2.5rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.02em;
}
.hero p{
	margin-bottom: 40px;
}
header{
	display: flex;
  justify-content: space-between;
  align-items:center;
  padding: 0px;
}
.oner{
	display:flex;
    justify-content:center;
    align-items:center;
}
#bone{ 
	padding: 12px 24px;
  border: none;
  background-color: whitesmoke;
  color: black;
  border-radius: 9999px; 
}
#btwo{ 
	padding: 12px 24px;
  border: none;
  background-color: black;
  color: white;
  border-radius: 9999px;
}
#bthree {
  font-size: 1.1rem;
  padding: 12px 24px;
  border: none;
  background-color: white;
  color: black;
  border-radius: 9999px;
  margin-bottom: 140px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
#bthree:hover {
  background-color: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/*#endregion*/

/*section 2 turn academic data into top grades*/
/*#region*/
.second-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
		background-color: #ffffff;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.card {
    background-color: #F8F8FF;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08);
    border-color: #8b92a0;
}
.card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}
.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}
/*#endregion*/

/*section 3 ready to organize your school life*/
/*#region*/
.cta-section {
  background-color: #18181b;
  color: #ffffff;
  padding: 100px 24px;
  text-align: center;
}
#readyS{
	margin-bottom: 30px;
}
.cta-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #a1a1aa;
}
.check-icon {
  width: 20px;
  height: 20px;
  color: #818cf8;
}
.cta-btn {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  background-color: #ffffff;
  color: #09090b;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover {
  background-color: #f4f4f5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.15);
}
.cta-btn:active {
  transform: translateY(0);
}
/*#endregion*/