
.news-section{
  position: relative;
}

/* ==========================================
   PREMIUM NEWS CARD - CINEMATIC SYSTEM
   ========================================== */

.news-block-one .inner-box{
  position: relative;
  display: block;
  overflow: visible; /* allow 3D icon to overflow */
  background: #FFFFFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  transition: all 500ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Card Hover: Lift Effect */
.news-block-one .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(16, 28, 56, 0.18);
}

/* --- IMAGE BOX --- */
.news-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: #101c38;
}

.news-block-one .inner-box .image-box img{
  width: 100%;
  display: block;
  transition: all 600ms ease;
  /* Dark navy tint on the image by default */
  filter: brightness(0.65) saturate(0.85);
}

/* Cinematic Overlay (dark-to-bright) */
.news-block-one .inner-box .image-box .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 50, 0.55) 0%,
    rgba(10, 20, 50, 0.25) 60%,
    rgba(10, 20, 50, 0.05) 100%
  );
  transition: opacity 500ms ease;
  pointer-events: none;
  z-index: 1;
}

/* On Hover: Image brightens, overlay fades */
.news-block-one .inner-box:hover .image-box img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.1);
}

.news-block-one .inner-box:hover .image-box .img-overlay {
  opacity: 0;
}

/* --- GLASS BADGE LABEL --- */
.news-block-one .image-box .news-glass-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  /* Glassmorphism */
  background: rgba(220, 30, 30, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-transform: uppercase;
}

.news-glass-badge.badge-blue {
  background: rgba(20, 80, 200, 0.55);
}

.news-glass-badge.badge-green {
  background: rgba(200, 80, 10, 0.60);
}

/* --- 3D FLOATING ICON --- */
.news-block-one .image-box .news-3d-icon {
  position: absolute;
  bottom: -22px;
  right: 20px;
  z-index: 20;
  font-size: 44px;
  line-height: 1;
  /* Float animation */
  animation: newsIconFloat 3.2s ease-in-out infinite;
  transform-origin: center bottom;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  cursor: pointer;
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  user-select: none;
}

/* On hover: 3D pop-out + tilt */
.news-block-one .inner-box:hover .news-3d-icon {
  transform: scale(1.5) rotate(-8deg) translateY(-10px);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.4));
  animation-play-state: paused;
}

/* Staggered float delays */
.news-3d-icon.delay-2 { animation-delay: 0.6s; }
.news-3d-icon.delay-3 { animation-delay: 1.2s; }

@keyframes newsIconFloat {
  0%   { transform: translateY(0px) rotate(0deg); }
  50%  { transform: translateY(-12px) rotate(4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* --- LOWER CONTENT --- */
.news-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 38px 36px 30px 36px;
}

.news-block-one .inner-box .lower-content .post-info{
  position: relative;
  margin-bottom: 15px;
}

.news-block-one .inner-box .lower-content .post-info li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 40px;
  padding-left: 37px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child{
  margin: 0px;
}

.news-block-one .inner-box .lower-content .post-info li i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: var(--main-color);
}

.news-block-one .inner-box .lower-content .post-info li a{
  color: var(--text-color);
}

.news-block-one .inner-box .lower-content .post-info li a:hover{
  color: var(--main-color);
}

.news-block-one .inner-box .lower-content .post-info li:before{
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.1);
  width: 1px;
  height: 20px;
  top: 4px;
  right: -21px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child:before{
  display: none;
}

.news-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.news-block-one .inner-box .lower-content h3 a{
  display: inline-block;
  color: var(--main-color);
}

.news-block-one .inner-box .lower-content h3 a:hover{
  color: var(--secondary-color);
}

.news-block-one .inner-box .lower-content p{
  display: block;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-block-one .inner-box .lower-content .link-btn a{
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 9999px;
  background: linear-gradient(to right, #101c38, #295396, #101c38);
  background-size: 200% auto;
  background-position: left center;
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.4s ease;
  text-decoration: none;
}

.news-block-one .inner-box .lower-content .link-btn a:hover{
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(41, 83, 150, 0.4);
}

.news-block-one .inner-box .lower-content .link-btn a span {
  display: inline-block;
  transition: all 300ms ease;
  padding-right: 0;
}

.news-block-one .inner-box .lower-content .link-btn a span::before {
  display: none;
  content: none;
}

.news-block-one .inner-box .lower-content .link-btn a i {
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
  font-size: 14px;
}

.news-block-one .inner-box .lower-content .link-btn a:hover i {
  transform: translateX(4px);
}

/* Pattern Layer */
.news-section .pattern-layer .pattern-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 865px;
  height: 725px;
  background-repeat: no-repeat;
}

.news-section .pattern-layer .pattern-2{
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 952px;
  height: 792px;
  background-repeat: no-repeat;
}



/** news-style-two **/

.news-style-two{
  position: relative;
}

.news-style-two .owl-carousel .owl-stage-outer{
  overflow: visible;
}

.news-style-two .owl-carousel {
  max-width: 906px;
  margin: 0 auto;
}

.news-block-two{
  position: relative;
  max-width: 906px;
}

.news-block-two .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.news-block-two .inner-box .image-box{
  position: relative;
  float: left;
  width: 50%;
  overflow: hidden;
}

.news-block-two .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.news-block-two .inner-box .content-box{
  position: relative;
  float: right;
  width: 50%;
  border: 1px solid var(--secondary-color);
  border-radius: 0px 10px 10px 0px;
  padding: 34px 36px;
  transition: all 500ms ease;
}

.news-block-two .inner-box:hover .content-box{
  border-color: var(--main-color);
}

.news-block-two .inner-box .content-box .post-info{
  position: relative;
  margin-bottom: 15px;
}

.news-block-two .inner-box .content-box .post-info li{
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 40px;
  padding-left: 37px;
}

.news-block-two .inner-box .content-box .post-info li:last-child{
  margin: 0px;
}

.news-block-two .inner-box .content-box .post-info li i{
  position: absolute;
  left: 0px;
  top: 3px;
  font-size: 20px;
  color: #5E789C;
}

.news-block-two .inner-box .content-box .post-info li a{
  color: var(--text-color);
}

.news-block-two .inner-box .content-box .post-info li a:hover{
  color: var(--main-color);
}

.news-block-two .inner-box .content-box .post-info li:before{
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, 0.1);
  width: 1px;
  height: 20px;
  top: 4px;
  right: -21px;
}

.news-block-two .inner-box .content-box .post-info li:last-child:before{
  display: none;
}

.news-block-two .inner-box .content-box h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.news-block-two .inner-box .content-box h3 a{
  display: inline-block;
  color: var(--main-color);
}

.news-block-two .inner-box .content-box h3 a:hover{
  color: var(--secondary-color);
}

.news-block-two .inner-box .content-box p{
  display: block;
  margin-bottom: 16px;
}

.news-block-two .inner-box .content-box .link-btn a{
  color: var(--secondary-color);
}

.news-block-two .inner-box .content-box .link-btn a:hover{
  color: var(--main-color);
}

.news-style-two .owl-nav{
  position: relative;
  display: block;
  text-align: center;
  margin-top: 50px;
}

.news-style-two .owl-nav .owl-prev{
  margin-right: 10px;
}




















