

/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Segoe UI',sans-serif;}

:root{
  --primary:#0F2A5F;
  --accent:#E6B800;
  --bg:#F5F7FB;
}

/* BODY */
body{
  background:var(--bg);
}

/* TOP STRIP */
.top-strip{
  background:rgba(15,42,95,0.95);
  backdrop-filter:blur(6px);
  color:#fff;
  display:flex;
  justify-content:space-between;
  padding:6px 40px;
  font-size:13px;
}

.top-left span{
  margin-right:20px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* SOCIAL */
.social-icons a{
  color:#fff;
  margin-left:12px;
  transition:0.3s;
}

.social-icons a:hover{
  color:var(--accent);
  transform:translateY(-2px);
}

/* HEADER */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 50px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.left-logo img{height:120px;}
.right-logo img{height:120px;}

.center-title {
    text-align: left;
    flex: 1;
}

.center-title h1{
  font-size:18px;
  color:var(--primary);
  font-weight:700;
}

.center-title h2{
      font-size:18px;

  color:#555;
}

/* NAVBAR */
.navbar{
  background:linear-gradient(90deg,#0F2A5F,#173E8F);
  position:sticky;
  top:0;
  z-index:999;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 40px;
}

/* MENU */
.nav-menu{
  list-style:none;
  display:flex;
}

.nav-menu li{
  position:relative;
}

.nav-menu li a{
  padding:18px 16px;
  color:#fff;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:6px;
  position:relative;
}

/* UNDERLINE HOVER */
.nav-menu li a::after{
  content:"";
  position:absolute;
  bottom:8px;
  left:15px;
  width:0%;
  height:2px;
  background:var(--accent);
  transition:0.3s;
}

.nav-menu li a:hover::after{
  width:60%;
}

/* MEGA MENU */
.mega-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width:650px;
  background:#fff;
  padding:25px;
  border-radius:8px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.mega-menu ul{
  list-style:none;
  columns:2;
}

.mega-menu li a{
  color:#333;
  padding:8px 0;
  font-size:14px;
}

.mega-menu li a:hover{
  color:var(--primary);
  transform:translateX(4px);
}

.nav-menu li:hover .mega-menu{
  display:block;
}

/* TICKER */
.ticker{
  background:var(--accent);
  color:#000;
  padding:8px;
  font-weight:600;
}

/* HAMBURGER */
.hamburger{
  display:none;
  color:#fff;
  font-size:24px;
}

/* MOBILE */
@media(max-width:900px){

  .hamburger{display:block;}

  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    flex-direction:column;
    background:var(--primary);
    display:none;
  }

  .nav-menu.active{
    display:flex;
  }

  .mega-menu{
    position:static;
    width:100%;
  }
}
/* SLIDER */
.hphc-slider{
  position:relative;
  width:100%;
  aspect-ratio:1920/900;
  max-height:85vh;
  overflow:hidden;
}

/* SLIDES */
.hphc-slides{
  position:relative;
  height:100%;
}

/* SLIDE */
.hphc-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1.2s ease;
}

/* ACTIVE */
.hphc-slide.active{
  opacity:1;
  z-index:1;
}

/* IMAGE */
.hphc-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.08);
  transition:transform 6s ease;
}

.hphc-slide.active img{
  transform:scale(1);
}

/* OVERLAY (DEPTH) */
.hphc-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55), transparent),
    radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.4));
}

/* PROGRESS BAR */
.progress{
  position:absolute;
  top:0;
  left:0;
  height:3px;
  width:0%;
  background:#f10101;
  z-index:10;
  transition:width 5s linear;
}

/* ARROWS (GLASS UI) */
.hphc-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  color:#fff;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  padding:10px 13px;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
  z-index:10;
}

.hphc-arrow:hover{
  background:#E6B800;
  color:#000;
}

.left{left:20px;}
.right{right:20px;}

/* DOTS */
.hphc-dots{
  position:absolute;
  bottom:20px;
  width:100%;
  text-align:center;
  z-index:10;
}

.hphc-dots span{
  display:inline-block;
  width:9px;
  height:9px;
  margin:5px;
  background:#fff;
  border-radius:50%;
  opacity:0.4;
  cursor:pointer;
  transition:0.3s;
}

.hphc-dots span.active{
  opacity:1;
  background:#E6B800;
  transform:scale(1.4);
}

/* MOBILE */
@media(max-width:768px){
  .hphc-slider{
    aspect-ratio:16/9;
  }
}

