* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: #15202b;
  background: #f5f8fc;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section-space {
  padding: 100px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(4, 68, 121, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #044479;
  margin-bottom: 14px;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  color: #0d1b2a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #044479 0%, #0d63a5 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(4, 68, 121, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: #044479;
  border: 1px solid rgba(4, 68, 121, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #fff;
}

/* top strip */
.top-strip {
  position: relative;
  z-index: 20;
  
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(4, 68, 121, 0.08);
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #044479 0%, #e24077 100%);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 12px 22px rgba(4, 68, 121, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: #0d1b2a;
  font-size: 18px;
  font-weight: 700;
}

.brand-text small {
  color: #587188;
  font-size: 12px;
  font-weight: 500;
}

.top-cta {
  color: #044479;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(4, 68, 121, 0.08);
  border: 1px solid rgba(4, 68, 121, 0.08);
  transition: 0.3s ease;
}

.top-cta:hover {
  background: rgba(4, 68, 121, 0.12);
}

/* hero */
.hero{
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;

  background:
    linear-gradient(rgba(255, 255, 255, 0.925), rgba(235, 235, 235, 0.76)),
    url("../img/hero-education.jpg") center/cover no-repeat;

}

.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}

.hero__bg-shape--one {
  width: 340px;
  height: 340px;
  background: rgba(226, 64, 119, 0.08);
  top: -100px;
  right: -80px;
}

.hero__bg-shape--two {
  width: 280px;
  height: 280px;
  background: rgba(4, 68, 121, 0.08);
  bottom: -80px;
  left: -70px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #044479;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 700;
  color: #0d1b2a;
  max-width: 760px;
}

.hero-title span {
  display: block;
  color: #044479;
}

.hero-text {
  max-width: 650px;
  margin: 22px 0 28px;
  font-size: 19px;
  color: #526476;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mini-stat {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(4, 68, 121, 0.08);
  box-shadow: 0 10px 25px rgba(13, 27, 42, 0.06);
}

.mini-stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: #044479;
  margin-bottom: 6px;
}

.mini-stat span {
  font-size: 14px;
  color: #6d7d8c;
  font-weight: 600;
}

.hero__form-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 470px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(4, 68, 121, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(13, 27, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, #044479 0%, #e24077 100%);
}

.hero-card__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(226, 64, 119, 0.10);
  color: #b02f5d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-card h3 {
  font-size: 30px;
  line-height: 1.1;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.hero-card p {
  color: #5f7385;
  margin-bottom: 22px;
  font-size: 16px;
}

.lead-form .field {
  margin-bottom: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(4, 68, 121, 0.12);
  background: #ffffff;
  color: #1d2d3d;
  padding: 0 16px;
  border-radius: 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.lead-form textarea {
  min-height: 100px;
  resize: vertical;
  padding: 14px 16px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(4, 68, 121, 0.35);
  box-shadow: 0 0 0 4px rgba(4, 68, 121, 0.08);
}

.field--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* intl tel input */
.iti {
  width: 100%;
  display: block;
}

.iti input#phone {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(4, 68, 121, 0.12);
  background: #ffffff;
  color: #1d2d3d;
  padding-left: 92px !important;
  padding-right: 16px;
  border-radius: 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.iti input#phone:focus {
  border-color: rgba(4, 68, 121, 0.35);
  box-shadow: 0 0 0 4px rgba(4, 68, 121, 0.08);
}

.iti__country-container {
  left: 0;
}

.iti__selected-country {
  height: 54px;
  padding: 0 12px 0 14px;
  border-right: 1px solid rgba(4, 68, 121, 0.10);
  border-radius: 14px 0 0 14px;
  background: transparent;
}

.iti__selected-country:hover {
  background: rgba(4, 68, 121, 0.04);
}

.iti__selected-dial-code {
  color: #044479;
  font-weight: 600;
  margin-left: 6px;
}

.iti__arrow {
  margin-left: 8px;
  border-top-color: #044479;
}

.iti__dropdown-content {
  border: 1px solid rgba(4, 68, 121, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.12);
  overflow: hidden;
}

.iti__search-input {
  height: 46px;
  border: none;
  border-bottom: 1px solid rgba(4, 68, 121, 0.08);
  padding: 0 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  outline: none;
}

.iti__country-list {
  font-family: 'Source Sans 3', sans-serif;
}

.iti__country {
  padding: 10px 14px;
  transition: background 0.2s ease;
}

.iti__country:hover {
  background: rgba(4, 68, 121, 0.05);
}

.iti__country.iti__highlight {
  background: #044479;
  color: #ffffff;
}

.iti__country-name,
.iti__dial-code {
  font-size: 14px;
}

.iti__country.iti__highlight .iti__dial-code,
.iti__country.iti__highlight .iti__country-name {
  color: #ffffff;
}

.iti__country.iti__highlight {
    background-color: #0d63a5 !important;
}

.submit-btn {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #044479 0%, #0d63a5 100%);
  color: #ffffff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(4, 68, 121, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(4, 68, 121, 0.28);
}

@media (max-width: 767px) {
  .field--double {
    grid-template-columns: 1fr;
  }
}

/* overview */
.overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.overview__content h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 18px;
  color: #0d1b2a;
}

