/* Make the dialog a flex container */
.ui-dialog {
  display: flex !important;
  flex-direction: column;
  width: 90%;
  max-width: 600px;
  top: 150px !important;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 10000;
  position: fixed !important;
}

/* Title bar always visible */
.ui-dialog .ui-dialog-titlebar {
  flex-shrink: 0;
  background: #f1f1f1;
  padding: 10px 16px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  z-index: 1;
}

/* Scroll only the content */
.ui-dialog .ui-dialog-content {
  overflow-y: auto !important;
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
  max-height: unset !important;
}

/* Footer always visible */
.ui-dialog .ui-dialog-buttonpane {
  flex-shrink: 0;
  padding: 10px 16px;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
  text-align: right;
}

.search{
  border-radius: 4px;
  background: #F2F6FF;
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.search-form {
  position: relative;
  max-width: 800px;
  margin: auto;
}

/* Style the input field */
.search-form input[type="search"] {
  width: 100%;
  padding: 12px 45px 12px 20px; /* padding-right makes space for icon */
  font-size: 16px;
  border-radius: 25px;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  color: #333;
  box-sizing: border-box;
}

/* Icon button styled as SVG inside input */
.search-form input[type="submit"] {
  position: absolute;
  top: 70%;
  right: 15px;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 0;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg fill='gray' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2a8 8 0 105.29 14.29l4.7 4.7a1 1 0 001.42-1.42l-4.7-4.7A8 8 0 0010 2zm0 2a6 6 0 110 12 6 6 0 010-12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.container-inline .form-type-search{
    display: unset;
}
.form-type-search label{
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    display: flex;
    text-align: center;
    color: #0C2C83;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 71.429% */
    letter-spacing: 0.28px;
}

.search-container-js h2{
    padding-top: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
}
/* Full-width underline */
.search-container-js > h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #0C2C83; /* Light teal or grey */
  margin-top: 0.5rem;
}
.search-container-js ol{
    padding-top:50px;
}
.carousel-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-content {
  position: absolute;
  z-index: 2;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}
.slider-desc{
  color: #000;
  text-align: justify !important;
}
.carousel-title{
  color: var(--Text-Black, #232F50);
}
.dark-blue{
  color: var(--Blue-Dark, #09327B);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 124%;
}
.pink{
  color: #E82C78;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 124%;
}
.banner-overlay-wrapper {
  position: relative;
}

.update-section-wrapper {
  position: absolute;
  bottom: -50px; /* adjust this to control how far it overlaps */
  
}
.lilac-btn{
  display: inline-block;
  padding: 10px 20px;
  color: #E82C78;; /* Pink color */
  border: 2px solid #E82C78;
  border-radius: 10px;
  background-color: transparent;
  font-family: 'Noto Sans Malayalam', sans-serif;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lilac-btn:hover {
  background-color: #E82C78;;
  color: white;
}
.about-items{
  border-radius: 16px;
  background: var(--Gray-2, #F7F6FA);
}
.about-item-image{
  border-radius: 8px;
  border: 2px solid #EBA830;
  background: lightgray 50% / cover no-repeat;
  width: 98px;
  height: 98px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
@keyframes dissolve {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
.dissolveIn {
  animation-name: dissolve;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(1.1);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
  animation-duration: 3s;
  animation-fill-mode: both;
}

.whatsapp-float {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float:hover {
  background-color: #1ebe57; /* darker green on hover */
  text-decoration: none;
}
.whatsapp-float-red{
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float-red:hover {
  background-color: #c82333; /* darker green on hover */
  text-decoration: none;
}
.icon {
  font-size: 20px; /* or match the size used by fa-2x */
  color: #ec0c57;
  margin-left: 10px;
}

.mail-address {
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    padding: 1.5rem;
    background-color: var(--Gray-2, #F7F6FA);
    margin-bottom: 2rem;
  }
.mail-container{
  border-radius: 12px;
  background-color: rgba(200, 226, 255, 0.50);
  padding: 1.5rem;
}
  .mail-address > div {
    flex: 1 1 45%;
    margin-bottom: 0;
  }

  .mail-address h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
  }

  .mail-address p {
    color: #555;
    font-size: 0.95rem;
  }
  .text-dark-blue{
    color: #003366;
  }
  .messages-wrapper {
    margin: 1rem 0;
  }
  .messages--status {
    background: #e6ffed;
    border: 1px solid #00a651;
    padding: 10px;
    color: #005f2f;
  }
  .messages--error {
    background: #ffe6e6;
    border: 1px solid #cc0000;
    padding: 10px;
    color: #660000;
  }
  .carousel-links {
    background: var(--Shades-White, #FFF);
  }
  
  .whatsapp-link {
    width: 20px;
  }
  .ikm-widget {
  top:10px;
  z-index: 1000;
  position: absolute;
  right: auto;
  align-items: center;      
  justify-content: center;
}

#ikm-accessibility-toggle{
  width: 20px; 
  height: auto;
}
.btn-pink-custom {
  background-color: #E83A7A;
  color: #fff;
  border-radius: 6px;
}

.btn-pink-custom:hover {
  background-color: #d63384;
  color: #fff;
}
