body{
margin:0;
font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
background:#f5f5f5;
}


/* =====================
BANNER
===================== */


/* TOP BANNER */

.banner{
width:100%;
height:76px;
background:white;
overflow:hidden;
}

.banner img{
width:100%;
height:76px;
object-fit:cover;
}




/* =====================
HEADER
===================== */

header{
background:linear-gradient(135deg,#ae02f2,#a94ad9,#370354);
}

.header-container{
max-width:1300px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:5px 10px;
}


/* LOGO */

.logo img{
height:50px;
}


/* NAV MENU */

.nav-menu{
display:flex;
align-items:center;
list-style:none;
margin:0;
padding:0;
}


/* =========================
BUTTON STYLE (UNCHANGED)
========================= */

.box {
  width: 110px;
  transition: .5s linear;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px;
  text-align: center;
  margin: 0 4px;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
}

.box:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  transform: translateX(100%);
}

.box:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  transform: translateX(-100%);
}

.box:hover{
box-shadow:0 5px 15px rgba(0,0,0,.5);
}

.box:hover:before{
border-color:white;
height:100%;
transform:translateX(0);
transition:.3s transform linear,.3s height linear .3s;
}

.box:hover:after{
border-color:white;
height:100%;
transform:translateX(0);
transition:.3s transform linear,.3s height linear .5s;
}

button{
color:white;
text-decoration:none;
cursor:pointer;
border:none;
background:transparent;
font-weight:700;
}


/* =====================
DROPDOWN
===================== */

.dropdown{
position:relative;
}