/* SECTION */
.welcome-section{
  padding:80px 20px;
  background:#ffffff;
}

/* CONTAINER */
.welcome-container{
  max-width:1100px;
  margin:auto;
}

/* TITLE */
.welcome-title{
  text-align:center;
  margin-bottom:40px;
}

.welcome-title h2{
  font-size:28px;
  color:#0F2A5F;
}

.welcome-title span{
  width:70px;
  height:3px;
  background:#E6B800;
  display:block;
  margin:10px auto;
}

/* GRID */
.welcome-grid{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:40px;
  align-items:flex-start;
}

/* IMAGE */
.welcome-image{
  text-align:center;
}

.welcome-image img{
  width:100%;
  border-radius:10px;
  border:1px solid #e5e7eb;
}

.welcome-image h4{
  margin-top:12px;
  font-size:16px;
  color:#0F2A5F;
}

.welcome-image p{
  font-size:13px;
  color:#666;
}

/* CONTENT */
.welcome-content p{
  font-size:15px;
  line-height:1.8;
  color:#333;
  margin-bottom:15px;
  text-align:justify;
}

/* HIGHLIGHT */
.welcome-highlight{
  background:#F5F7FB;
  border-left:4px solid #0F2A5F;
  padding:15px;
  font-size:14px;
  color:#333;
  margin-top:10px;
}

/* MOBILE */
@media(max-width:768px){
  .welcome-grid{
    grid-template-columns:1fr;
  }
}

/* SECTION */
.hphc-notice-section{
  padding:50px 20px;
}

.hphc-notice-container{
  max-width:1100px;
  margin:auto;
}

/* TITLE */
.hphc-notice-title{
  text-align:center;
  margin-bottom:25px;
}

.hphc-notice-title h2{
  font-size:26px;
  color:#0F2A5F;
}

.hphc-notice-title span{
  width:60px;
  height:3px;
  background:#E6B800;
  display:block;
  margin:10px auto;
}

/* CARD */
.hphc-notice-card{
  background:#fff;
  border-radius:12px;
  border:1px solid #e5e7eb;
  overflow:hidden;
}

/* HEADER */
.hphc-notice-header{
  background:#0F2A5F;
  padding:12px 18px;
  color:#fff;
  font-size:15px;
  font-weight:600;
}

/* TABS */
.hphc-tabs{
  display:flex;
  gap:10px;
  padding:12px 15px;
  border-bottom:1px solid #eee;
}

.hphc-tab-btn{
  padding:6px 14px;
  border-radius:6px;
  border:1px solid #ddd;
  background:#fff;
  cursor:pointer;
  font-size:13px;
}

.hphc-tab-btn.active{
  background:#0F2A5F;
  color:#fff;
  border-color:#0F2A5F;
}

/* LIST */
.hphc-notice-list{
  max-height:300px;
  overflow-y:auto;
}

/* ITEM */
.hphc-notice-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 18px;
  border-bottom:1px solid #f0f0f0;
}

.hphc-notice-item:hover{
  background:#fafcff;
}

/* LEFT */
.hphc-notice-left{
  display:flex;
  align-items:center;
  gap:16px;
}

/* DATE */
.hphc-date-box{
  text-align:center;
  min-width:50px;
}

.hphc-date-box h4{
  font-size:15px;
  color:#0F2A5F;
  font-weight:700;
}

.hphc-date-box span{
  font-size:11px;
  color:#888;
}

/* TEXT */
.hphc-notice-text{
  font-size:14px;
  color:#333;
}

/* DOWNLOAD */
.hphc-download-btn{
  font-size:13px;
  color:#0F2A5F;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:4px;
}

.hphc-download-btn:hover{
  text-decoration:underline;
}

/* SCROLL */
.hphc-notice-list::-webkit-scrollbar{
  width:4px;
}
.hphc-notice-list::-webkit-scrollbar-thumb{
  background:#ccc;
}

