/* =====================================================
   STYLE.CSS — Sazid Arafat Journalist Portfolio
   Design System: Navy #0d224a · Gold #d4a64f · White
   Font: Poppins (Google Fonts)
   Icons: Font Awesome 6.5.1
   ===================================================== */

/* ========================= */
/* CSS CUSTOM PROPERTIES      */
/* ========================= */

:root {
  --color-navy: #0d224a;
  --color-navy-dark: #08245c;
  --color-navy-light: #1a3565;
  --color-gold: #d4a64f;
  --color-gold-dark: #b8893a;
  --color-gold-light: #e8c07a;
  --color-white: #ffffff;
  --color-off-white: #f7f7f5;
  --color-light-gray: #f0f0ed;
  --color-mid-gray: #888;
  --color-text: #1a1a1a;
  --color-text-light: #555;

  --font-base: "Poppins", sans-serif;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);

  --transition: 0.3s ease;
}

/* ========================= */
/* RESET & BASE               */
/* ========================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  overflow-x: hidden;
  background: var(--color-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================= */
/* NAVBAR                     */
/* ========================= */

.navbar, navbar2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 9%;
  background: var(--color-navy);
  border-bottom: 3px solid var(--color-gold);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo h2 {
  color: var(--color-white);
  font-size: 28px;
  letter-spacing: 2px;
}

/* NAV LINKS */

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--color-gold);
}

/* MOBILE MENU BUTTON */

.menu-btn {
  display: none;
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
}

/* ========================= */
/* HERO (HOME PAGE)           */
/* ========================= */

.header {
  width: 100%;
  min-height: 100vh;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  background:
    linear-gradient(rgba(8, 25, 60, 0.7), rgba(8, 25, 60, 0.7)),
    url("./src/image/hero-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-container,
.hero-image-overlay {
  display: none;
}

.hero-content {
  max-width: 600px;
  color: var(--color-white);
  z-index: 2;
}

.hero-content h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 35px;
}

/* ========================= */
/* BUTTONS (GLOBAL)           */
/* ========================= */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid var(--color-gold);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  background: var(--color-gold);
  color: var(--color-navy);
}

/* ========================= */
/* SHARED UTILITY CLASSES     */
/* ========================= */

/* Inner container */
.inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section tags (small label above headings) */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.section-tag.centered {
  display: block;
  text-align: center;
}

/* Section headings */
.section-heading {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.section-heading.centered {
  text-align: center;
}

/* Page label (small text above H1 on inner pages) */
.page-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 14px;
}

/* Decorative badge tags */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: #0d224a;
  color: white;
}

 

/* Publication name + date inline */
.pub-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
}

.pub-date {
  font-size: 12px;
  color: var(--color-mid-gray);
}

/* Read more link */
.read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  transition:
    color var(--transition),
    gap var(--transition);
}

.read-link:hover {
  color: var(--color-gold);
  gap: 10px;
}

/* ========================= */
/* RECENT WORK (HOME)         */
/* ========================= */

.recent-work {
  width: 100%;
  padding: 80px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recent-work iframe {
  width: 100%;
  max-width: 1100px;
  height: 600px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ========================= */
/* FEATURED SECTION (HOME)    */
/* ========================= */

.featured-sections {
  width: 100%;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  background: rgba(13, 34, 74, 0.04);
}

.feature-card {
  background: rgba(255, 255, 255, 0.66);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-card h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
  border-top: 2px solid var(--color-gold);
  margin-bottom: 20px;
}

.feature-card .feature-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.feature-item iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--radius-sm);
}

.feature-content h3 {
  font-size: 17px;
  line-height: 1.4;
  color: #222;
  margin-bottom: 8px;
}

.feature-content h3:hover {
  text-decoration: underline;
  cursor: pointer;
}

.feature-content p {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.feature-content a {
  font-size: 14px;
  color: var(--color-navy);
  font-weight: 600;
}

.tv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.tv-grid iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--radius-sm);
}

