

 .section-title {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: #0d6efd;
    }
    .section-subtitle {
      font-size: 1.1rem;
      color: #6c757d;
    }
    .mv_card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform .2s;
      padding: 2rem;
    }
    .mv_card:hover {
      transform: translateY(-5px);
    }
    .img-box {
      border-radius: 15px;
      overflow: hidden;
    }
    .img-box img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .values-list li {
      margin-bottom: 0.75rem;
      font-size: 1.05rem;
    }
     .principal-section {
      padding: 60px 0;
      background: #f8f9fa;
    }
    .principal-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 30px;
    }
   .principal-img {
    max-width: 220px;
    width: 100%;
    border-radius: 15px; /* Rounded rectangle look */
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    object-fit: cover;
  }
    .principal-name {
      font-size: 1.3rem;
      font-weight: 600;
      margin-top: 15px;
    }
    .principal-title {
      font-size: 1rem;
      color: #6c757d;
    }

    /* Infrastructure page design */
     .infra-section {
      padding: 60px 0;
      background: #f8f9fa;
    }
    .infra-box {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .infra-box img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .infra-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 15px;
      background: linear-gradient(to top, rgba(0, 0, 64, 0.9), rgba(0,0,64,0.2));
      color: #fff;
      font-size: 1.1rem;
      font-weight: 500;
      opacity: 0.95;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }
    .infra-box:hover img {
      transform: scale(1.15);
    }
    .infra-box:hover .infra-overlay {
      transform: translateY(0);
    }
    .infra-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    }

    /* ------- Fees Structure Page design ------- */
     .fees-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      margin-top: 30px;
    }
    .fees-title {
      background: linear-gradient(90deg, #007bff, #00c6ff);
      color: #fff;
      padding: 12px 20px;
      font-size: 20px;
      font-weight: bold;
    }
    .fees-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .fees-list li {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      border-bottom: 1px solid #f0f0f0;
    }
    .fees-list li:nth-child(even) {
      background: #fafafa;
    }
    .fees-list li:hover {
      background: #eaf6ff;
      transition: 0.3s;
    }
    .fees-list li strong {
      color: #333;
      font-weight: 600;
    }
    .total-row {
      background: #007bff;
      color: #fff;
      font-weight: bold;
      font-size: 18px;
      padding: 15px 20px;
      text-align: right;
    }
    .note {
      font-size: 14px;
      margin-top: 15px;
      color: #555;
    }
    .note strong {
      color: #000;
    }

    /* ---------- Holiday List Page Design --------- */
     .holiday-container {
      max-width: 1000px;
      margin: 40px auto;
      background: #bbbbbb;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    }
    .holiday-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    table th {
      background-color: #007bff;
      color: #fff;
      text-align: center;
    }
    table td {
      text-align: center;
      vertical-align: middle;
    }
    .note {
      font-size: 12px;
      color: #777;
      margin-top: 10px;
      font-style: italic;
    }

    /* admission procedure */
    /* Admission Section */
.admission-section {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.admission-section h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.admission-section .intro {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

/* Steps Grid */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Step Card */
.step {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.step .icon {
  font-size: 2.5rem;
  color: #ff9800;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 600px) {
  .admission-section h1 {
    font-size: 1.8rem;
  }

  .step {
    padding: 20px;
  }

  .step h3 {
    font-size: 1rem;
  }
}

/* news  scroll section start */
.scroll-con{
    font-family: Arial, sans-serif;
    color: #fff;
  }

  .ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #05529a;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
  }

  .ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%; /* start off-screen right */
    animation: ticker-scroll linear infinite;
    animation-duration: 40s; /* adjust speed */
  }

  .ticker span {
    margin: 0 60px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }

  @keyframes ticker-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .ticker-wrap:hover .ticker {
    animation-play-state: paused;
  }

  /* home page design new add section */
  /* our facilities section */
  .facility-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
  }
  .facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  /* mission & Vision section */
   .mission-card, .vision-card {
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
  }
  .mission-card:hover, .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }
 

 /* our services page design  */
  #features-bangla .card {
    border-radius: 15px;
    background: #fff;
  }

  #features-bangla h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #0d6efd;
    margin: 10px auto 0;
    border-radius: 2px;
  }

  .features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    transition: all 0.3s ease;
  }

  /* Custom bullet */
  .features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: #0d6efd;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  /* Hover effect */
  .features-list li:hover {
    color: #0d6efd;
    transform: translateX(5px);
  }
  .features-list li:hover::before {
    background: #198754; /* green on hover */
  }

  /* key features page design */
  .features-card {
      border-radius: 15px;
      background: #fff;
      padding: 40px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .features-heading {
      font-weight: 700;
      color: #0d6efd;
    }
    .features-heading::after {
      content: "";
      display: block;
      width: 90px;
      height: 3px;
      background: #0d6efd;
      margin: 8px auto 20px;
      border-radius: 2px;
    }
    .features-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 14px;
      font-size: 16px;
      color: #444;
      line-height: 1.6;
      transition: all 0.3s ease;
    }
    .features-list li::before {
     
      margin-right: 10px;
      font-size: 16px;
      color: #0d6efd;
      font-weight: bold;
      flex-shrink: 0;
    }
    .features-list li:hover {
      color: #0d6efd;
      transform: translateX(3px);
    }
    .gallery img {
      border-radius: 12px;
      transition: transform 0.3s ease;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }



/* admission form design page */
  /* Base Styles */
.main-admission {
  margin: 20px;
  padding: 10px;
  background: #f0f4f8;
  font-family: 'Segoe UI', sans-serif;
}

.admissionform-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 850px;
  margin: auto;
}

/* Header */
.admissionheader {
  display: grid;
  grid-template-columns: 100px 1fr 150px;
  align-items: center;
  border-bottom: 2px solid #0073e6;
  padding-bottom: 10px;
  gap: 10px;
  margin-bottom: 20px;
}

.admissionheader img.logo {
  width: 80px;
  height: auto;
}

.school-info {
  text-align: center;
}

.school-info h2 {
  color: #0073e6;
  margin: 5px 0;
}

.sub-header {
  font-size: 12px;
  line-height: 1.5;
  color: #555;
}

/* Photo */
.admissionphoto {
  width: 120px;
  height: 140px;
  border: 1px dashed #0073e6;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #555;
  border-radius: 6px;
  margin: auto;
}

.admissionphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Application Title */
.application-title {
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
  color: #0073e6;
}

.application-title span {
  display: inline-block;
  border: 2px solid #0073e6;
  border-radius: 12px;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: bold;
}

/* Form Fields */
.formfield {
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.formfield label {
  flex: 1 1 150px;
  font-weight: 600;
  color: #333;
}

.formfield input, 
.formfield textarea, 
.formfield select {
  flex: 2 1 250px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.formfield input:focus,
.formfield textarea:focus,
.formfield select:focus {
  border-color: #0073e6;
  outline: none;
}

textarea {
  min-height: 80px;
}

/* Declaration Box */
.declaration {
  font-size: 13px;
  margin: 15px 0;
  padding: 10px;
  background: #f0f7ff;
  border-left: 4px solid #0073e6;
  border-radius: 6px;
}

/* Signatures */
.signatures {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}

.sign-box {
  flex: 1;
  text-align: center;
}

.signature {
  width: 130px;
  height: 70px;
  border: 1px solid #0073e6;
  margin: auto;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #555;
  border-radius: 6px;
  overflow: hidden;
}

.signature img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Upload Button */
.upload-btn {
  display: none;
}

.upload-label {
  display: inline-block;
  margin: 6px auto;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #0073e6;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-label:hover {
  background: #005bb5;
}

/* Submit Button */
.submit-btn {
  text-align: center;
  margin-top: 20px;
}

.submit-btn button {
  padding: 10px 25px;
  font-size: 16px;
  color: #fff;
  background: #0073e6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn button:hover {
  background: #005bb5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .admissionheader {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .photo-upload {
    margin-top: 15px;
  }

  .formfield {
    flex-direction: column;
  }

  .formfield label, .formfield input, .formfield textarea, .formfield select {
    flex: 1 1 100%;
  }

  /* Move WhatsApp to next line */
  input[name="whatsapp_number"] {
    margin-top: 5px;
  }

  .signatures {
    flex-direction: column;
    align-items: center;
  }

  .sign-box {
    margin-bottom: 15px;
  }
}

/* Print */
@media print {
  input, textarea, select { border: none; outline: none; }
  .upload-label { display: none; }
  body { background: #fff; }
}
