:root{
    --orange: #f9ba60;
    --black: #1d1c1c;
    --white: #ffffff;
    --light-color: #666666;
    --pink: #e9768f;
    --purple: #4b2b95;
    --light-pink: #fde7ef;
    --box-shadow: 0 5px 15px rgba(0,0,0,.1); 
}

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;   
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section{
    padding: 3rem 7% ;
}

.top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--orange);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  z-index: 999;
}

.top:hover {
  background-color: var(--light-color);
}


/* Header */
.header{
    font-size: 25px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.header .header-inner{
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 9%;
}

.header .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bolder;
    color: var(--purple);
    text-decoration: none;
}

.header .navbar ul{
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.header .navbar a{
    font-size: 17px;
    color: var(--black);
}

.header .navbar a:hover{
    color: var(--orange);
}

.header-icons{
    margin-left: auto;            
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icons .icon-btn{
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
}

.header-icons .icon-btn:hover{
    color: var(--purple);
}

.login-wrapper{
    position: relative;
}

#menu-btn{
    display: none;
}


/* Login form */

.header .login-form{
    position: absolute;
    top: 120%;
    right: 0; 
    width: 350px;     
    padding: 20px;     
    background: var(--white);
    text-align: center;
    box-shadow: var(--box-shadow);
    border-radius: 10px; 
    display: none;
}

.login-wrapper:hover .login-form{
    display: block;
}

.header .login-form.active{
    right: 20px;  
}

.header .login-form h3{
    font-size: 22px; 
    margin-bottom: 10px; 
}

.header .login-form .box{
    width: 100%;
    padding: 10px;  
    margin: 7px 0;  
    border-radius: 5px; 
    background: #f7f7f7;
    font-size: 14px; 
}

.header .login-form .btn{
    width: 100%;
    padding: 10px;  
    border-radius: 5px; 
    background: var(--purple);
    color: var(--white);
    font-size: 16px; 
    margin-top: 10px; 
    cursor: pointer;
}

.header .login-form .btn:hover{
    background: var(--pink);
}

/* Home */
.home{
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;              
    align-items: center;
}

.home .content{
    flex: 1 1 400px;        
    padding-top: 5px;     
}

.home .content h3{
    font-size: 60px;    
    color: var(--black);
}

.home .content h3 span{
    color: var(--purple);
}

.home .btn{
    font-size: 17px;
    margin-top: 20px;
    padding: 10px 22px;
    border-radius: 5px;
    border: 2px solid var(--purple);
    background: transparent;
    color: var(--purple);
    cursor: pointer;
    transition: 0.25s ease;
}

.home .btn:hover{
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.home .content p{
    font-size: 17px;        
    color: var(--light-color);
    line-height: 1.8;      
    padding: 10px 0;       
}

.home .image{
    flex: 1 1 400px;       
}

.home .image img{
    width: 100%;
    padding: 40px;          
}

.custom-shape-divider-bottom-1765174315 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1765174315 svg {
    position: relative;
    display: block;
    width: calc(123% + 1.3px);
    height: 104px;
}

.custom-shape-divider-bottom-1765174315 .shape-fill {
    fill: var(--pink);
}

/* footer */
.footer{
  background: var(--light-pink); 
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand img{
  margin-left: 100px;
  width: 70px;
}

.footer-brand h3{
  font-size: 24px;
  margin-top: 10px;
  color: #4b2b95; 
}

.footer-brand p{
  font-size: 15px;
  color: #444;
}

.footer-links h4,
.footer-contact h4{
  font-size: 18px;
  margin-bottom: 10px;
  color: #4b2b95;
}

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

.footer-links ul li{
  margin-bottom: 8px;
}

.footer-links ul li a{
  color: #555;
  text-decoration: none;
  font-size: 15px;
}

.footer-links ul li a:hover{
  color: var(--orange);
}

.footer-contact p{
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* bottom bar */
.footer-bottom{
  text-align: center;
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #f7cfe0;
}

.footer-bottom p{
  font-size: 14px;
  color: #777;
}

/* about */
.about {
max-width: 1100px;
margin: 0 auto;
padding: 140px 20px 40px;
}

.heading{
    text-align: center;
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--black);
}

.about-hero{
  max-width: 900px;
  margin: 0 auto 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-hero img{
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.about .content p{
    font-size: 17px;
    color: var(--light-color);
}

.about .content strong{
    font-size: 19px;
    color: var(--black);
}

.testimonials {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.testimonial-title {
  text-align: center;
  font-size: 28px;
  color: var(--black);
  margin-bottom: 30px;
}

.testimonial-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  flex: 1 1 45%;     
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 6px solid var(--pink);
}

.testimonial-card .quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--light-color);
  margin-bottom: 15px;
}

.testimonial-card .author {
  text-align: right;
  font-weight: bold;
  font-size: 15px;
  color: var(--black);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* scedule */
.schedule-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 60px;  
}

.schedule-hero {
  text-align: center;
  margin-bottom: 30px;
}

.schedule-hero h1 {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 8px;
}

.schedule-hero p {
  font-size: 16px;
  color: var(--light-color);
}


.section-title {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--black);
}


.daily-schedule {
  background: #fff7eb;
  border-radius: 16px;
  padding: 20px 24px 26px;
  box-shadow: var(--box-shadow);
}

.schedule-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule-timeline li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.schedule-timeline li:last-child {
  border-bottom: none;
}

.schedule-timeline .time {
  width: 120px;
  font-weight: 600;
  color: var(--orange);
}

.schedule-timeline .activity {
  flex: 1;
  color: var(--black);
}

.schedule-page img{
    display: flex;
    margin-top: 50px;
    margin-left: 130px;
}

.prek-overview {
  margin-top: 30px;
}

.prek-overview p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--light-color);
  margin-bottom: 12px;
}


