@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --text: #102a41;
  --muted: #5b7388;
  --primary: #00ade7;
  --primary-dark: #007fb2;
  --border: #dbe9f4;
  --shadow: 0 18px 70px rgba(0, 67, 120, 0.08);
}

* {
  box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

body {
  margin: auto; /* 0;*/
  font-family: "Rubik", "Roboto", "Helvetica", "Arial", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-family: 'Poppins', sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a.btn {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner,
.hero-grid,
.feature-grid,
.why-grid,
.footer-grid {
  display: grid;
  gap: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(13, 50, 73, 0.06);
  backdrop-filter: blur(10px);
}

.header-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--text);
}

.brand img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: right;
  gap: 24px;
}

.site-nav a {
  color: var(--primary);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(0, 173, 231, 0.16);
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  padding: 10px 16px;
}

.hero {
  padding: 80px 0 64px;
}

.hero-home {
  background: linear-gradient(180deg, rgba(0, 173, 231, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
}

.hero-copy {
  max-width: 500px;
}
.eyebrow h1{
    font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}


.hero-copy h1{
      font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.hero-copy,
.feature-copy h2,
.section-head h2,
.why-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 2.8vw, 4rem);
  line-height: 1.05;
}

.hero-copy span{
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.hero-copy p,
.feature-copy p,
.card p,
.why-card p,
.section-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-media {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature {
  background: #ffffff;
  padding: 64px 0;
}

.feature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
}

.feature-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 0;
}

.section-courses .section-head,
.section-team .section-head,
.section-why .why-copy {
  margin-bottom: 40px;
}

.section-head span,
.why-copy span {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-head h2,
.why-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 3rem);
}

.cards {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.team-card,
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 173, 231, 0.12);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 18px;
}

.team-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.team-card p {
  margin: 0;
  color: var(--muted);
}

.why-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.why-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-card h3 {
  margin-top: 0;
}

.site-footer {
  background: #021927;
  color: #ffffff;
  padding: 48px 0;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.site-footer h3 {
  margin: 0 0 18px;
}

.site-footer p {
  margin: 0 10px 12px 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #021927;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .header-inner,
  .hero-grid,
  .feature-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .site-nav {
    justify-content: flex-end;
    position: absolute;
    left: 20px;
    top: 70px;
    right: 20px;
    bottom:auto;
    display: grid;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px 20px;
    gap: 12px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn-outline {
    order: 3;
  }

  .hero {
    padding-top: 60px;
  }

  .cards,
  .why-cards,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.site-header{
  height: auto;
  padding: 0px;

}

@media (max-width:480px){

.container{
    width:95%;
}

.hero-copy h1{
    font-size:2rem;
    line-height:1.2;
}

.hero-copy p{
    font-size:15px;
}

.btn{
    width:100%;
}

.brand img{
    width:40px;
    height:40px;
}

.header-inner{
    gap:10px;
}

.hero-grid,
.feature-grid,
.why-grid,
.footer-grid{
    gap:20px;
}

}