html{
  scroll-behavior:smooth;
}

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

body{
  font-family:'Poppins',sans-serif;
  background:#f7f4ef;
  color:#333;
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section{
  padding:90px 0;
  scroll-margin-top:100px;
}

img{
  width:100%;
  display:block;
}

/* HEADER */

.header{
  background:#fff;
  position:relative;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding:18px 0;
  position:relative;
}

/* LOGO */

.logo-container{
  display:flex;
  align-items:center;
  gap:15px;
  flex-shrink:0;
}

.logo-img{
  width:90px;
  height:auto;
  object-fit:contain;
  display:block;
}

.logo-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.logo-text h2{
  font-size:18px;
  color:#0b4b8a;
  font-weight:700;
  line-height:1.2;
  letter-spacing:1px;
}

.logo-text p{
  color:#6cab2f;
  font-size:13px;
  margin-top:5px;
  font-weight:500;
}

/* NAV */

.nav{
  display:flex;
  align-items:center;
  gap:25px;
}

.nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.3s;
}

.nav a:hover{
  color:#0b4b8a;
}

.active-link{
  color:#0b4b8a !important;
}

/* BUTTONS */

.btn{
  background:#0b4b8a;
  color:#fff;
  padding:14px 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
  display:inline-block;
  border:none;
  cursor:pointer;
}

.btn:hover{
  background:#08345f;
}

.btn-outline{
  border:2px solid #fff;
  color:#fff;
  padding:14px 24px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn-outline:hover{
  background:#fff;
  color:#0b4b8a;
}

.full-btn{
  width:100%;
}

/* HERO */

.hero{
  min-height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)),
  url('main.png');

  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.hero-content{
  color:#fff;
  max-width:750px;
}

.hero h1{
  font-size:65px;
  line-height:1.1;
  margin-bottom:25px;
  font-weight:700;
}

.hero p{
  font-size:20px;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* TITLES */

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:42px;
  color:#0b4b8a;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-image img{
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-text p{
  font-size:17px;
}

/* SERVICES */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.service-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  border-bottom:4px solid #6cab2f;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-5px);
}

.service-card h3{
  color:#0b4b8a;
  margin-bottom:15px;
}

/* PROGRAMS */

.program-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.program-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.program-card:hover{
  transform:translateY(-5px);
}

.program-card h3{
  color:#0b4b8a;
  margin-bottom:15px;
}

/* MOTTO */

.motto{
  background:#eef7f1;
}

.motto-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.motto-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.motto-box h3{
  color:#0b4b8a;
  margin-bottom:20px;
}

.motto-box ul{
  list-style:none;
}

.motto-box ul li{
  padding:14px 0;
  border-bottom:1px solid #eee;
}

/* FAQ */

.faq-container{
  max-width:800px;
  margin:auto;
}

.faq-item{
  background:#fff;
  margin-bottom:15px;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.faq-question{
  width:100%;
  text-align:left;
  padding:20px;
  border:none;
  background:#fff;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.3s ease;
  padding:0 20px;
}

.faq-answer p{
  padding-bottom:20px;
}

/* BOOKING */

.booking-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.booking-container img{
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.booking-form{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.booking-form input,
.booking-form textarea,
.booking-form select{
  width:100%;
  padding:15px;
  margin-bottom:20px;
  border:1px solid #ddd;
  border-radius:10px;
  font-family:inherit;
  font-size:15px;
}

/* CONTACT */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

.contact-form{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px;
  margin-bottom:20px;
  border:1px solid #ddd;
  border-radius:10px;
  font-family:inherit;
}

/* FOOTER */

.footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:60px 20px;
}

.footer h2{
  margin-bottom:10px;
}

.footer-quote{
  color:#9be564;
  margin-bottom:15px;
}

/* MOBILE MENU */

.menu-toggle{
  display:none;
  font-size:34px;
  cursor:pointer;
  color:#0b4b8a;
}

.mobile-booking{
  display:none;
}

/* RESPONSIVE */

@media(max-width:950px){

  .menu-toggle{
    display:block;
  }

  .desktop-btn{
    display:none;
  }

  .mobile-booking{
    display:block;
    margin-top:15px;
  }

  .mobile-booking .btn{
    width:100%;
    text-align:center;
  }

  .nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:0 20px;
    overflow:hidden;
    max-height:0;
    transition:max-height 0.4s ease;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
  }

  .nav.active{
    max-height:700px;
    padding:20px;
  }

  .nav a{
    width:100%;
    padding:14px 0;
    border-bottom:1px solid #eee;
  }

  .hero{
    min-height:auto;
    padding:120px 0;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .about-grid,
  .booking-container,
  .contact-grid,
  .motto-container{
    grid-template-columns:1fr;
  }

  .section-title h2{
    font-size:34px;
  }

  .logo-img{
    width:70px;
  }

  .logo-text h2{
    font-size:16px;
  }

  .logo-text p{
    font-size:11px;
  }

}
img{
  max-width:100%;
  height:auto;
  display:block;
}