.tv-text {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

/* ========================= */
/* CERTIFICATE SECTION (HOME) */
/* ========================= */

.container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
  max-width: 1680px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-md);
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.certifications-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  border-bottom: 2px solid #d0d0d0;
  padding-bottom: 15px;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.profile-image {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-sm);
  background-color: #e0e0e0;
  object-fit: cover;
}

.profile-name {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  text-align: center;
  line-height: 1.4;
}

.profile-description {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
  text-align: justify;
}

.center-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.certificates-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  text-align: center;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.certificate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.49);
  gap: 15px;
  padding: 15px 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 15px;
}

.certificate-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  background-color: #fafafa;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.certificate-image:hover {
  transform: scale(1.5);
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  border-bottom: 2px solid #c1bcbc;
  padding-bottom: 10px;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

 

.about-name {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.about-description {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.about-date {
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: #999;
  text-align: center;
}

/* works tab  */
/* ================= */
.tabs-container{
    width:1400px;
    max-width:100%;
    margin:  0 auto;
    padding: 0 60px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.tabs{
    display:flex;
    flex-wrap:wrap;
    background:var(--color-navy);
   
}

.tab-btn{
    flex:1;
    padding:18px;
    border:none;
    background:transparent;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    position:relative;
     color: var(--color-light-gray);
}

.tab-btn:hover{
    background:#e8edf751;
}

.tab-btn.active{
    color:var(--color-gold);
}

.tab-btn.active::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:3px;
    background:var(--color-gold);
}

.tab-content{
    display:none;
    padding:30px;
    animation:fade .4s ease;
}

.tab-content.active{
    display:block;
}

.tab-content h2{
    margin-bottom:15px;
    color:#222;
}

.tab-content p{
    color:#666;
    line-height:1.8;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:600px){

 
.tabs-container{
  padding: 0 0px;
}
.tabs{
  border-radius: 5px;
  margin: 0 10px !important;
}
.tab-btn{
    border-bottom:1px solid #ddd;
}

.tab-btn.active::after{
    display:none;
}


}


















/* ========================= */
/* SOCIAL ICONS (HOME)        */
/* ========================= */

.social-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.socialIcons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.socialIcons a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: #222;
  font-size: 22px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.socialIcons a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.socialIcons a:nth-child(1) {
  background: #1877f2;
  color: #fff;
}

.socialIcons a:nth-child(2) {
  background: #ff0000;
  color: #fff;
}

.socialIcons a:nth-child(3) {
  background: #0a66c2;
  color: #fff;
}

/* ========================= */
/* PHOTO GALLERY (HOME)       */
/* ========================= */

.photo-gallery {
  width: 100%;
  padding: 100px 8%;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
}

.gallery-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item.small {
  height: 375px;
}

.gallery-item.large {
  height: 780px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========================= */
/* SLIDER (HOME)              */
/* ========================= */

.slider-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 780px;
  height: 500px;
  border-radius: var(--radius-md);
}

.slides {
  position: relative;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  object-fit: contain;
  display: block;
  margin: auto;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-white);
  cursor: pointer;
  font-size: 22px;
  transition: background var(--transition);
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.caption {
  text-align: center;
  margin-top: 15px;
  font-size: 22px;
  color: #222;
}

/* ========================= */
/* FOOTER                     */
/* ========================= */

.footer {
  background: var(--color-navy-dark);
  border-top: 3px solid var(--color-gold);
  margin-top: var(--spacing-xl);
}

.footer-container {
  max-width: 1600px;
  margin: auto;
  padding: 35px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-logo h2 {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.footer-menu li a {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition);
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 16px;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ================================================== */
/*  ABOUT PAGE STYLES                                  */
/* ================================================== */

/* --- About Hero --- */

.about-hero {
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 8% 80px;
  background:
    linear-gradient(rgba(8, 25, 60, 0.82), rgba(8, 25, 60, 0.82)),
    url("./src/image/hero-image.jpg");
  background-size: cover;
  background-position: center top;
  color: var(--color-white);
  position: relative;
}

.about-hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.about-hero-subtitle {
  font-size: 20px;
  color: var(--color-gold-light);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.about-hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-down span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollPulse 1.4s ease-in-out infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleY(0.7);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* --- Bio Section --- */

.bio-section {
  padding: var(--spacing-xl) 8%;
  background: var(--color-white);
}

.bio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

/* Photo frame */
.bio-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bio-photo-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.bio-photo-frame::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: 4px;
  bottom: 4px;
  border: 3px solid var(--color-gold);
  border-radius: var(--radius-md);
  z-index: 1;
  pointer-events: none;
}

.bio-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bio-photo-frame:hover .bio-photo {
  transform: scale(1.04);
}

/* Quick stats strip */
.quick-stats {
  display: flex;
  justify-content: space-around;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  padding: 20px 10px;
  gap: 10px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  line-height: 1.3;
}

/* Bio text */
.bio-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.bio-heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 6px;
}

.bio-text p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Bio social */
.bio-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.bio-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--color-white);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.bio-social-link.fb {
  background: #1877f2;
}

.bio-social-link.yt {
  background: #ff0000;
}

.bio-social-link.li {
  background: #0a66c2;
}

.bio-social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

 

/* =========================
   CAREER TIMELINE
========================= */

.timeline-section {
  position: relative;
  padding: 120px 8%;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #eef2ff 50%,
    #ffffff 100%
  );
  overflow: hidden;
}
 

.timeline {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
}

/* Center Line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  background: 
   
    #1e3a5f ;
  border-radius: 20px;
}

/* Timeline Item */
.tl-item {
  position: relative;
  width: 50%;
  margin-bottom: 10px;
}

.tl-item:nth-child(odd) {
  left: 0;
  padding-right: 25px;
}

.tl-item:nth-child(even) {
  left: 50%;
  padding-left: 25px;
}

/* Timeline Dot */
.tl-dot {
  position: absolute;
  top: 40px;
  width: 22px;
  height: 22px;
  background: #d4af37;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow:
    0 0 0 8px rgba(212, 175, 55, 0.15),
    0 0 20px rgba(212, 175, 55, 0.6);
  z-index: 2;
}

.tl-item:nth-child(odd) .tl-dot {
  right: -11px;
}

.tl-item:nth-child(even) .tl-dot {
  left: -11px;
}

/* Glass Card */
.tl-card {
  position: relative;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 30px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
  transition: all .4s ease;
  cursor: pointer;
}

/* Hover Effect */
.tl-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0,0,0,0.12);
}

