.elementor-11952 .elementor-element.elementor-element-2db7750{--display:flex;--align-items:stretch;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-11952 .elementor-element.elementor-element-c59d5f8.elementor-element{--align-self:stretch;}@media(min-width:768px){.elementor-11952 .elementor-element.elementor-element-2db7750{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-c59d5f8 *//* Boxed Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Top Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a2a66;
  color: gold;
  padding: 8px 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.top-header .top-left span {
  margin-right: 15px;
  font-size: 14px;
}
.top-header .top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-header a {
  color: gold;
  text-decoration: none;
}
.top-header a:hover {
  text-decoration: underline;
}

.eportal-btn {
  background-color: goldenrod;
  color: #000;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.eportal-btn:hover {
  background-color: #0a2a66;
  color: #fff;
}


.search-form {
  display: flex;
  align-items: center;
}
.search-form input {
  padding: 2px;
  border-radius: 4px 0 0 4px;
  border: none;
}
.search-form button {
  background: gold;
  border: none;
  padding: 5px 10px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

/* Navigation */
.main-nav {
  background: #004080;
  color: white;
  position: relative;
}
.main-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.main-nav .menu li {
  position: relative;
}
.main-nav .menu > li > a {
  display: block;
  padding: 12px 18px;
  color: white;
  text-decoration: none;
}
.main-nav .menu > li > a:hover {
  background: goldenrod;
}
.main-nav .submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #002a50;
  min-width: 200px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav .submenu li a {
  display: block;
  padding: 10px;
  color: white;
}
.main-nav .submenu li a:hover {
  background: #001833;
}
.main-nav .menu li:hover .submenu {
  display: block;
}
.main-nav .menu-toggle {
  display: none;
  padding: 12px 18px;
  cursor: pointer;
  color: white;
}

/* Navigation */
.main-nav {
  background: #0a2a66;
  color: white;
  position: sticky;   /* makes it stick */
  top: 0;             /* sticks to top */
  z-index: 1000;      /* ensures it's above other sections */
}

/* Hero Slider Section */

/* Style is in Html file */

/* BANNER */
.banner img {
  width: 100%;
  display: block;
  margin: 3px 0;
  border-radius: 6px;
}

/* News Ticker */
.news-ticker-boxed {
  max-width: 1200px;
  margin: 0 auto 3px;
  background-color: #0a2a66;
  color: gold;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  overflow: hidden;
  border: 2px dashed gold;
  border-radius: 8px;
  box-shadow: 0 0 10px gold;
}
.news-ticker-icon {
  margin-right: 15px;
  font-size: 22px;
}
.news-ticker-content-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}
.news-ticker-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 50%;
  animation: tickerScroll 100s linear infinite;
  font-weight: bold;
  font-size: 16px;
}
.news-ticker-content-wrapper:hover .news-ticker-content {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
.news-ticker-content a {
  color: gold;
  text-decoration: none;
  margin: 0 20px;
}
.news-ticker-content a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #0a2a66;
  color: gold;
  border-radius: 6px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav .menu {
    flex-direction: column;
    display: none;
  }
  .main-nav .menu.show {
    display: flex;
  }
  .main-nav .menu-toggle {
    display: block;
  }
}/* End custom CSS */