.dropdown-menu{

position:absolute;
top:100%;
left:0;

background:white;
min-width:200px;

list-style:none;
padding:5px 0;

opacity:0;
visibility:hidden;

transform:translateY(10px);

transition:all .3s ease;

border-radius:8px;
box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/* Smooth open */

.dropdown:hover .dropdown-menu{

opacity:1;
visibility:visible;
transform:translateY(0);

}


/* DROPDOWN LINKS */

.dropdown-menu a{

display:block;
padding:10px 14px;
color:#333;
text-decoration:none;

transition:.2s;

}

.dropdown-menu a:hover{

background:#f5f5f5;
padding-left:18px;

}


/* SUB MENU */

.sub-dropdown{
position:relative;
}

.sub-menu{

position:absolute;
top:0;
left:100%;

background:white;
min-width:200px;

list-style:none;

opacity:0;
visibility:hidden;

transform:translateX(10px);

transition:.3s;

box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.sub-dropdown:hover .sub-menu{

opacity:1;
visibility:visible;
transform:translateX(0);

}


/* =====================
HAMBURGER
===================== */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:white;
}

@media(max-width:900px){

.menu-toggle{
display:block;
}

.nav-menu{
flex-direction:column;
display:none;
background:white;
width:100%;
}

.nav-menu.active{
display:flex;
}

.dropdown-menu,
.sub-menu{
position:static;
opacity:1;
visibility:visible;
transform:none;
box-shadow:none;
}

}
/* =======================
HEADER ABOVE SLIDER
======================= */

.header{
position:relative;
z-index:1000;
}

.dropdown-menu,
.sub-menu{
z-index:1200;
}


/* =======================
SLIDER
======================= */

.slider{

width:100%;

/* ratio for 2560x400 images */

aspect-ratio: 4.27 / 1;

position:relative;

overflow:hidden;

background:black;

}


/* SLIDES */

.slides{

width:100%;
height:100%;

position:relative;

}


/* IMAGE */

.slide{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

opacity:0;

transition:opacity 1s ease;

}


/* ACTIVE */

.slide.active{

opacity:1;

}

/* NAV BUTTONS */

.nav{

position:absolute;

top:50%;

transform:translateY(-50%);

width:50px;
height:50px;

border-radius:50%;

border:none;

display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(45deg,#1034A3,#00BFFF);

color:white;

font-size:24px;

cursor:pointer;

z-index:50;

box-shadow:0 5px 15px rgba(0,0,0,0.4);

transition:0.3s;

}

.prev{
left:20px;
}

.next{
right:20px;
}

.nav:hover{

background:linear-gradient(45deg,#00BFFF,#1034A3);

transform:translateY(-50%) scale(1.15);

}
/* BUTTON POSITIONS */

.prev{
left:20px;
}

.next{
right:20px;
}


/* HOVER EFFECT */

.nav:hover{

background:linear-gradient(45deg,#00BFFF,#1034A3);

transform:translateY(-50%) scale(1.15);

}



/* =============================
MAIN CONTENT BOX
============================= */


.content-wrapper{
padding:50px 6%;
background:#f5f5f5;
}

.content-box{
background:white;
padding:30px;
display:grid;
grid-template-columns:1fr 1.5fr 1fr;
gap:30px;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,.1);
}

.content-column{
display:flex;
flex-direction:column;
}

.section-title{
color:#1c375b;
margin-bottom:15px;
}

/* =============================
VIDEOS
============================= */

.video-frame{
margin-bottom:15px;
border-radius:8px;
overflow:hidden;
box-shadow:0 3px 8px rgba(0,0,0,.15);
}

.video-frame iframe{
width:100%;
height:170px;
border:none;
}

/* =============================
PROFILE
============================= */

.profile p{
line-height:1.7;
margin-bottom:20px;
}

.view-btn{
background:#cd4236;
color:white;
border:none;
padding:10px 22px;
border-radius:8px;
cursor:pointer;
transition:.3s;
}

.view-btn:hover{
background:#a73329;
}

/* =============================
RIGHT COLUMN
============================= */

.right-side{
display:flex;
flex-direction:column;
justify-content:space-between;
height:100%;
}

/* EVENTS + NOTIFICATIONS equal */

.events-box,
.notification-box{
background:#f5f4e7;
padding:15px;
border-radius:8px;
box-shadow:0 3px 8px rgba(0,0,0,.08);
height:50%;
}

/* events */

.event-card{
padding:px 0;
border-bottom:1px solid #e36e6e;
}

/* =============================
AUTO SCROLL NOTIFICATIONS
============================= */

.notification-scroll{
height:150px;
overflow:hidden;
position:relative;
}

.notification-list{
list-style:none;
padding:0;
margin:0;
animation:scrollUp 18s linear infinite;
}

.notification-scroll:hover .notification-list{
animation-play-state:paused;
}

.notification-list li{
padding:8px 0;
border-bottom:1px solid #e36e6e;
}

.notification-list a{
text-decoration:none;
color:#1c375b;
font-weight:500;
transition:.2s;
}

.notification-list a:hover{
color:#cd4236;
padding-left:4px;
}

@keyframes scrollUp{
0%{transform:translateY(0);}
100%{transform:translateY(-50%);}
}

/* =============================
MODAL POPUP
============================= */

.modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
display:none;
justify-content:center;
align-items:center;
z-index:2000;
}

.modal-box{
background:rgb(222, 242, 189);
width:70%;
max-width:900px;
padding:40px;
border-radius:14px;
border:5px solid #cd4236;
box-shadow:0 10px 30px rgba(0,0,0,.3);
animation:modalZoom .35s ease;
position:relative;
}

.modal-box h2{
color:#1c375b;
}

.modal-box p{
line-height:1.8;
}

.close-modal{
position:absolute;
right:20px;
top:20px;
border:none;
background:#cd4236;
color:white;
font-size:18px;
width:35px;
height:35px;
border-radius:50%;
cursor:pointer;
}

@keyframes modalZoom{
from{
transform:scale(.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

/* =============================
RESPONSIVE
============================= */

@media(max-width:900px){

.content-box{
grid-template-columns:1fr;
}

.events-box,
.notification-box{
height:auto;
margin-top:20px;
}

}




/* =========================
MAINTENANCE NOTICE
========================= */

.maintenance-notice{

width:100%;

text-align:center;

padding:10px;

font-size:18px;

font-weight:700;

letter-spacing:1px;

color:white;

background:linear-gradient(45deg,#1034A3,#00BFFF);

animation:blinkGlow 2s infinite;

}


/* Under maintenance */

@keyframes blinkGlow{

0%{
opacity:1;
text-shadow:0 0 5px white;
}

50%{
opacity:0.6;
text-shadow:0 0 20px white;
}

100%{
opacity:1;
text-shadow:0 0 5px white;
}

}

/* WRAPPER */

.quick-links-wrapper{

width:100%;

margin-top:30px;

}


/* MENU GRID */

.menu-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

row-gap:18px;
column-gap:40px;

padding:28px 5%;

background:linear-gradient(135deg,#ae02f2,#a94ad9,#370354);

}


/* MENU LINKS */

.menu-grid a,
.login-menu span{

font-size:14px;

font-weight:600;

color:white;

text-decoration:none;

cursor:pointer;

transition:.25s;

}


/* HOVER */

.menu-grid a:hover,
.login-menu span:hover{

color:#f0d8ff;

letter-spacing:.5px;

}


/* LOGIN MENU */

.login-menu{

position:relative;

color:white;

}


/* DROPDOWN */

.login-dropdown{

position:absolute;

top:22px;

left:0;

background:white;

border-radius:6px;

box-shadow:0 8px 18px rgba(0,0,0,0.25);

opacity:0;

transform:translateY(10px);

pointer-events:none;

transition:.3s;

min-width:160px;

}


.login-dropdown a{

display:block;

padding:10px 16px;

color:#333;

font-size:13px;

text-decoration:none;

}


.login-dropdown a:hover{

background:#f2f2f2;

}


/* SHOW DROPDOWN */

.login-menu:hover .login-dropdown{

opacity:1;

transform:translateY(0);

pointer-events:auto;

}


/* POLICY BAR */

.policy-bar{

width:100%;

display:flex;

justify-content:center;

gap:70px;

padding:10px 5%;

background:#370354;

margin-top:4px;

}


.policy-bar a{

color:white;

text-decoration:none;

font-size:13px;

transition:.3s;

}


.policy-bar a:hover{

color:#f0d8ff;

}