:root {
  --bg: #0b0f14;
  --panel: #121821;
  --panel-2: #0f141c;
  --text: #e6edf3;
  --muted: #9fb0c3;
  --brand: #3aa0ff;
  --brand-2: #7cc4ff;
  --accent: #00d4a6;
  --danger: #ff5a5a;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius: 14px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0b0f14 0%, #0d1218 100%);
}
.ad-banner {
  width: 70%;
  height: 35%;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  margin: 20px auto;
  animation: fadeIn 1s ease-in-out;
}

.ad-content h2 {
  color: #000000;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.ad-content p {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 15px;
}

.ad-btn {
  display: inline-block;
  background: #fff;
  color: #0077ff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ad-btn:hover {
  background: #472eff;
  color: white;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.divider {
  width: 90%;
  margin: 30px auto;
  max-width: 940px;
  margin-top: 15px;
  height: 8px;
  background-color: #F1F2F9;
  border: none;
  border-radius: 5px;
  
}

.Adcard .brandtext {
  font-size: 12px;
  text-align: right;
  color: #2821f2;
  padding: 8px;
  width: auto;
  background-color: #F1F2F9;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px
}

a {
  color: var(--brand);
  text-decoration: none
}

a:hover {
  color: var(--brand-2)
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo {
  width: 36px;
  height: 36px
}

.brand-name {
  font-weight: 700;
  letter-spacing: .2px
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px
}

.hamburger {
  width: 26px;
  height: 2px;
  background: var(--text);
  position: relative
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--text)
}

.hamburger::before {
  top: -7px
}

.hamburger::after {
  top: 7px
}

.nav-menu {
  display: flex;
  gap: 18px;
  align-items: center
}

.nav-menu a {
  padding: 8px 10px;
  border-radius: 10px
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, .06)
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: var(--text);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform .15s ease, filter .15s ease
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.1)
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: none
}

.btn-sm {
  padding: 8px 12px;
  font-weight: 600
}

/* Hero */
.hero {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 10px
}

.hero p {
  color: var(--muted);
  margin: 0 0 18px
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin: 18px 0
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none
}

.hero-highlights li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #cfe2ff
}

.hero-visual {
  display: grid;
  gap: 14px
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow)
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #cfe2ff
}

.stat-label {
  color: var(--muted)
}

/* Sections */
.section {
  padding: 60px 0
}

.section.alt {
  background: radial-gradient(1200px 600px at 10% 0%, rgba(58, 160, 255, .08), transparent 60%)
}

.section h2 {
  font-size: 1.8rem;
  margin: 0 0 8px
}

.section-lead {
  color: var(--muted);
  margin: 0 0 24px
}

/* Grid cards */
.grid {
  display: grid;
  gap: 18px
}

.cards {
  grid-template-columns: repeat(4, 1fr)
}

.card.service .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(58, 160, 255, .12);
  display: grid;
  place-items: center;
  margin-bottom: 10px
}

.card.service svg {
  width: 24px;
  height: 24px;
  fill: #9bd1ff
}

/* Pricing */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.pricing-card {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #121821, #0f141c);
  border: 1px solid rgba(255, 255, 255, .08)
}

.pricing-card h3 {
  margin: 0 0 10px
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .08)
}

.pricing-list li:last-child {
  border-bottom: 0
}

.note {
  margin-top: 14px;
  color: #bfe6ff
}

/* Gallery */
.gallery {
  grid-template-columns: repeat(4, 1fr)
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px
}

.gallery-item img {
  transition: transform .3s ease
}

.gallery-item:hover img {
  transform: scale(1.04)
}

/* FAQ */
.faq details {
  background: linear-gradient(180deg, #121821, #0f141c);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px
}

.faq summary {
  cursor: pointer;
  font-weight: 600
}

.faq p {
  color: var(--muted);
  margin: 10px 0 0
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px
}

.contact-form input,
.contact-form textarea {
  background: #0e141c;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text);
  border-radius: 12px;
  padding: 10px
}

.form-note {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 8px
}

.contact-info .info-block {
  margin-bottom: 14px
}

.contact-info h3 {
  margin: 0 0 6px
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 20px 0;
  background: rgba(12, 16, 22, .5)
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.site-footer nav a {
  margin-right: 12px
}

.site-footer nav a:last-child {
  margin-right: 0
}

/* Responsive */
@media (max-width: 980px) {
  .hero-wrap {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .pricing-table {
    grid-template-columns: 1fr 1fr
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: block
  }

  .nav-menu {
    position: absolute;
    right: 4%;
    top: 64px;
    background: #0e141c;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 200px
  }

  .nav-menu.show {
    display: flex
  }

  .cards {
    grid-template-columns: 1fr
  }

  .pricing-table {
    grid-template-columns: 1fr
  }

  .gallery {
    grid-template-columns: 1fr
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}










form .policy {
  display: flex;
  align-items: center;
}

.wrapper2 {
  position: relative;
  width: 90%;
  margin-top: 15px;
  background: #FFFF;
  padding: 34px;
  margin: 20px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.opform {
  display: block;
}

.edittext {
  display: inline-flex;
  margin-right: 15px;
}



.opform h2 {
  text-align: center;
}

.opdetails {
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: 10px;

}

.other {
  display: block;

}

.wrapper {
  position: relative;

  width: 100%;
  background: #FFFF;
  padding: 34px;
  margin: 20px;
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.wrapper h2 {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #181818;
  font-family: Arial, Helvetica, sans-serif;
}

.wrapper form {
  margin-top: 25px;
}

.wrapper form .StudentInfo {
  height: 52px;
  margin: 18px 10px;
}

form .StudentInfo input {
  height: 60%;
  width: 90%;
  outline: none;
  margin-right: 5%;
  margin-top: 5%;
  padding: 0 15px;
  font-size: 17px;
  font-weight: 400;
  color: #333;
  border: 1.5px solid #C7BEBE;
  border-bottom-width: 2px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.StudentInfo input:focus,
.StudentInfo input:valid {
  border-color: #0142f6;
}