/* ===== NAVBAR ===== */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 20px;
  background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 40%, #ffebee 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 196, 0, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBubble 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(230, 51, 41, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: floatBubble 8s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: slideInLeft 0.9s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--red);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Fredoka One", cursive;
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--red);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: "Baloo 2", cursive;
  font-size: 1.45rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(230, 51, 41, 0.35);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 51, 41, 0.45);
  background: #c42a22;
}

.btn-outline {
  background: transparent;
  color: var(--red);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  border: 2.5px solid var(--red);
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.9s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(245, 196, 0, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulseStar 3s ease-in-out infinite;
}

@keyframes pulseStar {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-logo-wrap img {
  width: 380px;
  max-width: 100%;
  animation: floatBounce 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(230, 51, 41, 0.2));
}

@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero-taglines {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.tagline-pill {
  background: white;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--red);
  border-left: 3px solid var(--yellow);
}

/* ===== SECTION STYLES ===== */
section {
  padding: 90px 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--red);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: "Fredoka One", cursive;
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: white;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-logo-big {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 15px 35px rgba(230, 51, 41, 0.15));
}

.about-deco {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  top: -20px;
  right: 20px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  opacity: 0.4;
  animation: spinSlow 15s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-content .section-title {
  text-align: left;
}
.about-content .section-label {
  margin-bottom: 14px;
}

.about-para {
  font-size: 1rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

.skills-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.skill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ===== ADVANTAGE CARDS ===== */
.advantage {
  background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 100%);
}

.advantage-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: white;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 51, 41, 0.15);
}

.card-emoji {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}

.card-title {
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #666;
}

/* ===== BEYOND CLASSROOM ===== */
.beyond {
  background: white;
}

.beyond-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.beyond-intro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
}

.beyond-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.beyond-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--cream);
  border-radius: 20px;
  border: 2px solid rgba(245, 196, 0, 0.3);
  transition: all 0.3s;
}

.beyond-item:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(245, 196, 0, 0.2);
}

.beyond-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--yellow-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beyond-text h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}

.beyond-text p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666;
}

.beyond-quote {
  background: linear-gradient(135deg, var(--red), #c42a22);
  border-radius: 24px;
  padding: 45px 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.beyond-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 12rem;
  opacity: 0.08;
  font-family: "Fredoka One", cursive;
  line-height: 1;
}

.beyond-quote p {
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.beyond-quote span {
  color: var(--yellow);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--red);
  padding: 50px 5%;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-num {
  font-family: "Fredoka One", cursive;
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: linear-gradient(135deg, #fffde7 0%, #fff8e1 100%);
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.philosophy-content .section-title {
  text-align: left;
}

.philosophy-para {
  font-size: 1rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 25px;
}

.philosophy-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.25s;
}

.highlight-row:hover {
  transform: translateX(6px);
  border-left: 4px solid var(--red);
}

.highlight-icon {
  font-size: 1.5rem;
}

.highlight-text {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}

.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.philo-card {
  background: white;
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
}

.philo-card:nth-child(2) {
  margin-top: 25px;
}
.philo-card:nth-child(4) {
  margin-top: -25px;
}

.philo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(230, 51, 41, 0.12);
}

.philo-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.philo-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 7px;
}

.philo-card p {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.55;
}

/* ===== ENROLL CTA ===== */
.enroll-cta {
  background: linear-gradient(135deg, var(--yellow), #ffb300);
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.enroll-cta::before {
  content: "★";
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: -50px;
  right: -50px;
  color: var(--red);
  animation: spinSlow 20s linear infinite;
}

.enroll-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.enroll-title {
  font-family: "Fredoka One", cursive;
  font-size: 2.8rem;
  color: var(--red);
  margin-bottom: 16px;
}

.enroll-desc {
  font-size: 1.1rem;
  color: rgba(60, 0, 0, 0.7);
  margin-bottom: 35px;
  line-height: 1.7;
  font-weight: 600;
}

.enroll-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--red);
  color: white;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(230, 51, 41, 0.4);
  display: inline-block;
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230, 51, 41, 0.5);
}

.btn-white {
  background: white;
  color: var(--red);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2.5px solid white;
  display: inline-block;
}

.btn-white:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: white;
  padding: 70px 5% 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 75px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 260px;
}

.footer-tagline {
  margin-top: 12px;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 700;
}

.footer-col h4 {
  font-family: "Baloo 2", cursive;
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: var(--yellow);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.88rem;
  opacity: 0.7;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact p span {
  opacity: 1;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

.footer-motto {
  font-family: "Fredoka One", cursive;
  color: var(--yellow);
  font-size: 0.95rem;
  opacity: 0.85;
  letter-spacing: 1px;
}

/* ===== FLOATING SHAPES ===== */
.shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatBubble 7s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-logo-wrap img {
    width: 260px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-taglines {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .philosophy-inner {
    grid-template-columns: 1fr;
  }
  .beyond-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .philosophy-visual {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-content .section-title {
    text-align: center;
  }
  .about-content .section-label {
    display: block;
    text-align: center;
  }
  .philosophy-content .section-title {
    text-align: center;
  }
}

.gallery-section {
  padding: 70px 20px;
  background: #f8fafc;
}

.gallery-header {
  text-align: center;
  margin-bottom: 45px;
}

.gallery-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.gallery-header p {
  font-size: 16px;
  color: #6b7280;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  opacity: 0;
  transition: 0.4s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 30px;
  }

  .gallery-card img {
    height: 230px;
  }
}

a {
  text-decoration: none;
}

section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 15px;
}

.section-title p {
  color: #6b7280;
  font-size: 17px;
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(255, 94, 98, 0.95), rgba(255, 153, 102, 0.92)),
    url("https://images.unsplash.com/photo-1509062522246-3755977927d7");

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -150px;
  left: -120px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero p {
  font-size: 20px;
  line-height: 1.9;
  color: #fff;
  max-width: 700px;
  margin-bottom: 35px;
}

.hero-btn {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
  display: inline-block;
  margin-right: 15px;
}

.btn1 {
  background: #fff;
  color: #ff5e62;
}

.btn2 {
  border: 2px solid #fff;
  color: #fff;
}

.hero-btn:hover {
  transform: translateY(-5px);
}

/* ABOUT */

.about-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #111827;
}

.about-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 16px;
}

/* FEATURES */

.features {
  background: #fff;
}

.feature-card {
  background: #f8fbff;
  padding: 40px 25px;
  border-radius: 30px;
  text-align: center;
  transition: 0.4s;
  height: 100%;
  border: 1px solid #eef2ff;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5e62, #ff9966);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  margin-bottom: 25px;
}

.feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

/* COUNTER */

.counter-section {
  background: linear-gradient(135deg, #ff5e62, #ff9966);
}

.counter-box {
  text-align: center;
  color: #fff;
}

.counter {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 20px;
  font-weight: 500;
}

/* GALLERY */

.gallery-card {
  overflow: hidden;
  border-radius: 25px;
  position: relative;
  margin-bottom: 25px;
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

/* TEAM */

.team-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.team-content {
  padding: 30px 20px;
}

.team-content h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.team-content p {
  color: #777;
}

/* CTA */

.cta-box {
  background: linear-gradient(135deg, #ff5e62, #ff9966);

  border-radius: 40px;
  padding: 80px 30px;
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 800px;
  margin: auto;
  line-height: 1.9;
  font-size: 18px;
  margin-bottom: 35px;
}

/* FOOTER */

footer {
  background: #111827;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .hero h1 {
    font-size: 52px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .cta-box h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }
}

