.design-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: white;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.design-switcher select {
  padding: 8px 12px;
  border: 2px solid #422673;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  background: white;
}

section#design1 {
  position: relative;
  overflow: hidden;
}

/* BLURRED IMAGE */
section#design1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../landpage-img/1000611688.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.12); /* safer blur edge fix */
  z-index: 0;
}

/* GRADIENT OVERLAY */
section#design1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #032747 0%, #094069 100%);
  opacity: 0.75;
  z-index: 1;
}

/* MAIN CONTENT LAYER */
.design1 {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: visible; /* 🔥 IMPORTANT FIX */
}

/* DECORATIVE CIRCLES */
.design1::before,
.design1::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  z-index: 1;
}

.design1::before {
  top: -15%;
  right: -10%;
  animation: circles-1 3s ease-in-out infinite;
}

.design1::after {
  bottom: -15%;
  left: -10%;
  animation: circles-2 3s ease-in-out infinite;
}

/* CONTENT WRAPPER */
.design1-content {
  position: relative;
  z-index: 2; /* always above circles */
  text-align: center;
  width: 100%;
}

.design1-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 10px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes circles-1 {
  0%,
  100% {
    transform: translatex(0px);
  }
  50% {
    transform: translatex(-20px);
  }
}
@keyframes circles-2 {
  0%,
  100% {
    transform: translatex(-20px);
  }
  50% {
    transform: translatex(0px);
  }
}

.design1-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "El Messiri", sans-serif;
  color: #fff;
}

.design1-subtitle {
  font-size: 2.2rem;
  margin-bottom: 10px;
  opacity: 0.95;
  font-family: "Poppins", sans-serif;
    color: #ff3d00; 
    font-weight: 600;
}

.design-buttons {

  margin-top: 40px;
}

.btn-design1 {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: 3px solid #facd49;
    background: transparent;
    color: #facd49;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-design1:hover {
  background: white;
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
p.branches-subtitle {
    color: #fff;
    /* font-family: var(--font-secondary); */
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
}

@media (max-width: 500px) {
  .branches {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    /* margin-top: 40px; */
  }
}

@media (max-width: 768px) {
  .design1-title {
    font-size: 2rem;
  }
  .design1-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
}
.school-heading {
    font-size: 1.2rem;
    margin: 15px 0;
    font-weight: 500;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