/* Year Badge */
.tl-year {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 15px;

  background: 
    #0d224a;
  

  color: white;
  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Role */
.tl-role {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

/* Organization */
.tl-org {
  font-size: 15px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 15px;
}

/* Description */
.tl-desc {
  color: #64748b;
  line-height: 1.8;
  font-size: 15px;
}

/* Accent Border */
.tl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;

  background: linear-gradient(
    135deg,
    rgba(212,175,55,.6),
    rgba(30,58,95,.4)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Dot Animation */
@keyframes pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(212,175,55,.5);
  }
  70% {
    box-shadow:
      0 0 0 15px rgba(212,175,55,0);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(212,175,55,0);
  }
}

.tl-dot {
  animation: pulse 2.5s infinite;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .timeline::before {
    left: 20px;
  }

  .tl-item,
  .tl-item:nth-child(even),
  .tl-item:nth-child(odd) {
    width: 100%;
    left: 0;
    padding-left: 60px;
    padding-right: 0;
  }

  .tl-dot,
  .tl-item:nth-child(even) .tl-dot,
  .tl-item:nth-child(odd) .tl-dot {
    left: 10px;
    right: auto;
  }

  .tl-card {
    padding: 24px;
  }
}

/* --- Education --- */

.education-section {
  padding: var(--spacing-xl) 8%;
  background: var(--color-white);
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.edu-card {
  display: flex;
  gap: 20px;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid transparent;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
    cursor: pointer;
}

.edu-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.edu-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.edu-year {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-gold-dark);
  margin-bottom: 6px;
}

.edu-degree {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.edu-major {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.edu-school {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-mid-gray);
}

/* --- Skills --- */

.skills-section {
  padding: var(--spacing-xl) 8%;
  background: var(--color-navy);
}

.skills-section .section-tag,
.skills-section .section-heading {
  color: var(--color-gold-light);
}

.skills-section .section-heading {
  color: var(--color-white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-cat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background var(--transition),
    transform var(--transition);
}

.skill-cat:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.skill-cat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.skill-cat h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
}

.skill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.skill-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

/* --- Awards --- */

.awards-section {
  padding: var(--spacing-xl) 8%;
  background: var(--color-off-white);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.award-card {
  display: flex;
  gap: 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  border-top: 3px solid var(--color-gold);
  cursor: pointer;
}

.award-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.award-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.award-year {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-gold-dark);
  margin-bottom: 6px;
}

.award-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.award-org {
  font-size: 13px;
  color: var(--color-mid-gray);
  margin-bottom: 10px;
  font-weight: 500;
}

.award-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Publications --- */

.publications-section {
  padding: var(--spacing-xl) 8%;
  background: var(--color-white);
}

.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pub-card {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid transparent;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.pub-card i {
  font-size: 32px;
  color: var(--color-gold);
}

.pub-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
}

.pub-role {
  font-size: 13px;
  color: var(--color-mid-gray);
}

.pub-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* --- About CTA --- */

.about-cta {
  padding: 80px 8%;
  background: var(--color-navy);
  text-align: center;
}

.about-cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.about-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================== */
/*  PORTFOLIO PAGE STYLES                              */
/* ================================================== */

/* --- Portfolio Hero --- */

.portfolio-hero {
  padding: 140px 0px 60px 0;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;

  margin-bottom: 5rem !important;
}

.portfolio-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 50px;
}

.portfolio-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 18px;
  line-height: 1;
}

