 .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 ------- */
    /* Scoped safely */
.fees-structure-ui {
  font-family: 'Poppins', sans-serif;
}

/* Title */
.fees-structure-ui h1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #1a237e;
  margin-bottom: 30px;
  position: relative;
}
.fees-structure-ui h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Row container */
.fees-structure-ui .fees-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.fees-structure-ui .fees-card {
  flex: 1 1 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fees-structure-ui .fees-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Header */
.fees-structure-ui .fees-title {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  padding: 14px 20px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* List */
.fees-structure-ui .fees-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fees-structure-ui .fees-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15.5px;
}
.fees-structure-ui .fees-list li:nth-child(even) {
  background: #fafafa;
}
.fees-structure-ui .fees-list li:hover {
  background: #eaf6ff;
  transition: 0.3s;
}
.fees-structure-ui .fees-list li strong {
  color: #333;
  font-weight: 600;
}

/* Total */
.fees-structure-ui .total-row {
  background: #007bff;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 15px 20px;
  text-align: right;
  border-top: 2px solid #e0e0e0;
}

/* Note */
.fees-structure-ui .note {
  font-size: 14px;
  margin-top: 25px;
  color: #555;
  text-align: center;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  border: 1px dashed #ccc;
}
.fees-structure-ui .note strong {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .fees-structure-ui .fees-row {
    flex-direction: column;
    gap: 20px;
  }
  .fees-structure-ui h1 {
    font-size: 22px;
  }
}

    /* ---------- 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 */
.process-card {
    transition: all 0.3s ease;
}
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.process-icon i {
    transition: all 0.3s ease;
}
.process-card:hover .process-icon i {
    transform: scale(1.2);
}
.cta-admission .btn {
    transition: all 0.3s ease;
}
.cta-admission .btn:hover {
    transform: scale(1.05);
}

/* 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; }
}


/* for Commiittee Page design */
    .committee-container {
      max-width: 800px;
      margin: auto;
      background: #fff;
      border-radius: 16px;
      padding: 50px 60px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-top: 6px solid #0d6efd;
    }

    .committee-title {
      text-align: center;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 26px;
      color: #0d6efd;
      margin-bottom: 25px;
      letter-spacing: 1px;
      position: relative;
    }

    .committee-title::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background: #0d6efd;
      margin: 10px auto 0;
      border-radius: 5px;
    }

    .committee-description {
      text-align: center;
      color: #555;
      font-size: 15px;
      margin-bottom: 35px;
    }

    .committee-list {
      list-style: none;
      padding: 0;
    }

    .committee-list li {
      background: #f8f9fb;
      border-left: 4px solid #0d6efd;
      padding: 12px 18px;
      border-radius: 10px;
      margin-bottom: 12px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .committee-list li:hover {
      background: #e9f1ff;
      transform: translateX(5px);
      box-shadow: 0 4px 10px rgba(13, 110, 253, 0.15);
    }

    .committee-number {
      font-weight: 600;
      color: #0d6efd;
      font-size: 16px;
      min-width: 25px;
    }

    .committee-list li span {
      font-weight: 600;
      color: #111;
    }

    .committee-role {
      color: #555;
      font-size: 15px;
    }

    /* Our Future Page Design */
     .future-section {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      margin: 50px auto;
      max-width: 1000px;
    }

    .future-section img {
      width: 100%;
      height: 450px;
      object-fit: cover;
    }

    .future-content {
      padding: 50px 40px;
    }

    .future-content h2 {
      text-align: center;
      font-weight: 700;
      color: #1f3c88;
      font-size: 2rem;
      margin-bottom: 25px;
      position: relative;
    }

    .future-content h2::after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background-color: #1f3c88;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .future-content p {
      color: #555;
      text-align: justify;
      line-height: 1.8;
      font-size: 16px;
      margin-bottom: 15px;
    }

    @media (max-width: 768px) {
      .future-content {
        padding: 30px 20px;
      }

      .future-section img {
        height: 280px;
      }
    }

    /* Our Trust Page design  */
      .trust-ui {
      font-family: 'Poppins', sans-serif;
      margin: 40px auto;
      max-width: 850px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 40px 50px;
      background-color: #ffffff;
      color: #2b2b2b;
      line-height: 1.7;
    }

    .trust-ui h2 {
      font-size: 28px;
      font-weight: 700;
      color: #1a237e;
      border-bottom: 3px solid #05529a;
      display: inline-block;
      padding-bottom: 6px;
      margin-bottom: 15px;
      letter-spacing: 0.5px;
    }

    .trust-ui h3 {
      text-transform: uppercase;
      font-weight: 600;
      color: #212121;
      margin-bottom: 5px;
      font-size: 20px;
    }

    .trust-ui p {
      color: #555;
      font-size: 15.5px;
      margin-bottom: 20px;
    }

    .trust-ui .trust-details {
      border-left: 5px solid #13a653;
      padding-left: 25px;
      margin-top: 25px;
    }

    .trust-ui ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .trust-ui ul li {
      position: relative;
      background: #fafafa;
      padding: 15px 20px 15px 50px;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .trust-ui ul li:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .trust-ui ul li::before {
      content: "✔";
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #13a653;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-ui strong {
      color: #1a237e;
      font-weight: 600;
    }

    .trust-ui .highlight {
      font-weight: 600;
      color: #000;
    }

    @media (max-width: 768px) {
      .trust-ui {
        margin: 20px;
        padding: 25px 20px;
      }
      .trust-ui h2 {
        font-size: 22px;
      }
    }

    /* Donate page design */
    .donate-ui {
      font-family: 'Poppins', sans-serif;
      margin: 40px auto;
      max-width: 900px;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 40px 50px;
      color: #333;
      line-height: 1.7;
    }

    .donate-ui h2 {
      font-size: 30px;
      font-weight: 700;
      color: #1a237e;
      border-bottom: 3px solid #05529a;
      display: inline-block;
      padding-bottom: 6px;
      margin-bottom: 25px;
      letter-spacing: 0.5px;
    }

    .donate-ui .banner {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 25px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }

    .donate-ui .bank-info {
      background: #fafafa;
      border-left: 5px solid #13a653;
      padding: 25px;
      border-radius: 8px;
      margin-bottom: 25px;
    }

    .donate-ui .bank-info h3 {
      color: #1a237e;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .donate-ui .bank-info p {
      margin: 8px 0;
      font-size: 15.5px;
    }

    .donate-ui .qr-section {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .donate-ui .qr-section img {
      width: 180px;
      border: 2px solid #13a653;
      border-radius: 10px;
      padding: 8px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .donate-ui .terms {
      background: #fdfdfd;
      border-top: 2px dashed #ddd;
      padding-top: 25px;
      margin-top: 30px;
    }

    .donate-ui .terms h4 {
      color: #1a237e;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .donate-ui .terms p {
      font-size: 14.5px;
      color: #555;
      margin-bottom: 8px;
    }

    .donate-ui .contact {
      margin-top: 20px;
      background: #05529a;
      color: #fff;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      font-weight: 500;
    }

    .donate-ui .contact a {
      color: #fff;
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .donate-ui {
        margin: 20px;
        padding: 25px 20px;
      }
      .donate-ui .qr-section {
        flex-direction: column;
        align-items: center;
      }
      .donate-ui h2 {
        font-size: 24px;
      }
    }


    /* top bar style here */
    .topbar {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    position: relative;
    z-index: 1050; /* ensure it stays above the menu */
}

.navbar {
    margin-top: 0; /* let topbar occupy space above */
    top: 0;
    left: 0;
}

.topbar a:hover {
    text-decoration: underline;
}

.topbar .badge {
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s;
}

.topbar .badge:hover {
    background-color: #ffc107;
    color: #000;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .topbar-contact {
        justify-content: center;
    }
}
/* Add margin between topbar and navbar on mobile */
@media (max-width: 991px) {
    .header .navbar {
        margin-top: 170px; /* Adjust this value as needed to match topbar height */
    }
}

/* for Educational Tranning Page Design */
.ssit-montessori-section {
  padding: 80px 0;
  background: #f8faff;
}

.ssit-montessori-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a2b5f;
}

.ssit-montessori-header p {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 16px;
  color: #555;
}

.ssit-montessori-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.ssit-montessori-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.ssit-montessori-icon {
  width: 80px;
  height: 80px;
  background: #e8efff;
  color: #2a4bd8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 34px;
}

.ssit-montessori-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #1a2b5f;
}