/* MOBILE */
@media(max-width:768px){
  .hphc-notice-item{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
}
/* DARK SECTION */
.hphc-about-section{
  padding:80px 20px;
  background:#162138;
}

/* CONTAINER */
.hphc-about-container{
  max-width:1100px;
  margin:auto;
}

/* TITLE */
.hphc-about-title{
  text-align:center;
  margin-bottom:50px;
}

.hphc-about-title h2{
  font-size:30px;
  color:#ffffff;
}

.hphc-about-title span{
  width:70px;
  height:3px;
  background:#E6B800;
  display:block;
  margin:12px auto;
}

/* GRID */
.hphc-about-grid{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

/* LEFT TEXT */
.hphc-about-left{
  flex:1.6;
  min-width:300px;
}

.hphc-about-left p{
  font-size:15px;
  line-height:1.9;
  color:#d1d5db;
  margin-bottom:16px;
}

/* BUTTON */
.hphc-about-btn{
  display:inline-block;
  margin-top:15px;
  padding:12px 22px;
  background:#E6B800;
  color:#000;
  text-decoration:none;
  font-weight:500;
  border-radius:4px;
  transition:0.3s;
}

.hphc-about-btn:hover{
  background:#fff;
}

/* RIGHT PANEL */
.hphc-about-panel{
  flex:1;
  min-width:280px;
  background:#ffffff;
  border-radius:10px;
  overflow:hidden;
}

/* HEADER */
.hphc-about-panel-header{
  background:#0F2A5F;
  color:#fff;
  padding:12px 15px;
}

/* LIST */
.hphc-about-panel ul{
  list-style:none;
}

.hphc-about-panel ul li{
  padding:12px 15px;
  border-top:1px solid #eee;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

/* ICON */
.hphc-about-icon{
  color:#E6B800;
  margin-right:8px;
}

/* LABEL */
.hphc-about-label{
  display:flex;
  align-items:center;
  gap:8px;
}

/* VALUE */
.hphc-about-panel span{
  color:#0F2A5F;
  font-weight:500;
}

/* MOBILE */
@media(max-width:768px){
  .hphc-about-grid{
    flex-direction:column;
  }
}
/* SECTION */
.hphc-exp-section{
  padding:80px 20px;
  background:#ffffff;
}

/* CONTAINER */
.hphc-exp-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:40px;
  align-items:center;
}

/* LEFT BOX */
.hphc-exp-left{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:35px;
  text-align:center;
  position:relative;
}

/* ACCENT */
.hphc-exp-left::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:#E6B800;
}

/* NUMBER */
.hphc-exp-left h1{
  font-size:80px;
  color:#0F2A5F;
  margin-bottom:5px;
}

/* LABEL */
.hphc-exp-left p{
  font-size:14px;
  color:#666;
}

/* RIGHT */
.hphc-exp-right{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* TEXT */
.hphc-exp-text{
  font-size:22px;
  line-height:1.6;
  color:#111;
}

/* GRID */
.hphc-exp-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

/* CARD (UPGRADED) */
.hphc-exp-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-left:4px solid #0F2A5F;
  padding:16px 18px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:14px;
  transition:0.25s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.04);
}

.hphc-exp-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  border-left-color:#E6B800;
}

/* ICON */
.hphc-exp-icon{
  font-size:18px;
  color:#0F2A5F;
  background:#EEF2F7;
  padding:10px;
  border-radius:50%;
}

/* TEXT */
.hphc-exp-info h3{
  font-size:20px;
  color:#0F2A5F;
  margin-bottom:2px;
}

.hphc-exp-info p{
  font-size:13px;
  color:#666;
}

/* MOBILE */
@media(max-width:768px){
  .hphc-exp-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hphc-exp-stats{
    grid-template-columns:1fr;
  }
}
/* SECTION */
.hphc-gallery-section{
  padding:100px 20px;
  background:#F5F7FB;
}

/* CONTAINER */
.hphc-gallery-container{
  max-width:1100px;
  margin:auto;
}

/* TITLE */
.hphc-gallery-heading{
  text-align:center;
  margin-bottom:50px;
}

.hphc-gallery-heading h2{
  font-size:30px;
  color:#0F2A5F;
}

.hphc-gallery-heading span{
  width:70px;
  height:3px;
  background:#E6B800;
  display:block;
  margin:12px auto;
}

/* GRID */
.hphc-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.hphc-gallery-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e5e7eb;
  transition:0.3s;
}

/* IMAGE */
.hphc-gallery-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:0.5s ease;
}

/* CATEGORY BADGE */
.hphc-gallery-badge{
  position:absolute;
  top:12px;
  left:12px;
  background:#0F2A5F;
  color:#fff;
  font-size:11px;
  padding:4px 8px;
  border-radius:4px;
}

