.it-hero-4-ptb {
   padding-top: 155px;
   padding-bottom: 0px;
   
   
}

.result-card {
   padding: 25px 20px;
   border-radius: 20px;
   transition: 0.3s ease;
}

.result-card:hover {
   transform: translateY(-8px);
}

.it-feature-3-icon img {
   width: 140px;
   height: 140px;
   object-fit: cover;
   border-radius: 20px;
}

.marks-circle {
   width: 95px;
   height: 95px;
   margin: 18px auto 0;

   display: flex;
   align-items: center;
   justify-content: center;

   border-radius: 50%;

   background: linear-gradient(135deg, #ff6b4a, #ff8c42);

   color: #fff;
   font-size: 22px;
   font-weight: 700;

   box-shadow: 0 10px 25px rgba(255, 107, 74, 0.35);

   border: 5px solid #fff;
}


.bd-100 {
   border-radius: 100% !important;
}

.it-teacher-details-right {
   background-color: var(--it-common-white);
   padding: 10px;
   margin-left: 20px;
}

.principal-section {
   background: #f8f8f8;
}

.principal-box {
   background: #fff;
   padding: 60px;
   border-radius: 25px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.principal-img-box img {
   width: 100%;
   /* max-width:320px; */
   border-radius: 25px;
   box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.principal-info {
   margin-top: 25px;
}

.principal-info h4 {
   font-size: 28px;
   margin-bottom: 5px;
}

.principal-info span {
   color: #ff6b4a;
   font-weight: 600;
}

.sub-title {
   color: #ff6b4a;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.principal-content h2 {
   font-size: 42px;
   margin: 15px 0 25px;
   line-height: 1.2;
}

.principal-content p {
   color: #666;
   line-height: 1.9;
   margin-bottom: 18px;
}

@media(max-width:991px) {

   .principal-box {
      padding: 35px;
   }

   .principal-content {
      margin-top: 40px;
      text-align: center;
   }

   .principal-content h2 {
      font-size: 32px;
   }

}

.it-footer-top-text a {
   color: var(--it-common-white);
   font-family: var(--it-ff-heading);
   font-size: 18px;
   font-weight: 700;
   background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
   display: inline;
   background-size: 0% 1px, 0 1px;
   background-position: 100% 100%, 0 100%;
   background-repeat: no-repeat;
   transition: background-size 0.3s linear;
}


#latest-news {
   position: fixed;
   bottom: 20px;
   right: 20px;
   width: 300px;
   background: #fff;
   border: 2px solid var(--theme);
   border-radius: 10px;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   z-index: 9999;
   font-family: Arial, sans-serif;
   opacity: 0;
   transform: translateX(100%);
   animation: slideInRight 0.5s ease-out forwards;
}

/* Header */
#latest-news .news-header {
   background: var(--theme);
   ;
   color: #fff;
   padding: 10px;
   font-weight: bold;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-radius: 8px 8px 0 0;
}

#latest-news .news-header button {
   background: transparent;
   border: none;
   color: #fff;
   font-size: 18px;
   margin-left: 5px;
   cursor: pointer;
}

#latest-news .news-content {
   padding: 10px;
   max-height: 350px;
   overflow: hidden;
   transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Floating Toggle Button */
#reopen-news {
   position: fixed;
   bottom: 120px;
   right: 20px;
   background: #b60f0e;
   color: #fff;
   border: none;
   border-radius: 30px;
   padding: 12px 20px;
   font-size: 16px;
   cursor: pointer;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
   z-index: 10000;
   opacity: 0.9;
   transition: background 0.3s, transform 0.3s;
   display: none;
   /* hidden on desktop by default */
}

#reopen-news:hover {
   background: var(--theme);
   transform: scale(1.05);
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
   #latest-news {
      width: 90%;
      right: 5%;
      bottom: 50;
      top: auto;
      border-radius: 10px 10px 0 0;
      transform: translateY(100%);
      animation: none;
      /* start hidden */
      display: none;
      /* hidden by default */
   }

   #latest-news .news-content {
      max-height: 150px;
   }

   #reopen-news {
      display: block;
      /* show button only on mobile */
   }
}

/* Header */
#latest-news .news-header {
   background: #b60f0e;
   color: #fff;
   padding: 14px 16px;
   font-weight: 600;
   font-size: 18px;

   display: flex;
   justify-content: space-between;
   align-items: center;

   border-radius: 10px 10px 0 0;

   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

#latest-news .news-header span {
   display: flex;
   align-items: center;
   gap: 8px;
   letter-spacing: .5px;
}

#latest-news .news-header span::before {
   content: "📰";
   font-size: 18px;
}