.ssit-montessori-text {
  font-size: 15px;
  color: #666;
  margin: 15px 0 25px;
}

.ssit-montessori-btn {
  padding: 12px 30px;
  background: #2a4bd8;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.ssit-montessori-btn:hover {
  background: #1f39a8;
}
    
    /*Student's Trainning Programme*/
    
    .stp-body {
font-family: 'Poppins', sans-serif;
background: #f5f7ff;
}
.stp-container {
max-width: 1200px;
margin: 50px auto;
padding: 0 20px;
}
.stp-title {
text-align: center;
font-size: 36px;
margin-bottom: 40px;
color: #0b3cc1;
font-weight: 700;
}
.stp-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.stp-card {
background: #fff;
padding: 40px 30px;
border-radius: 16px;
text-align: center;
box-shadow: 0 8px 20px rgba(0,0,0,0.05);
transition: 0.3s;
}
.stp-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.stp-icon {
width: 70px;
margin-bottom: 20px;
}
.stp-card-title {
font-size: 24px;
color: #0b3cc1;
font-weight: 600;
margin-bottom: 15px;
}
.stp-text {
font-size: 16px;
line-height: 1.6;
color: #444;
margin-bottom: 25px;
}
.stp-btn {
display: inline-block;
background: #0b61ff;
color: #fff;
padding: 12px 30px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: 0.3s;
}
.stp-btn:hover {
background: #0846bd;
}
    

.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Icon Style */
.ficon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect */
.ficon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Tooltip Label */
.ficon .label {
    position: absolute;
    right: 65px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.ficon:hover .label {
    opacity: 1;
    transform: translateX(0);
}

/* Different Colors for Each */
.whatsapp { background: #25D366; }
.call { background: #007BFF; }
.instagram { 
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}
.youtube { background: #FF0000; }  
.facebook { background: #1877F2; }


/* Faculties button center */
.btn-center {
    text-align: center;
    margin-top: 30px;
}
    
    