:root{
  --primary: #0E3A5D;
  --accent: #FF6B35;
  --sky: #00B4D8;
  --bg: #F6F9FC;
  --dark: #0B1320;
  --white: #ffffff;
  --muted: #6c757d;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
  --radius: 14px;
}

body{
  background: var(--bg);
  font-family: "DM Sans", sans-serif;
}


/* ===== Mini Topbar ===== */
.mini-topbar{
  background: #ff6b35;
  padding: 3px 0;
  font-size: 13px;
}

.mini-topbar-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.mini-link{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.mini-link i{
  font-size: 14px;
}

.mini-link:hover{
  color: #0b2f4a;
}

@media(max-width: 576px){
  .mini-topbar-inner{
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ===== Header Top ===== */
.top-header{
  background: var(--white);
}

.header-logo{
  height: 42px;
  width: auto;
}

.header-logo-lg{
  height: 50px;
  width: auto;
}

.header-title h6{
  color: var(--dark);
  font-size: 16px;
}

.header-title small{
  font-size: 12px;
}

/* ===== TOPBAR ===== */
.topbar{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 10px 0;
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* left-right gap */
  padding-left: 20px;
  padding-right: 20px;
}

.header-logo{
  height: 48px;
  width: auto;
}

/* ===== Register Button ===== */
.btn-register{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* background: linear-gradient(135deg, #00B4D8, #FF6B35); */
  background: linear-gradient(135deg,#ff6b35, #0b1f2a);
  color: #fff;
  text-decoration: none;

  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;

  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

/* Hover Effect */
.btn-register:hover{
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 25px rgba(0,0,0,0.18);
  filter: brightness(1.05);
}


/* ===== Navbar ===== */
/* .main-navbar{
  background: linear-gradient(135deg, var(--primary), #09263c);
  padding: 0;
}

.main-navbar .nav-link{
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 12px;
  transition: 0.3s;
}

.main-navbar .nav-link:hover{
  color: #fff !important;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
}

.main-navbar .nav-link.active{
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
} */



.main-navbar{
  position: relative;   /* ✅ important */
  width: 100%;
  z-index: 999;
  padding: 8px 0;

  /* transparent but visible */
  background: rgba(14, 58, 93, 0.85);
  backdrop-filter: blur(10px);
}

.main-navbar .nav-link{
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.main-navbar .nav-link:hover{
  background: rgba(255,255,255,0.20);
  color: #fff !important;
}

.main-navbar .nav-link.active{
  /* background: rgba(255,255,255,0.28); */
  background: var(--accent);
  color: #fff !important;
}


.main-navbar .dropdown-menu{
  border: none;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  padding: 10px;
}

.main-navbar .dropdown-item{
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.main-navbar .dropdown-item:hover{
  background: #f2f6ff;
  color: #0E3A5D;
}


.dropdown-item.active, .dropdown-item:active {
  /* color: var(--bs-dropdown-link-active-color);
  text-decoration: none; */
  background: rgba(14, 58, 93, 0.85);
}


/* ===== Submenu Base ===== */
.dropdown-submenu{
  position: relative;
}

/* Default open RIGHT */
.dropdown-submenu > .dropdown-menu{
  top: 0;
  left: 100%;
  right: auto;
  margin-left: 0.2rem;
  border-radius: 12px;
  display: none;
}

/* If class added => open LEFT */
.dropdown-submenu.open-left > .dropdown-menu{
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 0.2rem;
}

/* Desktop hover open submenu */
@media (min-width: 992px){
  .dropdown-submenu:hover > .dropdown-menu{
    display: block;
  }
}


/* Desktop only hover dropdown */
@media (min-width: 992px){
  .navbar .dropdown-menu{
    margin-top: 0;
  }

  .navbar .dropdown:hover > .dropdown-menu{
    display: block;
  }

  .navbar .dropdown-submenu:hover > .dropdown-menu{
    display: block;
  }
}

@media (max-width: 991px){
  .dropdown-submenu > .dropdown-menu{
    position: static !important;
    margin: 8px 0 0 14px;
    display: none;
    border-radius: 10px;
  }
}





/* Highlighted menu item */
.portal-login{
  background: var(--accent);
  border-radius: 8px;
  padding-left: 15px !important;
  padding-right: 15px !important;
  color: #fff !important;
}


.sidebar-card{
  background: transparent;
  border-radius: var(--radius);
}

.leader-card{
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  margin-bottom: 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: center;
  transition: 0.25s;
}

.leader-card:hover{
  transform: translateY(-2px);
}

.leader-img{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(0,180,216,0.25);
  object-fit: cover;
}

.leader-card h6{
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--dark);
}

.leader-card small{
  font-size: 12px;
  color: var(--muted);
}


.banner-wrap{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  
}

/* .banner-img{
  height: 430px;
  width: 100%;
  object-fit: cover;
} */

.banner-slider{
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.banner-img{
  height: 420px;
  object-fit: cover;
}

.banner-caption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 18px;
  color: #fff;
  background: linear-gradient(0deg, rgba(14,58,93,0.9), rgba(14,58,93,0.1));
}

/* .banner-caption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #fff;
  background: rgba(0,0,0,0.55);
} */

.banner-caption h4{
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* ===== WHATS NEW BAR ===== */
.whats-new-wrap{
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 4px;
}

/* Left Orange Tag */
.whats-new-left{
  position: relative;
  background: #ff6b35;
  color: #fff;
  font-weight: 800;
  padding: 12px 22px;
  font-size: 14px;
  text-transform: uppercase;
}

/* Arrow Shape */
.whats-new-left::after{
  content: "";
  position: absolute;
  right: -18px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 18px solid #ff6b35;
}

/* Middle text */
.whats-new-middle{
  flex: 1;
  padding: 10px 20px;
  font-weight: 600;
  color: #222;
  font-size: 14px;
}

/* Right Pause */
.whats-new-right{
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #ddd;
}

.news-control{
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}


.news-strip{
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 15px;
}

.news-title{
  background: linear-gradient(135deg, var(--accent), #ff944d);
  color: #fff;
  font-weight: 800;
  padding: 12px 22px;
  font-size: 14px;
}

.news-text{
  padding: 12px 16px;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}




@media (max-width: 576px){
  .topbar-inner{
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-logo{
    height: 30px;
  }

  .btn-register{
    padding: 8px 14px;
    font-size: 13px;
  }
}


/* ===== Portal + Officers Section ===== */
.portal-officers-section{
  padding: 35px 0;
  border-radius: 18px;

  /* Modern gradient background */
  /* background: linear-gradient(135deg, #00B4D8, #0E3A5D);
  background: linear-gradient(135deg, #0b1f2a, #ff6b35); */
  background: linear-gradient(135deg, #0b1f2a, #ff6b35);

}

/* Left portal boxes */
.portal-box{
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: 0.3s ease;
  height: 100%;
}

.portal-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.portal-box-inner{
  padding: 28px;
  text-align: center;
}

.portal-box-icon img{
  width: 65px;
  margin-bottom: 12px;
}

.portal-box-title{
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px;
  color: #ff6b35;
}

.portal-box-text{
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.portal-box-btn{
  display: inline-block;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  background: #0E3A5D;
  color: #fff;
  transition: 0.3s ease;
}

.portal-box-btn:hover{
  background: #ff6b35;
  color: #fff;
}

/* second slim card */
.portal-box-slim .portal-box-inner{
  padding: 25px;
}

.portal-box-inline{
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.nivesh-title{
  color: #ff6b35;
  font-weight: 800;
  margin: 0;
}

.nivesh-sub{
  margin: 0;
  font-weight: 600;
  color: #666;
  font-size: 13px;
}

.portal-logo-right img{
  width: 75px;
}

/* ===== Officers Right Side ===== */
.officers-wrap{
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 18px;
  height: 100%;
}

.officers-heading{
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

/* Officer Cards */
.officer-card{
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  transition: 0.3s ease;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.officer-card:hover{
  transform: translateY(-3px);
  border-left: 5px solid #ff6b35;
}

.officer-img img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0,180,216,0.25);
}

.officer-info h6{
  margin: 0;
  font-weight: 800;
  color: #ff3d2e;
  font-size: 14px;
}

.officer-info p{
  margin: 4px 0 0;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

/* Register/Login small heading */
.portal-sub-heading{
  font-weight: 800;
  color: #000;
  font-size: 14px;
  margin-top: 6px;
  margin-bottom: 6px;
}

/* Carousel Arrow Styling */
.portal-arrow{
  width: 40px;
}

.portal-arrow .carousel-control-prev-icon,
.portal-arrow .carousel-control-next-icon{
  filter: invert(0.4);
  width: 22px;
  height: 22px;
}

/* Optional: make arrows not cover text */
#registrationProcessSlider{
  position: relative;
  padding: 0 30px;
}



/* ===== Our Projects Section ===== */
.our-projects-section{
  padding: 70px 0;
  background: #fff;
}

/* Titles */
.section-mini-title{
  color: #ff6b35;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-main-title{
  font-size: 42px;
  font-weight: 800;
  color: #0B1320;
  line-height: 1.2;
}

/* Tabs */
.project-tabs{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-tab{
  border: none;
  background: transparent;
  font-weight: 700;
  color: #222;
  font-size: 16px;
  padding: 10px 8px;
  position: relative;
  transition: 0.3s;
}

.project-tab::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #22c55e;
  transition: 0.3s;
}

.project-tab.active{
  color: #22c55e;
}

.project-tab.active::after{
  width: 100%;
}

/* Cards */
.project-card{
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
}

.project-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.14);
}

.project-img{
  position: relative;
  overflow: hidden;
}

.project-img img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

/* Overlay Hidden by Default */
.project-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;

  
  background: linear-gradient(135deg, rgba(0,180,216,0.85), rgba(255,107,53,0.85));
}


/* Icons Buttons */
.project-icon-btn{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;
  text-decoration: none;

  transform: scale(0.7);
  transition: 0.3s ease;
}

/* Hover effect */
.project-card:hover .project-overlay{
  opacity: 1;
  visibility: visible;
}

.project-card:hover .project-img img{
  transform: scale(1.08);
}

.project-card:hover .project-icon-btn{
  transform: scale(1);
}

.project-icon-btn:hover{
  background: rgba(255,255,255,0.25);
  transform: scale(1.08);
}

.project-content{
  padding: 22px 18px;
}

.project-category{
  font-weight: 700;
  color: #ff6b35;
  display: inline-block;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(34,197,94,0.4);
}

.project-title{
  font-weight: 800;
  color: #0B1320;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media(max-width: 768px){
  .section-main-title{
    font-size: 28px;
  }

  .project-img img{
    height: 220px;
  }
}


/* ===== Important Websites Section ===== */
.important-websites-section{
  padding: 55px 0;
  background: linear-gradient(135deg, #0E3A5D, #062636);
  /* background: linear-gradient(135deg, #0b1f2a, #ff6b35); */
  position: relative;
  overflow: hidden;
}

/* Soft glow circles background */
.important-websites-section::before{
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0,180,216,0.15);
  top: -120px;
  left: -120px;
  border-radius: 50%;
  filter: blur(20px);
}

.important-websites-section::after{
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,107,53,0.12);
  bottom: -140px;
  right: -140px;
  border-radius: 50%;
  filter: blur(20px);
}

/* Title */
.important-title{
  color: #fff;
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Divider line with diamond */
.important-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.important-divider span{
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.important-divider i{
  width: 12px;
  height: 12px;
  background: #ff6b35;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* Cards */
.imp-site-card{
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 90px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);

  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.imp-site-card img{
  max-height: 55px;
  max-width: 100%;
  object-fit: contain;
}

/* Hover Effect */
.imp-site-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,180,216,0.25);
  border: 2px solid rgba(0,180,216,0.45);
}



/* ✅ Auto Logo Slider */
.logo-slider{
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.logo-track{
  display: flex;
  gap: 30px;
  width: max-content;
  animation: logoScroll 18s linear infinite;
}

/* Auto scroll animation */
@keyframes logoScroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* pause on hover (optional) */
.logo-slider:hover .logo-track{
  animation-play-state: paused;
}



/* ===== Footer ===== */
.site-footer{
  position: relative;
  padding: 60px 0 20px;
  color: rgba(255,255,255,0.85);

  /* background: linear-gradient(135deg, #0E3A5D, #062636, #041b26); */
  /* background: linear-gradient(135deg, #071a24, #0E3A5D, #ff6b35); */
  background: linear-gradient(135deg, #0b1f2a, #ff6b35);
  overflow: hidden;
}

/* footer glow */
.site-footer::before{
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0,180,216,0.14);
  top: -140px;
  left: -140px;
  border-radius: 50%;
  filter: blur(40px);
}

.site-footer::after{
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,107,53,0.12);
  bottom: -140px;
  right: -140px;
  border-radius: 50%;
  filter: blur(40px);
}

.site-footer .container-fluid{
  position: relative;
  z-index: 2;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-title{
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-text{
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
}

/* Address info */
.footer-info{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info li{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.fi-icon{
  /* opacity: 0.9; */
  color: #ff6b35;
  font-size: 16px;
}

/* Social buttons */
.footer-social{
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-btn{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  background: rgba(255,255,255,0.06);
}

.social-btn:hover{
  background: linear-gradient(135deg, #00B4D8, #FF6B35);
  transform: translateY(-3px);
  border-color: transparent;
}

/* Quick links */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-links a:hover{
  color: #00B4D8;
  padding-left: 6px;
}

/* Gallery */
.footer-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-gallery img{
  width: 100%;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s ease;
}

.footer-gallery a:hover img{
  transform: scale(1.06);
  outline: 2px solid rgba(0,180,216,0.45);
}

/* Newsletter */
.footer-newsletter{
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 18px;
}

.footer-newsletter input{
  border: none;
  outline: none;
  padding: 12px 14px;
  width: 100%;
  font-size: 14px;
}

.footer-newsletter button{
  border: none;
  padding: 12px 18px;
  font-weight: 800;
  color: #fff;
  background: #22c55e;
  transition: 0.3s ease;
}

.footer-newsletter button:hover{
  background: #16a34a;
}

/* Bottom */
.footer-bottom{
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.footer-bottom b{
  color: #fff;
}

/* Scroll top button */



.scroll-top{
  position: fixed;  
  right: 25px;
  bottom: 25px;

  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;

  cursor: pointer;
  z-index: 99999;  

  color: #fff;
  font-size: 18px;
  font-weight: 800;

  background: linear-gradient(135deg, #ff6b35, #ff944d);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}


.scroll-top:hover{
  transform: translateY(-4px);
}

/* ===== Policies & Portals Section ===== */
.policies-portals-section{
  padding: 60px 0;
  /* background: linear-gradient(135deg, #f6fff8, #e9fbff); */
}

.section-head{
  margin-bottom: 20px;
}

.section-title{
  font-size: 30px;
  font-weight: 800;
  color: #0B1320;
}

.section-title span{
  color: #ff6b35;
}



/* ===== Portal Items ===== */
.portal-item{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffe6bf;
  border-radius: 14px;
  padding: 14px 15px;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portal-item:hover{
  transform: translateY(-4px);
  background: #ff6b35; /* ✅ hover orange */
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.portal-icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portal-icon img{
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.portal-text{
  font-weight: 800;
  font-size: 14px;
  color: #0B1320;
  flex: 1;
  transition: 0.3s ease;
}

/* ✅ portal text white on hover */
.portal-item:hover .portal-text{
  color: #fff;
}

.portal-arrow{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ff6b35;
  transition: 0.3s ease;
}

/* ✅ arrow styling on hover */
.portal-item:hover .portal-arrow{
  background: #fff;
  color: #ff6b35;
}

/* ===== What's New Card (Exact like official) ===== */
.whatsnew-card{
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  height: 100%;
  position: relative;
}

/* Light background like screenshot */
.whatsnew-body{
  padding: 16px;
  background: #f5f5f5;
}

/* ✅ Green header with special curved left shape */
.whatsnew-header{
  background: #35b44a;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* ✅ exact corner rounding */
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  position: relative;
}

/* ✅ Curved "leaf" style on left like official */
.whatsnew-header::before{
  content: "";
  position: absolute;
  left: -18px;
  top: 0;
  width: 36px;
  height: 100%;
  background: #35b44a;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}

/* Title */
.whatsnew-title{
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}

/* Header action icons */
.whatsnew-actions{
  display: flex;
  gap: 10px;
}

.wn-btn{
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s ease;
  padding: 2px 6px;
}

.wn-btn:hover{
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ✅ Notice Item */
.whatsnew-item{
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 14px 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  transition: 0.25s ease;
  margin-bottom: 14px;
}

.whatsnew-item:hover{
  border-color: rgba(255,107,53,0.6);
  box-shadow: 0 12px 25px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

/* Text */
.whatsnew-text{
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  color: #222;
  max-width: calc(100% - 90px);
}

/* ✅ Date badge with border shape like screenshot */
.whatsnew-date{
  background: #ff6b35;
  color: #fff;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  min-width: 74px;
  text-align: center;
  height: fit-content;
  position: relative;
}

/* ✅ Date badge small corner cut effect */
.whatsnew-date::after{
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #ff6b35;
}

/* Meta line under item (Right aligned) */
.whatsnew-meta{
  margin-top: -10px;
  margin-bottom: 14px;
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  color: #333;
  padding-right: 8px;
}

.wn-file{
  opacity: 0.85;
  font-weight: 600;
}

.whatsnew-list{
  max-height: 300px;     
  overflow: hidden;
  position: relative;
}

.wn-slide-item{
  margin-bottom: 14px; 
}

