/* ======================================
   MODERN INDEX PAGE DESIGN ENHANCEMENT
   ====================================== */

:root {
  --primary-gradient: linear-gradient(135deg, #0a1f44 0%, #1a3a7a 100%);
  --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --light-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }


/* ======================================
   ENHANCED NAVBAR
   ====================================== */

.topbar-1 {
  background: var(m--primary-gradient);
  color: white;
  padding: 12px 0;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

.topbar-1 .welcome-text {
  color: #e0e0e0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-1 .social-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.topbar-1 .social-icons a {
  color: white;
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.topbar-1 .social-icons a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.topbar-2 {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
  border-bottom: 2px solid rgba(10, 31, 68, 0.08);
  padding: 15px 0;
}

.topbar-2 .contact-info {
  color: #0a1f44 !important;
}

.topbar-2 .contact-info li {
  color: #0a1f44 !important;
}

.topbar-2 .contact-info li i {
  color: #667eea;
  margin-right: 8px;
}

.topbar-2 .login-area {
  color: #0a1f44 !important;
}

.topbar-2 .login-area a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-2 .login-area a:hover {
  color: #667eea !important;
}

.navbar-area {
  background: #0a1f44;
  transition: var(--transition-smooth);
}

.navbar-area.sticky {
  background: #0a1f44;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}
.navbar-area.sticky .navbar-nav .nav-link {
  color: #ffffff;
}



.navbar-area .navbar {
  padding: 15px 0;
  background: #0a1f44;
}

.navbar-area .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
  position: relative;
  top: 1px;
  filter: brightness(1.1);
}

.navbar-area .navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: white;
  transition: var(--transition-smooth);
}

.navbar-area .navbar .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: #67d5ff;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-area .navbar .navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
}

.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  background: white;
  animation: slideDown 0.3s ease;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  transition: var(--transition-smooth);
  color: #0a1f44;
  position: relative;
  padding: 12px 20px;
  background: white;
}

.navbar-area .navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background: #f0f4ff;
  color: #0a1f44;
  padding-left: 25px;
}

body{
    background:linear-gradient(180deg,#f5f7fb,#ffffff);
    font-family:'Poppins',sans-serif;
}

/* ======================================
   SECTION BANNER HERO
   ====================================== */

.section-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
  width: 100%;
}

.section-banner .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.section-banner .banner-slider {
  position: relative;
  z-index: 3;
  width: 100%;
}