.portfolio-hero-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Port stats strip */
.port-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.port-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.port-stat:last-child {
  border-right: none;
}

.port-stat-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.port-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
}

/* --- Port Section base --- */

.port-section {
  padding: var(--spacing-sm) 8%;
  background: var(--color-white);
}

.port-section-alt {
  background: var(--color-off-white);
}

/* --- Featured Investigations Grid --- */

.feat-inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.feat-inv-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  height: 555px;
}

.feat-inv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feat-inv-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  overflow: hidden;
  background: #000;
}

.feat-inv-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.feat-inv-body {
  padding: 24px;
}

.feat-inv-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.feat-inv-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.feat-inv-large .feat-inv-title {
  font-size: 18px;
}

.feat-inv-desc {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* --- Articles Grid --- */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-img {
  transform: scale(1.07);
}

.article-tag {
  position: absolute;
  top: 12px;
  left: 12px;
}

/* Placeholder backgrounds when no image */
.art-placeholder-bg {
  background: linear-gradient(135deg, #0d224a 0%, #1a3565 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-placeholder-bg2 {
  background: linear-gradient(135deg, #1a4a1a 0%, #2d6a2d 100%);
}

.art-placeholder-bg3 {
  background: linear-gradient(135deg, #1a1a4a 0%, #2d2d7a 100%);
}

.art-placeholder-icon {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.3);
}

.article-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.article-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.article-excerpt {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

/* --- Interviews --- */

.interviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.interview-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 20px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.interview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.interview-avatar {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-navy);
  border: 2px solid var(--color-gold);
}

.interview-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin: 10px 0 6px;
}

.interview-meta {
  font-size: 12px;
  color: var(--color-mid-gray);
  margin-bottom: 10px;
}

.interview-excerpt {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

/* --- Documentary grid --- */

.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.doc-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.doc-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.doc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.doc-body {
  padding: 24px;
}

.doc-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 10px 0 10px;
  line-height: 1.3;
}

.doc-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.doc-duration {
  font-size: 13px;
  color: var(--color-mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* --- YouTube Video Showcase --- */

.yt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.yt-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.yt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.yt-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.yt-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-body {
  padding: 20px;
}

.yt-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 6px;
}

.yt-date {
  font-size: 12px;
  color: var(--color-mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.yt-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 10px;
}

.yt-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.yt-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: var(--color-white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition:
    background var(--transition),
    transform var(--transition);
}

.yt-watch-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* YouTube Channel CTA */
.yt-channel-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ff0000;
  border-radius: var(--radius-md);
  padding: 32px 36px;
  color: var(--color-white);
}

.yt-channel-cta i {
  font-size: 60px;
  opacity: 0.9;
}

.yt-channel-cta p {
  font-size: 16px;
  margin-bottom: 14px;
  opacity: 0.9;
}

.yt-channel-cta .btn {
  background: var(--color-white);
  color: #cc0000;
  border-color: var(--color-white);
}

.yt-channel-cta .btn:hover {
  background: transparent;
  color: var(--color-white);
}

/* ================================================== */
/*  CONTACT PAGE STYLES                                */
/* ================================================== */

/* --- Contact Hero --- */

.contact-hero {
  padding: 140px 8% 80px;
  background:
    linear-gradient(rgba(8, 25, 60, 0.88), rgba(8, 25, 60, 0.88)),
    url("./src/image/contactImage.jpg");
  background-size: cover;
  background-position: top;
  color: var(--color-white);
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.contact-hero-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Contact Main Layout --- */

.contact-main {
  padding: var(--spacing-xl) 8%;
  background: var(--color-off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Left column info --- */

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Availability card */
.availability-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid #22c55e;
}

.avail-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: #22c55e;
  margin-top: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.avail-status {
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 6px;
}

.avail-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Contact details */
.contact-details {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.contact-info-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gold);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-light-gray);
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-item:hover {
  color: var(--color-gold-dark);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.contact-detail-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-mid-gray);
  margin-bottom: 3px;
}

.contact-detail-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  word-break: break-all;
}

/* Social cards */
.social-cards {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.social-cards-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.social-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-white);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.social-card:hover {
  opacity: 0.9;
  transform: translateX(4px);
}

.social-card i:first-child {
  font-size: 22px;
  width: 28px;
  text-align: center;
}

.social-card-fb {
  background: #1877f2;
}

.social-card-yt {
  background: #ff0000;
}

.social-card-li {
  background: #0a66c2;
}

.social-card-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.social-card-handle {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.social-card-arrow {
  margin-left: auto;
  font-size: 13px;
  opacity: 0.7;
}

/* --- Contact Form --- */

.contact-form-col {
  /* right column */
}

.inquiry-box {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.form-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-subtext {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.required-star {
  color: #e53e3e;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

 
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-off-white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(13, 34, 74, 0.1);
  background: var(--color-white);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Checkbox */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox {
  margin-top: 2px;
  accent-color: var(--color-navy);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox-label {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  background: var(--color-navy);
  border-color: var(--color-navy);
  font-size: 15px;
  padding: 16px;
  cursor: pointer;
}

.form-submit-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy);
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: var(--spacing-xl) 8%;
  background: var(--color-white);
}

.faq-accordion {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Accordion Item */

.faq-item {
  width: 100%;
  background: var(--color-off-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Question Row */

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: background 0.3s ease;
}

.faq-item summary:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Question Icon */

.faq-item summary i {
  color: var(--color-gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* Plus / Minus Icon */

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-gold);
  transition: 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

/* Answer */

.faq-item p {
  margin: 0;
  padding: 0 24px 24px 56px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ========================= */
/* RESPONSIVE — TABLET 992px  */
/* ========================= */

@media (max-width: 992px) {
  /* Nav */
  .nav-links {
    gap: 20px;
  }

  /* Hero (home) */
  .hero-content h1 {
    font-size: 55px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  /* Home sections */
  .recent-work {
    padding: 60px 5%;
  }

  .recent-work iframe {
    height: 500px;
  }

  .featured-sections {
    grid-template-columns: repeat(2, 1fr 1fr);
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery-item.large {
    height: 500px;
  }

  .gallery-item.small {
    height: 300px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* Slider */
  .slider-section {
    margin: 0;
  }

  .slider-wrapper {
    flex-direction: column;
    padding: 0;
  }

  /* About */
  .bio-grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .bio-heading {
    font-size: 30px;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .pub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .edu-grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio */

  .portfolio-hero-content h1 {
    font-size: 22px;
  }

  .port-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-inv-grid {
    grid-template-columns: 1fr;
  }

  .feat-inv-large .feat-inv-title {
    font-size: 20px;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .interviews-grid {
    grid-template-columns: 1fr;
  }

  .yt-grid {
    grid-template-columns: 1fr;
  }

  .doc-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ========================= */
/* RESPONSIVE — MOBILE 768px  */
/* ========================= */

@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }

  /* Show hamburger */
  .menu-btn {
    display: block;
    z-index: 1001;
  }

  /* Mobile nav */
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--color-navy);
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 0;
  }

  .nav-links.show-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 30px 0;
  }

  /* Hero (home) */
  .hero {
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  /* Btn */
  .btn {
    padding: 14px 26px;
  }

  /* Home */
  .recent-work {
    padding: 50px 5%;
  }

  .recent-work iframe {
    height: 350px;
    border-radius: 10px;
  }

  .featured-sections {
    grid-template-columns: 1fr;
    padding: 60px 5%;
  }

  .feature-card h2 {
    font-size: 20px;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-item img {
    width: 100%;
    height: 220px;
  }

  .tv-grid img {
    height: 140px;
  }

  .container {
    grid-template-columns: 1fr 2fr;
  }

  .slide img {
    height: 350px;
  }

  .prev,
  .next {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  /* About */
  .about-hero-content h1 {
    font-size: 44px;
  }

  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    height: 320px;
  }

  .quick-stats {
    flex-direction: row;
  }

  .bio-heading {
    font-size: 26px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .pub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta h2 {
    font-size: 28px;
  }

  /* Portfolio */
  .portfolio-hero {
    padding: 120px 5% 45px 0;
  }

  .portfolio-hero-content h1 {
    font-size: 22px;
  }

  .port-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-stat {
    padding: 20px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .yt-channel-cta {
    flex-direction: column;
    text-align: center;
  }

  .yt-channel-cta i {
    font-size: 44px;
  }
  /* works  */
  .port-stat:nth-child(2) {
    border-right: none;
  }

  /* Contact */
  .contact-hero-content h1 {
    font-size: 44px;
  }

  .contact-info-col {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* Mobile */

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 5%;
  }

  .faq-item summary {
    padding: 18px 10px;
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 20px 20px 52px;
    font-size: 14px;
  }

  .faq-item summary::after {
    right: 10px;
  }
}

/* ========================= */
/* RESPONSIVE — SMALL 480px   */
/* ========================= */

@media (max-width: 480px) {
  .logo h2 {
    font-size: 20px;
  }

  /* Hero (home) */
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h2 {
    font-size: 18px;
    line-height: 1.6;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Home */
  .recent-work {
    padding: 40px 4%;
  }

  .recent-work iframe {
    height: 220px;
    border-radius: 8px;
  }

  .feature-item img {
    height: 180px;
  }

  .tv-grid {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .tv-grid img {
    height: 110px;
  }

  .feature-content h3 {
    font-size: 16px;
  }

  .container {
    grid-template-columns: 1fr;
  }

  .certificates-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo h2 {
    font-size: 32px;
  }

  /* .footer-menu {
    flex-direction: column;
    gap: 14px;
  } */

  /* About */
  .about-hero-content h1 {
    font-size: 36px;
  }

  .section-heading {
    font-size: 26px;
  }

  .bio-heading {
    font-size: 22px;
  }

  .quick-stats {
    flex-direction: column;
    gap: 14px;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .pub-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Portfolio */
  .portfolio-hero-content h1 {
    font-size: 22px;
  }

  .port-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .port-stat-num {
    font-size: 28px;
  }

  .feat-inv-title {
    font-size: 17px;
  }

  .feat-inv-large .feat-inv-title {
    font-size: 19px;
  }

  /* Contact */
  .contact-hero-content h1 {
    font-size: 36px;
  }

  .inquiry-box {
    padding: 22px 16px;
  }

  .form-heading {
    font-size: 22px;
  }

  .faq-item {
    flex-direction: column;
    gap: 10px;
  }
  .inner-container {
    padding: 0 0px;
  }
}

/* ====================================================
   HOME PAGE REDESIGN — NEW SECTION STYLES
   ==================================================== */

/* ─── Shared home helpers ─── */

.home-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.home-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.home-section-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.15;
}

.home-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 2px;
  white-space: nowrap;
  transition:
    color var(--transition),
    gap var(--transition);
}

.home-view-all:hover {
  color: var(--color-gold-dark);
  gap: 12px;
}

/* ─── TICKER BAR ─── */

.ticker-bar {
  background: var(--color-navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 46px;
}

.ticker-label {
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 400;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.ticker-track span:last-child {
  border-right: none;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─── FEATURED VIDEO SECTION ─── */

.home-featured-video {
  padding: 80px 0;
  background: var(--color-white);
}

.featured-video-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: center;
}

.featured-video-player {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 34, 74, 0.18);
}

.video-16-9 {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.video-16-9 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* meta side */
.featured-video-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fv-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: #fef3c7;
  padding: 5px 12px;
  border-radius: 20px;
  width: fit-content;
}

.fv-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
}

.fv-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.75;
}

.fv-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-light);
}

.fv-info li i {
  color: var(--color-navy);
  width: 16px;
  text-align: center;
}

─── BEATS GRID ───

.home-beats {
  padding: 80px 0;
  background: var(--color-off-white);
}

.beats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Beat card wrapper */
.beat-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.beat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Header row inside card */
.beat-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 18px;
  border-bottom: 2px solid var(--color-gold);
  background: var(--color-navy);
}

.beat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.beat-icon-green {
  background: #22c55e;
  color: #fff;
}

.beat-icon-red {
  background: #ef4444;
  color: #fff;
}

.beat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.beat-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
  display: block;
}

/* Article item inside beat card */
.beat-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-light-gray);
}

.beat-item:last-child {
  border-bottom: none;
}

.beat-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  margin-bottom: 12px;
}

.beat-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.beat-item-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.45;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.beat-item-title:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

.beat-item-date {
  font-size: 12px;
  color: var(--color-mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* TV multimedia 2×2 grid within beat card */
.beat-tv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px 20px 0;
}

.beat-tv-grid iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-sm);
  display: block;
}

.beat-tv-caption {
  font-size: 13px;
  color: var(--color-text-light);
  padding: 14px 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.beat-tv-caption i {
  color: var(--color-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================
   STATS STRIP
========================== */

.stats-strip-wrapper {
    background: var(--color-navy);
    padding: 40px 20px;
    margin-top: 60px;
}

.stats-strip {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.stat-item {
    flex: 1;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.port-stat-num {
    font-size:24px;
    font-weight: 700;
    color: var(--color-gold-light);
    line-height: 1;
    margin-bottom: 10px;
}

.port-stat-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

/* ==========================
   TABLET
========================== */
@media (max-width: 992px) {
    .stats-strip {
        gap: 20px;
    }

    .port-stat-label {
        font-size: 0.95rem;
    }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
    .stats-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
}

/* ==========================
   SMALL MOBILE
========================== */
@media (max-width: 480px) {
    .stats-strip-wrapper {
        padding: 30px 15px;
    }

    .stats-strip {
        gap: 25px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .port-stat-num {
        margin-bottom: 8px;
    }
}
 
 

/* ─── HOME GALLERY ─── */

.home-gallery {
  padding: 80px 0;
  background: var(--color-white);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
}

.hg-col-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hg-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
}

.hg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.hg-item:hover img {
  transform: scale(1.06);
  cursor:pointer
}

.hg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 34, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.hg-overlay i {
  font-size: 28px;
  color: var(--color-white);
}

.hg-item:hover .hg-overlay {
  opacity: 1;
}

.hg-item-sm {
  height: 300px;
}

.hg-col-right .hg-item {
  height: 616px;
}

/* ─── HOME SLIDERS ─── */

.home-sliders {
  padding: 80px 0;
  background: var(--color-off-white);
}

.sliders-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.home-slider-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #111;
  box-shadow: var(--shadow-md);
}

.home-slider .slides {
  height: 100%;
}

.home-slider .slide {
  display: none;
  height: 100%;
}

.home-slider .slide.active {
  display: block;
  height: 100%;
}

.home-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-slider-caption {
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.home-slider-caption i {
  color: var(--color-gold);
}

/* ─── PROFILE + CERTIFICATES ─── */

.home-profile-certs {
  padding: 80px 0;
  background: var(--color-white);
}

.hpc-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

/* Profile card */
.hpc-profile-card {
  background: var(--color-navy);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.hpc-photo-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  flex-shrink: 0;
}

.hpc-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--color-navy);
}

.hpc-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.hpc-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}

.hpc-divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

.hpc-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  text-align: center;
}

.hpc-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.hpc-soc-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.hpc-soc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.hpc-fb {
  background: #1877f2;
}

.hpc-yt {
  background: #ff0000;
}

.hpc-li {
  background: #0a66c2;
}

/* Certificates grid */
.hpc-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hpc-cert-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: zoom-in;
  background: #fafafa;
}

.hpc-cert-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hpc-cert-item:hover .hpc-cert-img {
  transform: scale(1.06);
}

.hpc-cert-zoom {
  position: absolute;
  inset: 0;
  background: rgba(13, 34, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.hpc-cert-zoom i {
  font-size: 22px;
  color: var(--color-white);
}

.hpc-cert-item:hover .hpc-cert-zoom {
  opacity: 1;
}

/* =========================
   CERTIFICATE LIGHTBOX
========================= */

.cert-gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: .3s ease;
  z-index: 9999;
}

.cert-gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.cert-gallery-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.cert-gallery-close,
.cert-gallery-prev,
.cert-gallery-next {
  position: absolute;
  border: none;
  cursor: pointer;

  width: 50px;
  height: 50px;

  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;

  font-size: 18px;
}

.cert-gallery-close {
  top: 25px;
  right: 25px;
}

.cert-gallery-prev {
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.cert-gallery-next {
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.cert-gallery-close:hover,
.cert-gallery-prev:hover,
.cert-gallery-next:hover {
  background: rgba(255,255,255,.25);
}

/* Mobile */

@media (max-width: 768px) {

  .cert-gallery-prev,
  .cert-gallery-next {
    width: 42px;
    height: 42px;
  }

  .cert-gallery-image {
    max-width: 95%;
  }
}





















/* ─── HOME CTA STRIP ─── */

.home-cta-strip {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a3565 100%);
  padding: 70px 0;
  border-top: 3px solid var(--color-gold);
}

.hcs-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hcs-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hcs-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.hcs-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* ====================================================
   HOME PAGE REDESIGN — RESPONSIVE
   ==================================================== */

@media (max-width: 1024px) {
  .featured-video-wrap {
    grid-template-columns: 1fr;
  }

  .beats-grid {
    grid-template-columns: 1fr;
  }

  .hpc-layout {
    grid-template-columns: 1fr;
  }

  .hpc-profile-card {
    position: static;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hpc-photo-ring {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .ticker-bar {
    height: 38px;
  }

  .ticker-label {
    padding: 0 14px;
    font-size: 11px;
  }

  .ticker-track span {
    font-size: 12px;
    padding: 0 24px;
  }

  .home-featured-video,
  .home-beats,
  .home-gallery,
  .home-sliders,
  .home-profile-certs {
    padding: 56px 0;
  }

  .home-section-title {
    font-size: 24px;
  }

  .fv-title {
    font-size: 20px;
  }

  .sliders-row {
    grid-template-columns: 1fr;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hg-col-right .hg-item {
    height: 320px;
  }

  .hg-item-sm {
    height: 220px;
  }

  .hss-item {
    padding: 28px 16px;
  }

  .hss-num {
    font-size: 36px;
  }

  .hss-divider {
    height: 40px;
  }

  .hcs-inner {
    flex-direction: column;
    text-align: center;
  }

  .hcs-text h2 {
    font-size: 22px;
  }

  .hcs-actions {
    justify-content: center;
  }

  .hpc-profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hpc-cert-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .home-stats-strip {
    flex-direction: column;
  }

  .hss-divider {
    width: 80px;
    height: 1px;
  }

  .hpc-cert-grid {
    grid-template-columns: 1fr;
  }

  .beat-tv-grid {
    grid-template-columns: 1fr;
  }
}