.prek-domains {
  margin-top: 40px;
}

.domain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.domain-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--box-shadow);
  border-top: 5px solid var(--pink);
}

.domain-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--black);
}

.domain-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--light-color);
}


@media (max-width: 768px) {
  .schedule-page {
    padding: 120px 16px 40px;
  }

  .schedule-timeline .time {
    width: 90px;
    font-size: 14px;
  }

  .schedule-timeline .activity {
    font-size: 14px;
  }
}

/* Accreditation */
.accreditation-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 60px; 
}

.acc-hero {
  text-align: center;
  margin-bottom: 30px;
}

.acc-hero h1 {
  font-size: 32px;
  color: var(--black);
  margin-bottom: 8px;
}

.acc-hero p {
  font-size: 16px;
  color: var(--light-color);
}

.acc-section {
  margin-top: 32px;
}

.acc-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--black);
}

.acc-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.acc-text {
  flex: 2 1 320px;
}

.acc-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--light-color);
  margin-bottom: 10px;
}

.acc-highlight,
.acc-callout {
  flex: 1 1 260px;
  background: #fff7eb;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--box-shadow);
  border-left: 5px solid var(--orange);
}

.acc-highlight h3,
.acc-callout h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--black);
}

.acc-highlight p,
.acc-callout p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--light-color);
}

.acc-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 6px;
}

.acc-check-item {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-size: 14px;
  color: var(--black);
  position: relative;
  padding-left: 28px;
}

.acc-check-item::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--pink);
}

.acc-note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--light-color);
}

.acc-org-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}

.acc-org-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--box-shadow);
}

.acc-org-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--black);
}

.acc-org-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--light-color);
}

.acc-community p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--light-color);
  margin-bottom: 12px;
}

.acc-community-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.acc-community-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: var(--box-shadow);
  border-top: 5px solid var(--pink);
}

.acc-community-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--black);
}

.acc-community-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--light-color);
}

.acc-address {
  margin-top: 16px;
  font-size: 14px;
  color: var(--light-color);
}

@media (max-width: 768px) {
  .accreditation-page {
    padding: 120px 16px 40px;
  }

  .acc-two-column {
    flex-direction: column;
  }
}


/* contact us form */
.contact{
  font-size: 17px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 60px; 
}

.contact .contact-title{
    text-align: center;
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--black);
}

input[type="text"], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid var(--black);
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  margin-top: 6px;
  margin-bottom: 12px;
}

label{
  display: block;
  margin-top: 12px;
}

input[type=submit]{
  background-color: var(--purple);
  color: var(--white);
  padding: 12px 20px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.contact .container{
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--light-pink);
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

fieldset{
  border: none;
  padding: 0;
  margin: 0;
}