.section-banner .slide {
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-banner .slide-hero {
  text-align: center;
}

.section-banner .slide-hero .hero-content {
  color: white;
  text-align: center;
}

.section-banner .slide-logo {
  max-width: 100px;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.section-banner .slide h1 {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-banner .slide h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.section-banner .slide p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.section-banner .banner-btn {
  display: inline-block;
  padding: 15px 40px;
  margin: 0 10px;
  background: var(--secondary-gradient);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.section-banner .banner-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  transition: left 0.4s ease;
  z-index: -1;
}

.section-banner .banner-btn:hover::before {
  left: 0;
}

.section-banner .banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
}

.section-banner .split-content {
  color: white;
  z-index: 2;
  padding: 60px;
  text-align: left;
}

.section-banner .split-image {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.section-banner .split-image img {
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-banner .slide.reverse {
  flex-direction: row-reverse;
}

.section-banner .glass-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 60px 50px;
  max-width: 600px;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-banner .glass-box h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

.section-banner .glass-box .contact-info {
  margin: 30px 0;
}

.section-banner .glass-box .contact-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  font-size: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dots button.active {
  background: white;
  width: 32px;
  border-radius: 6px;
}

/* ======================================
   ABOUT SECTION
   ====================================== */

.about-us-area-2 {
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0a1f44;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.section-title p {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

.content-items {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  animation: fadeInUp 0.6s ease;
}

.content-items:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.content-items .image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.content-items .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.content-items .content {
  padding: 40px;
}

.content-items .content span {
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-items .content h2 {
  font-size: 28px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #0a1f44;
}

.content-items .content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.default-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-gradient);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.default-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  transition: left 0.4s ease;
  z-index: -1;
}

.default-btn:hover::before {
  left: 0;
}

.default-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: white;
}

/* ======================================
   FEATURES AREA
   ====================================== */

.features-area-2 {
  background: white;
  position: relative;
  overflow: hidden;
}

.features-area-2::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.features-content-2 {
  position: relative;
  z-index: 2;
}

.sub-title {
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.features-area-2 .content h2 {
  font-size: 40px;
  color: #0a1f44;
  margin-bottom: 40px;
  line-height: 1.3;
}

.item {
  margin-bottom: 40px;
  animation: fadeInLeft 0.6s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.item-content {
  display: flex;
  gap: 20px;
}

.item .icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: var(--light-gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.item .icon img {
  max-width: 40px;
  filter: brightness(1.1);
}

.item h3 {
  font-size: 22px;
  color: #0a1f44;
  margin-bottom: 10px;
  font-weight: 700;
}

.item p {
  color: #666;
  line-height: 1.8;
}

/* ===== MODERN ACADEMIC CARDS ===== */

.academic-item{
  background:white;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
}

/* gradient border effect */

.academic-item::before{
  content:"";
  position:absolute;
  inset:0;
  padding:2px;
  border-radius:20px;
  background:linear-gradient(135deg,#667eea,#764ba2,#f093fb);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:0;
  transition:0.4s;
}

.academic-item:hover::before{
  opacity:1;
}

/* hover animation */

.academic-item:hover{
  transform:translateY(-12px) scale(1.02);
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

/* IMAGE */

.academic-item .image{
  position:relative;
  overflow:hidden;
  height:240px;
}

.academic-item .image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s;
}

/* zoom effect */

.academic-item:hover .image img{
  transform:scale(1.12);
  filter:brightness(0.9);
}

/* NUMBER BADGE */

.academic-item .number{
  position:absolute;
  top:18px;
  right:18px;
  background:linear-gradient(135deg,#667eea,#764ba2);
  color:white;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:800;
  box-shadow:0 8px 25px rgba(102,126,234,0.45);
  backdrop-filter:blur(6px);
}

/* CONTENT */

.academic-item .content{
  padding:25px;
  text-align:center;
}

/* TITLE */

.academic-item h4{
  font-size:19px;
  color:#0a1f44;
  font-weight:700;
  letter-spacing:0.3px;
  transition:0.3s;
}

.academic-item:hover h4{
  color:#667eea;
}

/* glow background effect */

.academic-item::after{
  content:"";
  position:absolute;
  bottom:-120px;
  right:-120px;
  width:200px;
  height:200px;
  background:radial-gradient(circle,#667eea33 0%,transparent 70%);
  transition:0.5s;
}

.academic-item:hover::after{
  transform:scale(1.4);
}
/* ======================================
   NEWS SECTION
   ====================================== */
   /* newly added features of 4 image */
   /* MODERN FEATURE GRID */

/* MODERN FEATURES SECTION */

.features-modern{
padding:100px 0;
background:linear-gradient(135deg,#f6f9ff,#ffffff);
}

.section-header h2{
font-size:42px;
font-weight:800;
color:#0a1f44;
margin-bottom:10px;
}

.section-header p{
color:#666;
margin-bottom:60px;
font-size:16px;
}

/* GRID */

.features-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.feature-box{
background:white;
padding:40px 30px;
border-radius:18px;
text-align:center;
transition:0.4s;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
position:relative;
overflow:hidden;
}

.feature-box:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* ICON */

.feature-icon{
width:70px;
height:70px;
background:linear-gradient(135deg,#667eea,#764ba2);
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:28px;
margin:0 auto 20px auto;
}

/* TEXT */

.feature-box h3{
font-size:20px;
font-weight:700;
color:#0a1f44;
margin-bottom:10px;
}

.feature-box p{
font-size:14px;
color:#666;
line-height:1.7;
}

/* HOVER EFFECT */

.feature-box::before{
content:"";
position:absolute;
top:-50px;
right:-50px;
width:120px;
height:120px;
background:radial-gradient(circle,#667eea33,transparent);
transition:0.4s;
}

.feature-box:hover::before{
transform:scale(1.6);
}

/* MOBILE */

@media(max-width:992px){
.features-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.features-grid{
grid-template-columns:1fr;
}
}

/* CAMPUS SECTION */

.campus-section{
padding:100px 0;
background:#f6f9ff;
}

.section-header h2{
font-size:42px;
font-weight:800;
color:#0a1f44;
margin-bottom:10px;
}

.section-header p{
color:#666;
margin-bottom:60px;
}

/* GRID */

.campus-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}
/* CARD */


.campus-card{
position:relative;
border-radius:18px;
overflow:hidden;
height:350px;
background:#0a1f44;
cursor:pointer;
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/*.campus-card{*/
/*position:relative;*/
/*border-radius:18px;*/
/*overflow:hidden;*/
/*height:420px;*/
/*cursor:pointer;*/
/*box-shadow:0 15px 35px rgba(0,0,0,0.12);*/
/*transition:0.4s;*/
/*}*/

.campus-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:0.6s;
z-index:1;
}

/* ZOOM EFFECT */

.campus-card:hover img{
transform:scale(1.12);
}

/* OVERLAY */

.overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
color:white;
background:linear-gradient(
transparent,
rgba(0,0,0,0.75)
);
z-index:2;
transition:0.4s;
}

.overlay h3{
font-size:22px;
margin-bottom:8px;
}

.overlay p{
font-size:14px;
opacity:0.9;
}

/* HOVER */

.campus-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

/* RESPONSIVE */

@media(max-width:992px){
.campus-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.campus-grid{
grid-template-columns:1fr;
}
}

/* FORCE CAMPUS GRID FIX */

.campus-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1300px;
margin:auto;
}

.campus-card{
height:350px;
position:relative;
border-radius:18px;
overflow:hidden;
}

.campus-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}
/* GRID */

/*.modern-features{*/
/*display:grid;*/
/*grid-template-columns:1fr 1fr;*/
/*gap:25px;*/
/*}*/

/* CARD */

/*.modern-card{*/
/*background:white;*/
/*border-radius:18px;*/
/*padding:25px;*/
/*box-shadow:0 10px 30px rgba(0,0,0,0.06);*/
/*transition:0.35s;*/
/*overflow:hidden;*/
/*}*/

/*.modern-card:hover{*/
/*transform:translateY(-8px);*/
/*box-shadow:0 25px 50px rgba(0,0,0,0.12);*/
/*}*/

/* CARD LAYOUT */

/*.card-content{*/
/*display:flex;*/
/*align-items:center;*/
/*gap:18px;*/
/*}*/

/* ICON */

/*.modern-card .icon{*/
/*width:55px;*/
/*height:55px;*/
/*background:linear-gradient(135deg,#667eea,#764ba2);*/
/*color:white;*/
/*display:flex;*/
/*align-items:center;*/
/*justify-content:center;*/
/*border-radius:12px;*/
/*font-size:22px;*/
/*flex-shrink:0;*/
/*}*/

/* TEXT */

/*.modern-card h3{*/
/*font-size:18px;*/
/*font-weight:700;*/
/*color:#0a1f44;*/
/*margin-bottom:6px;*/
/*}*/

/*.modern-card p{*/
/*font-size:13px;*/
/*color:#666;*/
/*line-height:1.6;*/
/*margin:0;*/
/*}*/

/* IMAGE */

/*.card-image{*/
/*margin-left:auto;*/
/*}*/

/*.card-image img{*/
/*width:70px;*/
/*height:70px;*/
/*object-fit:cover;*/
/*border-radius:12px;*/
/*transition:0.3s;*/
/*}*/

/* IMAGE HOVER */

/*.modern-card:hover img{*/
/*transform:scale(1.08);*/
/*}*/

/* MOBILE */

/*@media(max-width:768px){*/

/*.modern-features{*/
/*grid-template-columns:1fr;*/
/*}*/

/*.card-image img{*/
/*width:60px;*/
/*height:60px;*/
/*}*/

/*}*/
/* end */

.news-area {
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.news-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease;
  margin-bottom: 30px;
}

.news-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.news-item .image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.news-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-item:hover .image img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.news-item .content {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-item .sub-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.news-item .sub-title p {
  margin-bottom: 0;
}

.news-item h2 {
  font-size: 24px;
  color: #0a1f44;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.news-item:hover h2 {
  color: #667eea;
}

.news-item h2 a {
  color: inherit;
  text-decoration: none;
}

.news-item > .content > p {
  color: #666;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-gradient);
  color: white;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition-smooth);
  align-self: fit-content;
  overflow: hidden;
  position: relative;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-2px);
  color: white;
}

.news-content-right {
  margin-top: 0;
}

.content-box {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeInRight 0.6s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.content-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.content-box:hover img {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.content-box .content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.content-box h3 {
  font-size: 20px;
  color: #0a1f44;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.content-box:hover h3 {
  color: #667eea;
}

.content-box h3 a {
  color: inherit;
  text-decoration: none;
}

.content-box p {
  color: #666;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 15px;
  font-size: 14px;
}

.section-btn {
  margin-top: 50px;
}

.section-btn p {
  font-size: 16px;
  margin: 0;
  text-align: center;
}

.section-btn a {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  margin-left: 8px;
}

.section-btn a:hover {
  color: #f5576c;
}

/* newly added */

/* .news-area .row{
  max-width:1100px;
  margin:auto;
}

.news-item{
  height:100%;
}

.news-item .image{
  border-bottom:1px solid #f1f1f1;
}

.news-item .sub-title i{
  color:#667eea;
  font-size:18px;
}

.news-item .sub-title p{
  font-size:14px;
  font-weight:600;
  color:#667eea;
} */
/* ======================================
   ACTIVITIES SECTION
   ====================================== */

.activities-area {
  background: white;
  position: relative;
  overflow: hidden;
}

.activities-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 147, 251, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.activities-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: fadeInUp 0.6s ease;
}

.activities-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}

.activities-card .image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.activities-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.activities-card:hover .image img {
  transform: scale(1.12);
  filter: brightness(0.8);
}

.activities-card .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.3) 0%, rgba(245, 87, 108, 0.3) 100%);
  transition: var(--transition-smooth);
  opacity: 0;
}

.activities-card:hover .image::after {
  opacity: 1;
}

.activities-card .content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.activities-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0a1f44;
  transition: var(--transition-smooth);
}

.activities-card:hover h2 {
  color: #667eea;
}

.activities-card h2 a {
  color: inherit;
  text-decoration: none;
}

.activities-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* ======================================
   EVENTS SECTION
   ====================================== */

.events-area-2 {
  background: white;
  position: relative;
  overflow: hidden;
}

.recent-post,
.upcoming-event {
  position: relative;
  z-index: 2;
}

.recent-post h4,
.upcoming-event h4 {
  font-size: 20px;
  color: #0a1f44;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--secondary-gradient);
  position: relative;
}

.event {
  margin-bottom: 35px;
  animation: fadeInUp 0.6s ease;
}

.event .content {
  display: flex;
  gap: 25px;
}

.event .image {
  flex-shrink: 0;
  width: 200px;
  height: 160px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.event .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.event:hover .image {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.event:hover .image img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

.event .text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event .tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: 12px;
}

.event h2,
.event-dates h3 {
  font-size: 18px;
  color: #0a1f44;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.event:hover h2 {
  color: #667eea;
}

.event h2 a,
.event-dates h3 a {
  color: inherit;
  text-decoration: none;
}

.event span {
  color: #999;
  font-size: 13px;
  margin-bottom: 10px;
}

.event p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.event .link {
  margin-top: auto;
  padding-top: 12px;
}

.event-dates {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f4ff 100%);
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.event-dates:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
  transform: translateX(5px);
}

.event-dates .date {
  flex-shrink: 0;
}

.event-dates .date ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #0a1f44;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  min-width: 75px;
}

.event-dates .date li {
  list-style: none !important;
  padding: 0;
  margin: 0;
  width: 100%;
}

.event-dates .date li.mnt {
  color: white !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  padding: 10px 8px !important;
  background: rgba(0, 0, 0, 0.2) !important;
  display: block !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.event-dates .date li.det {
  color: #0a1f44 !important;
  font-weight: 800 !important;
  font-size: 32px !important;
  padding: 15px 8px !important;
  display: block !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.event-dates .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-dates h3 {
  margin-bottom: 8px;
}

.event-dates p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.event-dates .location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #667eea;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.event-dates .link {
  margin-top: auto;
}

/* ======================================
   SUBSCRIBE SECTION
   ====================================== */

.subscribe-area {
  background: var(--secondary-gradient);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.subscribe-area-2 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.subscribe-area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.subscribe-area .section-title h2,
.subscribe-area .section-title p {
  color: white;
}

.subscribe-area .section-title h2::after {
  background: white;
}

.subscribe-btn {
  position: relative;
  z-index: 2;
}

.subscribe-btn .default-btn {
  display: inline-block;
  background: var(--accent-gradient);
  box-shadow: 0 8px 24px rgba(245, 87, 108, 0.3);
}

/* ======================================
   FOOTER
   ====================================== */

.footer-area {
  background: #0a1f44;
  position: relative;
  overflow: hidden;
  color: white;
}

.footer-area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-widget-info {
  position: relative;
  z-index: 2;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-widget ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.copy-right-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  position: relative;
  z-index: 2;
}

.cpr-left p {
  color: #0a1f44;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.cpr-left p a {
  color: #0a1f44;
  font-weight: 700;
  text-decoration: none;
}

.cpr-left p a:hover {
  color: #1a3a7a;
}

.cpr-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cpr-right ul li {
  list-style: none !important;
}

.cpr-right ul li a {
  color: #0a1f44;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.cpr-right ul li a:hover {
  color: #1a3a7a;
}

/* ======================================
   GO TOP BUTTON
   ====================================== */

.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.go-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.5);
}

.go-top.active {
  opacity: 1;
  visibility: visible;
}

/* ======================================
   PRELOADER
   ====================================== */

.preloader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: var(--transition-smooth);
}

.preloader-container.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary-gradient);
  margin: 0 6px;
  animation: bounce 1.4s infinite;
}