.overview__content p {
  color: #5b6d7d;
  font-size: 17px;
  margin-bottom: 16px;
}

.overview__media {
  position: relative;
  min-height: 520px;
}

.image-card--main {
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(4, 68, 121, 0.14), rgba(4, 68, 121, 0.10)),
    url('../img/hero-education.jpg') center/cover no-repeat;
  box-shadow: 0 30px 60px rgba(13, 27, 42, 0.12);
}

.floating-panel {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(4, 68, 121, 0.08);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.10);
}

.floating-panel strong {
  display: block;
  color: #0d1b2a;
  margin-bottom: 6px;
  font-size: 18px;
}

.floating-panel span {
  color: #5e7080;
  font-size: 14px;
}

.overview-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}

.point-card {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(4, 68, 121, 0.08);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.05);
}

.point-card h4 {
  color: #0d1b2a;
  margin-bottom: 8px;
  font-size: 19px;
}

.point-card p {
  margin-bottom: 0;
  font-size: 15px;
}

/* stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  padding: 32px 26px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
  border: 1px solid rgba(4, 68, 121, 0.07);
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.05);
}

.stat-card h3 {
  font-size: 44px;
  line-height: 1;
  color: #044479;
  margin-bottom: 10px;
}

.stat-card p {
  color: #66798a;
  font-size: 16px;
  font-weight: 600;
}

/* services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid rgba(4, 68, 121, 0.08);
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(13, 27, 42, 0.09);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 68, 121, 0.08);
  color: #044479;
  font-weight: 700;
  margin-bottom: 18px;
}

.service-card h4 {
  font-size: 21px;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #617485;
}

/* fields */
.fields-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.field-box {
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(4, 68, 121, 0.08);
  box-shadow: 0 10px 24px rgba(13, 27, 42, 0.04);
  color: #203243;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.field-box:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 64, 119, 0.18);
  box-shadow: 0 20px 34px rgba(13, 27, 42, 0.08);
}

.final-cta{
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(226, 64, 119, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.12), transparent 24%),
    linear-gradient(135deg, #061a31 0%, #0a2f57 45%, #044479 100%);
}

.final-cta-premium{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.22);
}

.section-label--light{
  color: rgba(255,255,255,0.78);
}

.final-cta__content h2{
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  color: #ffffff;
  margin: 10px 0 18px;
  max-width: 700px;
}

.final-cta__content h2 span{
  color: #ffd166;
}

.final-cta__content p{
  max-width: 640px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  margin-bottom: 28px;
}

.cta-premium-points{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.cta-point{
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.cta-point strong{
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.cta-point span{
  display: block;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  line-height: 1.4;
}

.cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-outline-light{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.btn-outline-light:hover{
  background: #ffffff;
  color: #044479;
}

.final-cta__visual{
  position: relative;
  min-height: 540px;
}

.cta-image-wrap{
  position: relative;
  height: 100%;
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0,0,0,0.22);
}

.cta-image-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,26,49,0.28), rgba(6,26,49,0.04));
}

