:root {
  --primary-gradient: linear-gradient(135deg, #0050ea 0%, #20bbff 100%);
  --primary-color: #0050ea;
  --secondary-color: #20bbff;
  --dark-color: hsl(140, 70%, 20%);
  --text-color: #0f0f57;
  --light-bg: hsl(140, 50%, 98%);
  --white-color: #ffffff;
}

/*================================================
0. Mixins Css
=================================================*/
.badge-primary-soft {
  background: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.lead-text {
  font-size: 1.125rem;
  color: #52527a;
  line-height: 1.7;
}

.section {
  position: relative;
}

@media (max-width: 1280px) {
  .p6r {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .cta-wrapper .cta-title {
    font-size: 2.6rem !important;
  }
}
/* --- 1. Background (Graph Paper Theme) --- */
.school-hero {
  background-color: #fdfdfd;
  padding: 200px 0px 80px 0px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .school-hero {
    padding: 210px 0px 60px 0px;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .school-hero {
    padding: 60px 0px 60px 0px;
  }
}
@media (max-width: 576px) {
  .school-hero {
    padding: 40px 0px 60px 0px;
  }
}
.school-hero h1 {
  font-size: 2.5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .school-hero h1 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .school-hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .school-hero h1 {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .school-hero .lead {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .school-hero .lead {
    font-size: 1rem;
  }
}

.school-notebook-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Graph paper pattern CSS */
  background-image: linear-gradient(#e5e5f7 1px, transparent 1px), linear-gradient(90deg, #e5e5f7 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
  z-index: 0;
}

/* --- 2. Typography & Buttons --- */
.highlight-text {
  position: relative;
  color: #2563eb;
  z-index: 1;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #fcd34d;
  /* Yellow highlighter color */
  opacity: 0.4;
  z-index: -1;
  transform: rotate(-1deg);
}

.icon-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.bg-primary-soft {
  background-color: rgba(37, 99, 235, 0.1);
}

.border-primary-light {
  border-color: rgba(37, 99, 235, 0.1) !important;
}

.btn-pill {
  border-radius: 50px;
}

.yearbook-card {
  background: #fff;
  padding: 15px 15px 25px 15px;
  border-radius: 10px;
  /* Slight rounded like a photo print */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  z-index: 2;
}

.yearbook-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.student-photo {
  width: 100%;
  display: block;
}

.card-footer-info {
  text-align: center;
  margin-top: 15px;
}

.student-name {
  font-family: "Playfair Display", serif;
  /* Classic font */
  font-weight: 700;
  margin-bottom: 2px;
  color: #333;
}

.class-info {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* --- 4. Animation: Scanner Line --- */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #00d2ff;
  box-shadow: 0 0 10px #00d2ff, 0 0 20px #00d2ff;
  opacity: 0.8;
  z-index: 5;
  /* Default animation fallback if JS fails */
  animation: scanMove 3s linear infinite;
}

@keyframes scanMove {
  0% {
    top: 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
/* --- 5. Animation: Approved Stamp --- */
.status-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  /* Hidden initially */
  border: 3px solid #28a745;
  color: #28a745;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  opacity: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.status-stamp.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(-15deg);
}

/* --- 6. Floating Elements (School Supplies) --- */
.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 20px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.pencil {
  top: -20px;
  right: -10px;
  color: #ffc107;
  transform: rotate(15deg);
  animation-delay: 0s;
}

.ruler {
  bottom: 50px;
  left: -20px;
  color: #2563eb;
  transform: rotate(-15deg);
  animation-delay: 2s;
}

.floating-stat-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  animation: float 5s ease-in-out infinite 1s;
}

.stat-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-text strong {
  display: block;
  font-size: 13px;
  color: #333;
  line-height: 1.2;
}

.stat-text span {
  font-size: 11px;
  color: #888;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-box {
  border-color: #f1f1f1;
}

.shadow-hover:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: transparent;
}

.how-it-works {
  position: relative;
}
.how-it-works .process-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.how-it-works .process-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, hsl(200, 80%, 55%), hsl(190, 80%, 60%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.how-it-works .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}
.how-it-works .process-card:hover:before {
  transform: scaleX(1);
}
.how-it-works .process-card .process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(138, 43, 226, 0.1);
}
.how-it-works .process-card .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: white;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 2rem;
}
.how-it-works .process-card .process-icon i {
  color: white;
}
.how-it-works .process-card .process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  margin-bottom: 15px;
}
.how-it-works .process-card .process-description {
  color: hsl(240, 20%, 50%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section start */
.cta-section {
  padding: 100px 0;
  background: #fff;
}

.cta-wrapper {
  /* Light tint based on brand color #26D0CE/Blue */
  background: linear-gradient(135deg, #f0fbff 0%, #e2f2ff 100%);
  border-radius: 40px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c5d7ee;
}

@media (max-width: 1199px) {
  .cta-wrapper {
    padding: 60px 40px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 40px 25px;
    border-radius: 24px;
  }
}
.cta-wrapper .cta-bg-shapes .cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.cta-wrapper .cta-bg-shapes .cta-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(55, 125, 255, 0.1);
  top: -150px;
  right: -100px;
}

.cta-wrapper .cta-bg-shapes .cta-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(38, 208, 206, 0.1);
  bottom: -100px;
  left: -50px;
}

.cta-wrapper .cta-badge {
  display: inline-block;
  background: rgba(55, 125, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(55, 125, 255, 0.2);
  color: #377dff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.cta-wrapper .cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e2022;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (max-width: 1199px) {
  .cta-wrapper .cta-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 991px) {
  .cta-wrapper .cta-title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-title {
    font-size: 2rem;
  }
}
.cta-wrapper .cta-subtitle {
  font-size: 1.1rem;
  color: #677788;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .cta-wrapper .cta-subtitle {
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .cta-wrapper .cta-title {
    font-size: 2.6rem !important;
  }
}
.cta-wrapper .cta-subtitle strong {
  color: #377dff;
  background: rgba(55, 125, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.cta-wrapper .cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 991px) {
  .cta-wrapper .cta-benefits {
    max-width: 500px;
    margin: 0 auto;
  }
}
.cta-wrapper .cta-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1e2022;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.cta-wrapper .cta-benefits li i {
  width: 28px;
  height: 28px;
  background: rgba(55, 125, 255, 0.1);
  color: #377dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .cta-wrapper .volume-pricing-box {
    text-align: center;
  }
}
.cta-wrapper .volume-pricing-box .volume-label {
  display: block;
  color: #1e2022;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-wrapper .volume-pricing-box .volume-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 991px) {
  .cta-wrapper .volume-pricing-box .volume-pills {
    justify-content: center;
  }
}
.cta-wrapper .volume-pricing-box .volume-pills .v-pill {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #1e2022;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cta-wrapper .volume-pricing-box .volume-pills .v-pill:hover {
  background: #377dff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(55, 125, 255, 0.3);
}

.cta-wrapper .volume-pricing-box .volume-cta-link {
  color: #377dff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.cta-wrapper .volume-pricing-box .volume-cta-link:hover {
  opacity: 1;
  color: #0056b3;
}

.cta-wrapper .cta-action-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .cta-wrapper .cta-action-box {
    padding: 35px 25px;
  }
}
.cta-wrapper .cta-action-box .offer-highlight {
  text-align: center;
  margin-bottom: 30px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-icon {
  font-size: 2.5rem;
  color: #377dff;
  margin-bottom: 15px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e2022;
  margin-bottom: 8px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-subtitle {
  color: #677788;
  font-size: 0.95rem;
}

.cta-wrapper .cta-buttons .cta-btn-custom {
  font-size: 1.1rem !important;
}

.cta-wrapper .cta-action-box .pricing-context .price-value {
  color: #1e2022;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.cta-wrapper .cta-action-box .pricing-context .price-disclaimer {
  color: #677788;
  font-size: 0.85rem;
}

.cta-wrapper .cta-action-box .trust-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .cta-wrapper .cta-action-box .trust-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.cta-wrapper .cta-action-box .trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e2022;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.cta-wrapper .cta-action-box .trust-row .trust-item i {
  font-size: 1rem;
}/*# sourceMappingURL=school.css.map */