#latest-news .news-header button {
   width: 30px;
   height: 30px;

   border: none;
   border-radius: 50%;

   background: rgba(255, 255, 255, 0.15);
   color: #fff;

   font-size: 18px;
   cursor: pointer;

   transition: .3s;
}

#latest-news .news-header button:hover {
   background: #fff;
   color: #ff6b4a;
   transform: scale(1.08);
}

/* Animations */
@keyframes slideInRight {
   from {
      opacity: 0;
      transform: translateX(100%);
   }

   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@keyframes slideOutRight {
   from {
      opacity: 1;
      transform: translateX(0);
   }

   to {
      opacity: 0;
      transform: translateX(100%);
   }
}

@keyframes slideInUp {
   from {
      opacity: 0;
      transform: translateY(100%);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes slideOutDown {
   from {
      opacity: 1;
      transform: translateY(0);
   }

   to {
      opacity: 0;
      transform: translateY(100%);
   }
}

.mobile-footer {
   display: none;
}

@media (max-width: 768px) {
   .mobile-footer {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      border-top: 1px solid #ccc;
      justify-content: space-around;
      align-items: center;
      padding: 10px 0;
      box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      font-weight: 600;
   }

   .mobile-footer a {
      text-align: center;
      text-decoration: none;
      color: #333;
      font-size: 14px;
   }

   .mobile-footer i {
      font-size: 20px;
      display: block;
      margin-bottom: 4px;
   }
}



.inquiry-form {
   padding: 10px;
   background: #fff;
   border-radius: 22px;
}

.it-contact-wrap {
   padding: 30px 40px;
   padding-bottom: 70px;
   border-radius: 5px;
   background-color: var(--it-common-black);
   background-repeat: no-repeat;
   background-size: cover;
}

.it-section-subtitle-2 {
   color: #b10a0b;
   font-size: 14px;
   font-weight: 400;
   height: 32px;
   line-height: 32px;
   padding: 0 22px;
   display: inline-block;
   margin-bottom: 25px;
   text-transform: uppercase;
   border-radius: 5px;
   background-color: rgba(0, 175, 239, 0.2);
}

.theme-color {
   color: var(--it-theme-6)
}

.it-breadcrumb-bg {
   height: 200px;
   background-repeat: no-repeat;
   background-size: cover;
   object-fit: cover;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   background: #0e2a46;
}

.it-choose-content p {
   color: #4D5756;
   font-size: 15px;
   font-weight: 400;
   line-height: 28px;
   margin-bottom: 0;
   padding-right: 0px;
}

.txt-white {
   color: #fff;
}

.admission-section {

   margin: 40px auto;
   padding: 30px;
   background: #ffffff;
   border-radius: 10px;
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);

   line-height: 1.8;
}

.admission-section h2 {
   color: rgb(182, 15, 14);
   ;
   margin-bottom: 20px;
   font-size: 32px;
   border-bottom: 3px solid rgb(182, 15, 14);
   ;
   display: inline-block;
   padding-bottom: 8px;
}

.admission-section h3 {
   color: #333;
   margin-top: 25px;
   margin-bottom: 10px;
   font-size: 22px;
}

.admission-section p {
   color: #555;
   margin-bottom: 15px;
}

.admission-section ul {
   margin-top: 15px;
   padding-left: 20px;
}

.admission-section ul li {
   margin-bottom: 10px;
   color: #444;
}

.highlight-box {
   background: #f8f9fa;
   border-left: 5px solid rgb(182, 15, 14);
   ;
   padding: 15px;
   margin: 20px 0;
   border-radius: 5px;
}


.fee-section {
   
   margin: 40px auto;
   padding: 60px;
  
}

.fee-section h2 {
   text-align: center;
   color: rgb(182, 15, 14);;
   margin-bottom: 10px;
}

.fee-section h3 {
   color: #333;
   margin-top: 40px;
   margin-bottom: 15px;
}

.fee-table {
   width: 100%;
   border-collapse: collapse;
   margin-bottom: 30px;
}

.fee-table th {
   background: rgb(182, 15, 14);;
   color: #fff;
   padding: 12px;
   text-align: center;
}

.fee-table td {
   padding: 12px;
   border: 1px solid #ddd;
   text-align: center;
}

.fee-table tbody tr:nth-child(even) {
   background: #f8f9fa;
}

.fee-table tbody tr:hover {
   background: #eef5ff;
}

@media (max-width: 768px) {
   .table-responsive {
      overflow-x: auto;
   }
}


.it-section-title-3 {
    font-size: 39px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1;
    font-family: var(--it-ff-poppins);
    margin-bottom: 0;
}

.principal-box2 {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 15px 40px;
    background: rgb(255, 255, 255);
   
    border-radius: 25px;
}