.cta-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-floating-card{
  position: absolute;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.cta-floating-card--top{
  top: 24px;
  left: -22px;
}

.cta-floating-card--bottom{
  right: -18px;
  bottom: 24px;
}

.mini-label{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #044479;
  margin-bottom: 8px;
}

.cta-floating-card strong{
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: #0d1b2a;
  margin-bottom: 6px;
}

.cta-floating-card p{
  margin: 0;
  font-size: 14px;
  color: #5d6f7f;
  line-height: 1.5;
}

.cta-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 1;
}

.cta-orb--one{
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
  background: rgba(226, 64, 119, 0.16);
}

.cta-orb--two{
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -100px;
  background: rgba(255, 209, 102, 0.14);
}

@media (max-width: 1100px){
  .final-cta-premium{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-cta__visual{
    min-height: auto;
  }

  .cta-image-wrap{
    min-height: 420px;
  }

  .cta-floating-card--top{
    left: 18px;
  }

  .cta-floating-card--bottom{
    right: 18px;
  }
}

@media (max-width: 767px){
  .final-cta{
    padding: 84px 0;
  }

  .final-cta-premium{
    padding: 24px;
    border-radius: 26px;
  }

  .final-cta__content h2{
    font-size: 34px;
  }

  .final-cta__content p{
    font-size: 16px;
  }

  .cta-premium-points{
    flex-direction: column;
  }

  .cta-point{
    width: 100%;
  }

  .cta-image-wrap{
    min-height: 320px;
    border-radius: 22px;
  }

  .cta-floating-card{
    position: static;
    max-width: 100%;
    margin-top: 14px;
  }
}



/* footer */
.footer {
  padding: 28px 0;
  background: #0f1720;
}

.footer-brand img{
height:90px;
width:auto;
filter: brightness(1.2);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer strong {
  color: #fff;
  font-size: 18px;
}

.footer p {
  color: rgba(255, 255, 255, 0.64);
  margin: 0;
  font-size: 14px;
}

/* animation utility */
.reveal-up {
  will-change: transform, opacity;
}

/* responsive */
@media (max-width: 1100px) {
  .hero__grid,
  .overview__grid {
    grid-template-columns: 1fr;
  }

  .hero__form-wrap {
    justify-content: flex-start;
  }

  .services-grid,
  .stats-grid,
  .fields-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overview-points {
    grid-template-columns: 1fr;
  }

  .overview__media {
    min-height: auto;
  }

  .image-card--main {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 72px 0;
  }

  .top-strip__inner,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 46px 0 70px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-card {
    padding: 24px;
    border-radius: 24px;
  }

  .field--split {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .stats-grid,
  .fields-grid {
    grid-template-columns: 1fr;
  }

  .hero-mini-stats {
    flex-direction: column;
  }

  .mini-stat {
    width: 100%;
  }

  .image-card--main {
    min-height: 320px;
  }

  .floating-panel {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
}


.footer{
background:#0f1720;
color:#aab6c2;
padding:22px 0;
}

.footer-inner{
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
}

.footer-brand strong{
color:#fff;
font-size:16px;
}

.footer-links{
display:flex;
gap:22px;
}

.footer-links a{
color:#9fb0c0;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.footer-links a:hover{
color:#ffffff;
}

.footer-copy{
font-size:13px;
color:#7f8c98;
}

/* mobile */

@media(max-width:768px){

.footer-inner{
flex-direction:column;
text-align:center;
}

.footer-links{
justify-content:center;
}

}


.scroll-top{
position:fixed;
right:25px;
bottom:25px;

width:48px;
height:48px;

border:none;
border-radius:50%;

background:#044479;
color:#fff;

font-size:20px;
cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

box-shadow:0 10px 25px rgba(0,0,0,0.2);

opacity:0;
visibility:hidden;

transition:all .3s ease;

z-index:999;
}

.scroll-top:hover{
background:#03365e;
transform:translateY(-3px);
}

.scroll-top.show{
opacity:1;
visibility:visible;
}

.section-sub{
max-width:600px;
margin:10px auto 0;
color:#6b7c8c;
font-size:17px;
}

.fields-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;
margin-top:50px;
}

.field-card{

padding:30px 20px;
text-align:center;

background:#ffffff;

border-radius:18px;

border:1px solid rgba(4,68,121,0.08);

transition:all .3s ease;

box-shadow:0 12px 25px rgba(0,0,0,0.05);

}

.field-card:hover{

transform:translateY(-6px);

box-shadow:0 25px 40px rgba(0,0,0,0.08);

border-color:#044479;

}

.field-icon{

font-size:32px;

margin-bottom:14px;

}

.field-card h4{

font-size:16px;
font-weight:600;
color:#0d1b2a;

}
@media(max-width:1000px){

.fields-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.fields-grid{
grid-template-columns:1fr;
}

}



/*Privacy policy CSS */


/* HERO SECTION */

.page-hero{
position:relative;
overflow:hidden;
padding:110px 0 95px;

background:
linear-gradient(rgba(4,68,121,.78), rgba(4,68,121,.68)),
url("../img/privacy-hero.jpg") center/cover no-repeat;
}

.page-hero::before{
content:"";
position:absolute;
inset:0;

background:
radial-gradient(circle at top right, rgba(226,64,119,.18), transparent 24%),
radial-gradient(circle at bottom left, rgba(255,209,102,.14), transparent 20%);
}

.page-hero__content{
position:relative;
z-index:2;
max-width:800px;
}

.page-hero .section-label{
color:rgba(255,255,255,.82);
}

.page-hero h1{
font-size:clamp(42px,6vw,72px);
line-height:1.02;
color:#fff;
margin-bottom:18px;
font-weight:700;
}

.page-hero p{
max-width:700px;
font-size:19px;
color:rgba(255,255,255,.88);
}



/* PRIVACY CONTENT WRAPPER */

.policy-wrap{
margin-top:-60px;
position:relative;
z-index:5;
}

.policy-layout{
display:grid;
grid-template-columns:300px 1fr;
gap:30px;
align-items:start;
}



/* SIDEBAR */

.policy-sidebar{
position:sticky;
top:100px;

background:rgba(255,255,255,.85);
backdrop-filter:blur(14px);

border:1px solid rgba(4,68,121,.08);
border-radius:22px;

padding:24px;

box-shadow:0 20px 40px rgba(13,27,42,.06);
}

.policy-sidebar h3{
font-size:18px;
color:#0d1b2a;
margin-bottom:14px;
}

.policy-sidebar ul{
list-style:none;
display:flex;
flex-direction:column;
gap:10px;
}

.policy-sidebar a{
display:block;
padding:10px 12px;
border-radius:12px;
color:#54687a;
font-size:15px;
transition:.25s ease;
}

.policy-sidebar a:hover{
background:rgba(4,68,121,.06);
color:#044479;
}



/* MAIN CONTENT */

.policy-content{
background:#ffffff;

border:1px solid rgba(4,68,121,.08);
border-radius:26px;

padding:42px;

box-shadow:0 22px 48px rgba(13,27,42,.06);
}

.policy-content section + section{
margin-top:40px;
padding-top:40px;
border-top:1px solid rgba(4,68,121,.08);
}

.policy-content h2{
font-size:34px;
line-height:1.1;
color:#0d1b2a;
margin-bottom:16px;
}

.policy-content h3{
font-size:22px;
line-height:1.2;
color:#0d1b2a;
margin:18px 0 10px;
}

.policy-content p{
font-size:17px;
color:#55697b;
margin-bottom:14px;
}

.policy-content ul{
margin:8px 0 18px 20px;
color:#55697b;
}

.policy-content li{
margin-bottom:10px;
font-size:17px;
}



/* HIGHLIGHT BOX */

.highlight-box{
padding:22px 24px;
border-radius:18px;

background:linear-gradient(180deg,#f7fbff 0%,#eef5fb 100%);

border:1px solid rgba(4,68,121,.08);

margin:18px 0 24px;
}

.highlight-box p:last-child{
margin-bottom:0;
}



/* CONTACT CARD */

.contact-card{
padding:26px;
border-radius:22px;

background:linear-gradient(135deg,#044479 0%,#0d63a5 100%);

color:#fff;

box-shadow:0 18px 40px rgba(4,68,121,.18);

margin-top:14px;
}

.contact-card h3{
color:#fff;
margin-top:0;
margin-bottom:10px;
}

.contact-card p{
color:rgba(255,255,255,.88);
margin-bottom:8px;
}



/* RESPONSIVE */

@media(max-width:1024px){

.policy-layout{
grid-template-columns:1fr;
}

.policy-sidebar{
position:static;
}

}

@media(max-width:767px){

.page-hero{
padding:85px 0 75px;
}

.page-hero h1{
font-size:42px;
}

.page-hero p{
font-size:17px;
}

.policy-content{
padding:26px;
border-radius:20px;
}

.policy-content h2{
font-size:28px;
}

}


.thankyou-box{

max-width:760px;

margin:0 auto;

text-align:center;

background:#fff;

border-radius:28px;

padding:60px 50px;

border:1px solid rgba(4,68,121,0.08);

box-shadow:0 22px 50px rgba(13,27,42,0.08);

}

.thankyou-icon{

width:80px;
height:80px;

margin:0 auto 20px;

display:flex;
align-items:center;
justify-content:center;

font-size:40px;
font-weight:700;

color:#fff;

background:linear-gradient(135deg,#044479,#0d63a5);

border-radius:50%;

box-shadow:0 12px 30px rgba(4,68,121,0.25);

}

.thankyou-box h2{

font-size:32px;

margin-bottom:12px;

color:#0d1b2a;

}

.thankyou-box p{

font-size:17px;

color:#55697b;

margin-bottom:20px;

}

.thankyou-actions{

display:flex;

justify-content:center;

gap:18px;

margin-top:20px;

flex-wrap:wrap;

}

.btn-outline{

border:2px solid #044479;

color:#044479;

background:transparent;

padding:12px 24px;

border-radius:999px;

font-weight:600;

transition:.3s;

}

.btn-outline:hover{

background:#044479;

color:#fff;

}











.logo-showcase {
  position: relative;
  overflow: hidden;
}

.logo-showcase .section-sub {
  max-width: 680px;
  margin: 10px auto 0;
  color: #6b7c8c;
  font-size: 17px;
}

.logo-carousel-wrap {
  position: relative;
  margin-top: 46px;
  overflow: hidden;
  padding: 10px 0;
}

.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f6f9fc 0%, rgba(246, 249, 252, 0) 100%);
}

.logo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f6f9fc 0%, rgba(246, 249, 252, 0) 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 20px;
  animation: logoScroll 80s linear infinite;
}

.logo-carousel-wrap:hover .logo-carousel-track {
  animation-play-state: paused;
}

.logo-item {
  width: 210px;
  min-width: 210px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(4, 68, 121, 0.08);
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.05);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(13, 27, 42, 0.09);
  border-color: rgba(4, 68, 121, 0.16);
}

.logo-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.82;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-210px * 15 - 20px * 15));
  }
}

@media (max-width: 1200px) {
  .logo-item {
    width: 190px;
    min-width: 190px;
  }

  @keyframes logoScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-190px * 15 - 20px * 15));
    }
  }
}

@media (max-width: 767px) {
  .logo-showcase .section-sub {
    font-size: 16px;
  }

  .logo-carousel-wrap::before,
  .logo-carousel-wrap::after {
    width: 55px;
  }

  .logo-item {
    width: 160px;
    min-width: 160px;
    height: 96px;
    padding: 16px;
    border-radius: 18px;
  }

  .logo-item img {
    max-height: 40px;
  }

  @keyframes logoScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-160px * 15 - 20px * 15));
    }
  }
}