*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#f5f6f8;
color:#222;
}

/* NAVBAR */

header{
padding:20px 60px;
background:white;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
}

.logo{
font-size:22px;
font-weight:600;
}


/* HERO */

.hero{
height:80vh;
background:url("https://images.unsplash.com/photo-1523240795612-9a054b0db644");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
}

.hero-content{
position:relative;
color:white;
text-align:center;
max-width:900px;
}

.hero h1{
font-size:48px;
margin:20px 0;
}

.hero span{
color:#7cffd0;
}

.hero-desc{
margin-bottom:25px;
}

.ai-tag{
background:rgba(255,255,255,0.2);
padding:6px 14px;
border-radius:20px;
display:inline-block;
}

/* SEARCH */

.search-box{

backdrop-filter:blur(15px);
background:rgba(255,255,255,0.15);

padding:20px;

border-radius:15px;

display:flex;

flex-wrap:wrap;

gap:10px;

justify-content:center;

}

.search-box select{
padding:10px;
border-radius:6px;
border:none;
}

.find-btn{
background:#0f5132;
color:white;
padding:10px 20px;
border:none;
border-radius:6px;
}

.explore-btn{
background:#0f5132;
color:white;
padding:10px 20px;
border:none;
border-radius:6px;
}

/* HOW SECTION */

.how{
padding:80px;
text-align:center;
}

.steps{
display:flex;
gap:30px;
margin-top:40px;
justify-content:center;
}

.step{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
width:300px;
}

/* TUTORS */

.tutors{
padding:80px;
}

.tutor-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.tutor-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.tutor-card:hover{
transform:translateY(-8px);
}

.tutor-card img{
width:100%;
height:350px;
object-fit:cover;
}

.tutor-card h3{
padding:15px;
}

.tutor-card p{
padding:0 15px 8px;
font-size:14px;
}

.price{
font-weight:600;
color:#0f5132;
}

.tutor-card button{
margin:15px;
padding:8px 12px;
background:#0f5132;
color:white;
border:none;
border-radius:6px;
}

/* INSTITUTES */

.institutes{
padding:80px;
background:#f2f4f5;
}

.institute-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.inst-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
padding-bottom:20px;
}

.inst-card img{
width:100%;
height:200px;
object-fit:cover;
}

.inst-card h3{
padding:10px 15px;
}

.inst-card p{
padding:0 15px 5px;
font-size:14px;
}

.inst-card button{
margin-left:15px;
padding:8px 12px;
border:none;
background:#0f5132;
color:white;
border-radius:5px;
}



.container {
  max-width: 1280px;
  margin: 0 auto;
}

.subtitle {
  color: #D97642;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: 600;
}

.main-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 64px;
  color: #111827;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-column {
  display: flex;
  flex-direction: column;
}

