/*principle page*/


/* Page body font reset */
body {
 
    margin: 0;
    padding: 0;
}

/* Section background */
.school-section {
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 50px;
    background: linear-gradient(76deg, rgba(235,252,255,1) 0%, rgba(255,254,228,1) 100%);
    gap: 40px;
    flex-wrap: wrap;
}

/* Left side image box */
.school-image {
    flex: 1;
    max-width: 500px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Main image */
.school-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reflection effect */
.school-image::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url("your-image.jpg") no-repeat center/cover; */
    transform: scaleY(-1);
    opacity: 0.25;
    filter: blur(3px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

/* Right side text */
.school-text {
    flex: 1;
    min-width: 300px;
}

.school-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.read-more {
    display: inline-block;
    background-color: #e6004c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.read-more:hover {
    background-color: #c4003d;
}

/* Responsive */
@media(max-width: 768px) {
    .school-section {
        flex-direction: column;
        padding: 20px;
    }
}

/* Wrapper with minimal vertical gap */
.heading-wrapper {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 4px; /* heading aur line ke beech minimal gap */
}

/* Heading */
.heading-block {
  margin: 0; /* default margin remove */
  /* font-family: "Times New Roman", serif;
  font-weight: bold; */
  font-size: 32px;
  color: #be0707;
}

/* Divider with lines & star */
.heading-divider {
  display: flex;
  align-items: center;
  margin-left:73px;
  margin-top:-15px;
  /* justify-content: center; */
  gap: 6px; /* line aur star ke beech ka gap */
}

.heading-divider .line {
  flex: 0 0 80px; /* line ki fixed length */
  height: 2px;
  background-color: #be0808; /* red line */
}

.heading-divider .star {
  font-size: 18px;
  color: #be0707;
}
.heading1-divider1 {
  display: flex;
  align-items: center;
  margin-left:73px;
  margin-top:-15px;
  /* justify-content: center; */
  gap: 6px; /* line aur star ke beech ka gap */
}
.heading1-divider1 .line1 {
  flex: 0 0 80px; /* line ki fixed length */
  height: 2px;
  background-color: #ffffff; /* red line */
}
.heading1-divider1 .star1 {
  font-size: 18px;
  color: #ffffff;
}