.preloader-dot:nth-child(1) { animation-delay: -0.32s; }
.preloader-dot:nth-child(2) { animation-delay: -0.16s; }
.preloader-dot:nth-child(3) { animation-delay: 0s; }
.preloader-dot:nth-child(4) { animation-delay: 0.16s; }
.preloader-dot:nth-child(5) { animation-delay: 0.32s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media (max-width: 992px) {
  .section-banner .slide h1 {
    font-size: 52px;
  }

  .section-banner .slide h2 {
    font-size: 40px;
  }

  .section-banner .glass-box {
    padding: 40px 30px;
  }

  .features-content-2 {
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .navbar-area .navbar .navbar-nav {
    margin-left: 30px;
  }
}

@media (max-width: 768px) {
  .section-banner .slide {
    min-height: 80vh;
  }

  .section-banner .slide h1 {
    font-size: 40px;
  }

  .section-banner .slide h2 {
    font-size: 28px;
  }

  .section-banner .banner-btn {
    padding: 12px 25px;
    font-size: 14px;
    margin: 8px 5px;
  }

  .section-banner .split-content {
    padding: 30px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .content-items .content {
    padding: 25px;
  }

  .item-content {
    flex-direction: column;
  }

  .item .icon {
    width: 50px;
    height: 50px;
  }

  .event .content {
    flex-direction: column;
  }

  .event .image {
    width: 100%;
    height: 200px;
  }

  .cpr-right ul {
    justify-content: flex-start;
  }

  .navbar-area .navbar .navbar-nav {
    margin-left: 0;
  }

  .pt-25 {
    padding-top: 15px;
  }
}

@media (max-width: 576px) {
  .section-banner .slide {
    min-height: 60vh;
  }

  .section-banner .slide h1 {
    font-size: 32px;
  }

  .section-banner .slide h2 {
    font-size: 22px;
  }

  .section-banner .slide p {
    font-size: 15px;
  }

  .section-banner .glass-box {
    padding: 25px 20px;
    max-width: 90%;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .features-area-2::before {
    width: 300px;
    height: 300px;
  }

  .activities-area::after {
    width: 300px;
    height: 300px;
  }

  .contact-info {
    font-size: 12px;
  }

  .section-btn p,
  .copy-right-area p {
    font-size: 14px;
  }
}

/* ======================================
   UTILITY CLASSES
   ====================================== */

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

.pt-100 {
  padding-top: 100px;
}