.column-title {
  font-size: 24px;
  margin-bottom: 24px;
  color: #111827;
  font-weight: 600;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.plan-name {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111827;
  font-weight: 600;
}

.plan-price {
  font-size: 30px;
  margin-bottom: 24px;
  color: #111827;
  font-weight: 700;
}

.features-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.features-list li {
  color: #4b5563;
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.plan-button {
  width: 100%;
  padding: 12px 24px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  transition: background-color 0.2s;
}

.plan-button:hover {
  background-color: #f9fafb;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 32px 16px;
  }
  
  .main-title {
    font-size: 28px;
    margin-bottom: 48px;
  }
  
  .pricing-card {
    padding: 24px;
  }
}

/* DEMO SECTION */

.demo-section{

padding:80px;

display:flex;

justify-content:center;

}

/* CONTAINER */

.demo-container{

background:white;

border-radius:25px;

padding:70px;

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

width:100%;

max-width:1500px;

box-shadow:0 20px 40px rgba(0,0,0,0.08);

position:relative;

overflow:hidden;

}



.demo-text{

max-width:600px;

}

.demo-text h2{

font-size:42px;

color:#2f8a95;

margin-bottom:15px;

}

.demo-text p{

font-size:20px;

color:#333;

margin-bottom:35px;

}


/* BUTTON */

.demo-btn{

background:#2f8a95;

color:white;

border:none;

padding:16px 42px;

font-size:18px;

border-radius:10px;

cursor:pointer;

transition:0.3s;

position:relative;

}


/* glow hover effect */

.demo-btn:hover{

background:#1f6f78;

box-shadow:0 0 20px rgba(47,138,149,0.6);

transform:scale(1.05);

}


/* IMAGE */

.demo-image img{

width:380px;

transition:0.4s;
border-radius: 20px;

}

.demo-image img:hover{

transform:scale(1.05);

}


/* RESPONSIVE */

@media(max-width:900px){

.demo-container{

flex-direction:column;

text-align:center;

}

.demo-image img{

width:260px;


}

}

/* DEMO CLASS SECTION */

.demo-section{

padding:60px 80px;

}

.demo-container{

background:white;

border-radius:25px;

padding:60px;

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

}


/* TEXT */

.demo-text h2{

font-size:40px;

color:#2f8a95;

margin-bottom:15px;

font-weight:600;

}

.demo-text p{

font-size:20px;

color:#333;

margin-bottom:30px;

}


/* BUTTON */

.demo-btn{

background:#2f8a95;

color:white;

border:none;

padding:16px 40px;

font-size:18px;

border-radius:8px;

cursor:pointer;

transition:0.3s;

}

.demo-btn:hover{

background:#1f6f78;

}


/* IMAGE */

.demo-image img{

width:350px;

}


/* RESPONSIVE */

@media(max-width:900px){

.demo-container{

flex-direction:column;

text-align:center;

}

.demo-image img{

width:260px;

}

}
/* center the box */
.main-wrapper{
display:flex;
justify-content:center;
padding:60px 20px;
}

/* main box */
.tutor-box{
background:white;
width:1300px;
height: 400px;
border-radius:15px;
padding:60px;
display:flex;
align-items:center;
justify-content:space-between;
}

/* text side */
.text-area{
max-width:650px;
text-align:center;
}

.text-area h1{
color:#2f8c95;
font-size:48px;
margin-bottom:20px;
}

.text-area p{
font-size:20px;
color:#333;
line-height:1.6;
margin-bottom:30px;
}

/* button */
.text-area button{
background:#3a8f9b;
color:white;
border:none;
padding:15px 50px;
font-size:20px;
border-radius:8px;
cursor:pointer;
}

/* image side */
.image-area img{
width:350px;
border-radius:10px;
}

/* main container */
.counselling-box{
display:flex;
align-items:center;
justify-content:space-between;
background:white;
padding:50px 70px;
border-radius:20px;
}

/* left image */
.left-img img{
width:400px;
border-radius:20px;
}

/* right text */
.right-text{
max-width:650px;
text-align:center;
}

.right-text h2{
color:#2f8c95;
font-size:48px;
margin-bottom:20px;
}

.right-text p{
font-size:20px;
color:#333;
line-height:1.6;
margin-bottom:30px;
}

/* button */
.book-btn{
background:#3a8f9b;
color:white;
border:none;
padding:15px 60px;
font-size:20px;
border-radius:8px;
cursor:pointer;
}

.book-btn:hover{
background:#2b7078;
}

.categories{
text-align:center;
padding:60px 40px;
}

.categories h1{
font-size:48px;
color:#2f8c95;
margin-bottom:5px;
}

.subtitle{
font-size:18px;
margin-bottom:30px;
}

.categories h2{
margin:35px 0 15px;
font-size:26px;
}

/* row layout */
.category-row{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
margin-bottom:20px;
}

/* category pills */
.cat-box{
background:#e8e8e8;
padding:12px 25px;
border-radius:40px;
display:flex;
align-items:center;
gap:12px;
font-size:18px;
box-shadow:0 2px 4px rgba(0,0,0,0.1);
}

/* icon */
.cat-box img{
width:30px;
height:30px;
}

/* FOOTER */

.footer{
background:white;
padding:60px 10%;
}

/* Container */

.footer-container{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:40px;
}

/* Columns */

.footer-column{
flex:1;
min-width:220px;
}

.logo{
color:black;
margin-bottom:15px;
}

.footer-column p{
color:#aaa;
line-height:1.6;
}

/* Links */

.footer-column h3{
margin-bottom:15px;
}

.footer-column ul{
list-style:none;
padding:0;
}

.footer-column ul li{
margin-bottom:10px;
}

.footer-column ul li a{
text-decoration:none;
color:#bbb;
transition:0.3s;
}

.footer-column ul li a:hover{
color:#00e6c3;
padding-left:5px;
}

/* Social Icons */

.social-icons{
margin-top:15px;
}

.social-icons a{
display:inline-block;
margin-right:10px;
font-size:18px;
color:#bbb;
transition:0.3s;
}

.social-icons a:hover{
color:#00e6c3;
transform:translateY(-3px);
}


/* Bottom */

.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid #222;
color:#888;
}

.logo{font-size:28px;
font-weight:600;
}