/* BOTTOM INFO */
.hphc-gallery-info{
  position:absolute;
  bottom:0;
  width:100%;
  padding:12px;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* TEXT */
.hphc-gallery-info h3{
  color:#fff;
  font-size:14px;
}

/* HOVER */
.hphc-gallery-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.hphc-gallery-card:hover img{
  transform:scale(1.08);
}

/* BORDER GLOW */
.hphc-gallery-card:hover{
  border-color:#E6B800;
}

/* MOBILE */
@media(max-width:768px){
  .hphc-gallery-grid{
    grid-template-columns:1fr;
  }
}

/* FOOTER */
.hphc-footer{
  background:linear-gradient(180deg,#0F2A5F,#162138);
  color:#d1d5db;
  padding:70px 20px 0;
  font-family:'Segoe UI',sans-serif;
}

/* CONTAINER */
.hphc-footer-container{
  max-width:1150px;
  margin:auto;
}

/* GRID */
.hphc-footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1.2fr 1.5fr;
  gap:40px;
  padding-bottom:35px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* HEADINGS */
.hphc-footer h3{
  font-size:16px;
  color:#fff;
  margin-bottom:14px;
  position:relative;
  letter-spacing:0.5px;
}

/* GOLD ACCENT */
.hphc-footer h3::after{
  content:"";
  width:35px;
  height:2px;
  background:#E6B800;
  position:absolute;
  bottom:-6px;
  left:0;
}

/* TEXT */
.hphc-footer p{
  font-size:13px;
  line-height:1.7;
  color:#cbd5e1;
}

/* LINKS */
.hphc-footer ul{
  list-style:none;
  margin-top:10px;
}

.hphc-footer ul li{
  margin-bottom:10px;
}

.hphc-footer ul li a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:13px;
  display:inline-block;
  transition:0.25s ease;
}

.hphc-footer ul li a:hover{
  color:#E6B800;
  transform:translateX(4px);
}

/* CONTACT */
.hphc-footer-contact div{
  display:flex;
  gap:10px;
  margin-bottom:12px;
}

.hphc-footer-contact i{
  color:#E6B800;
  font-size:17px;
  margin-top:3px;
  min-width:18px;
}

/* MAP */
.hphc-footer-map iframe{
  width:100%;
  height:160px;
  border:0;
  border-radius:6px;
  filter:grayscale(100%) contrast(90%);
}

/* BOTTOM */
.hphc-footer-bottom{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  font-size:12px;
  color:#9ca3af;
}

/* COPY */
.hphc-footer-copy{
  font-weight:500;
}

/* META BOX */
.hphc-footer-meta{
  display:flex;
  gap:20px;
}

/* META ITEMS */
.hphc-footer-meta span{
  background:rgba(255,255,255,0.05);
  padding:5px 10px;
  border-radius:4px;
}

/* MOBILE */
@media(max-width:768px){
  .hphc-footer-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .hphc-footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:10px;
  }

  .hphc-footer-meta{
    justify-content:center;
    flex-wrap:wrap;
  }
}
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

/* SECTION BG */
.hphc-md-section{
  padding:90px 20px;
  background:#f1f5f9;
}

/* CONTAINER */
.hphc-md-container{
  max-width:1100px;
  margin:auto;
}

/* WRAPPER CARD */
.hphc-md-wrapper{
  background:#ffffff;
  padding:45px;
  border-radius:12px;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

/* GRID */
.hphc-md-grid{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:45px;
  align-items:flex-start;
}

/* IMAGE CARD */
.hphc-md-image-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

/* HOVER */
.hphc-md-image-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

/* IMAGE */
.hphc-md-image img{
  width:100%;
  display:block;
}

/* INFO */
.hphc-md-info{
  padding:14px;
  text-align:center;
}

.hphc-md-info h4{
  font-size:16px;
  color:#0F2A5F;
  margin-bottom:4px;
}

.hphc-md-info p{
  font-size:13px;
  color:#666;
}

/* CONTENT */
.hphc-md-content p{
  font-size:15px;
  line-height:1.8;
  color:#333;
  margin-bottom:16px;
  text-align:justify;
}

/* HIGHLIGHT BOX */
.hphc-md-highlight{
  background:#eef2f7;
  border-left:4px solid #0F2A5F;
  padding:16px;
  font-size:14px;
  margin-top:10px;
  border-radius:6px;
}

/* SIGN */
.hphc-md-sign{
  margin-top:25px;
  font-weight:600;
  color:#0F2A5F;
  line-height:1.6;
}

/* MOBILE */
@media(max-width:768px){
  .hphc-md-grid{
    grid-template-columns:1fr;
  }
}