/* =========================================================
   0) ROOT VARIABLES
========================================================= */
:root{
  --night-blue:#0a1a3f;
  --sky-blue:#4fc3ff;
  --sky-gradient: linear-gradient(180deg, #4fc3ff 0%, #ffffff 100%);
  --services-container: 1200px;
  --card-gap: 25px;
  --card-h: 470px;
  --cards-per-view: 4;
  --btn-size: 26px;
}

/* =========================
   2 GLOBAL FULL-PAGE BACKGROUND
========================= */
html, body { height: 100%; }

body{
  margin: 0;
  position: relative;
  min-height: 100vh;
}

/* ✅ GLOBAL BACKGROUND LAYER (guaranteed visible) */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: url("/assets/img/page_background.webp") center / cover no-repeat;
  z-index: -999;
}

.page-content{
  background: transparent !important;
}

/* =========================================================
   3) TOP ANNOUNCEMENT (MARQUEE)
========================================================= */
.top-announcement{
  width:100%;
  height:40px;
  display:flex;
  align-items:center;
  overflow:hidden;

  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background: rgba(0,129,161,.30);

  position:fixed;
  top:0;
  left:0;
  z-index:9999;

  border:none !important;
  outline:none !important;
  box-shadow:none !important;
}

.marquee{
  white-space:nowrap;
  display:inline-block;
  animation: marquee-scroll 30s linear infinite;
  padding-left:100%;
}

.top-announcement,
.top-announcement *{
  font-family: "Poppins", Arial, sans-serif !important;
}

.marquee span{
  font-size: 16px;
  font-weight: 500 !important; /* ✅ Poppins Medium */
  color: #fff;
  letter-spacing: .5px;
}

@keyframes marquee-scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-100%); }
}


/* =========================================================
   4) HEADER + NAV + ICONS
========================================================= */
.site-header{
  border-bottom:2px solid var(--sky-blue);
  position:relative;
  width:100%;
  height:100px;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-top:40px;
  box-shadow:none !important;
}

.frosted-header{
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background: rgba(0,0,0,.08) !important;
}

/* nav */
.main-nav ul{
  list-style:none;
  display:flex;
  gap:25px;
  margin-right:250px;
}

.main-nav ul li a{
  text-decoration:none;
  font-size:14px;
  color:#fff;
  font-weight:280;
  transition:.3s;
}

/* FORCE header/nav to use Poppins */
.site-header,
.site-header *{
  font-family: "Poppins", Arial, sans-serif;
}
.main-nav ul li a{ font-weight: 500; }
.main-nav ul li a:hover{ color: var(--sky-blue); }

/* logo */
.logo-container img{
  max-height:50px;
  width:auto;
  margin-right:400px;
  margin-top:10px;
}

/* icons */
.icon-controls{
  display:flex;
  gap:25px;
  align-items:center;
}

.icon-btn{
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}
.icon-btn img{
  width:20px;
  height:20px;
  filter: brightness(0) invert(1);
  transition: transform .25s ease;
}
.icon-btn:hover img{ transform: scale(1.25); }

/* =========================================================
   5) FOOTER
========================================================= */
.site-footer{
  width:100%;
  border-top:2px solid var(--sky-blue);
  color:#fff;
  padding:40px 0 20px;

  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  background: rgba(0,0,0,0) !important;
}

.footer-inner{
  max-width:1400px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
}

.footer-col{ flex:1; min-width:220px; }
.footer-col h4{ color:var(--sky-blue); margin-bottom:15px; }

.footer-col ul{ list-style:none; padding:0; }
.footer-col ul li{ margin-bottom:8px; }
.footer-col ul li a{
  color:#fff;
  text-decoration:none;
  transition:.3s;
}
.footer-col ul li a:hover{ color:var(--sky-blue); }

.footer-bottom{
  text-align:center;
  padding:12px 0;
  font-size:.85rem;
  border-top:1px solid rgba(255,255,255,.15);
  margin-top:20px;
}

/* =========================================================
   6) BANNER / HERO SLIDER
========================================================= */
.banner-slider{
  max-width:100%;
  height:600px;
  position:relative;
  overflow:hidden;
  margin-top:20px;
}

.banner-slider .slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition: opacity 1.2s ease;
}
.banner-slider .slide.active{ opacity:1; }

.banner-slider img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* dots */
.slider-dots{
  position:absolute;
  bottom:20px;
  width:100%;
  display:flex;
  justify-content:center;
  gap:10px;
  z-index:10;
}
.slider-dots .dot{
  height:12px;
  width:12px;
  background: rgba(255,255,255,.6);
  border-radius:50%;
  cursor:pointer;
  transition:.3s;
}
.slider-dots .dot.active{
  background:#fff;
  transform:scale(1.3);
}

/* =========================================================
   7) SERVICES SLIDER (FLEX + JS translateX)
========================================================= */
.section-cards{ width:100%; }

.section-cards .container.service-slider-wrap{
  max-width: var(--services-container);
  width:100%;
  margin:0 auto;
  padding: 0 60px; /* space for buttons */
  position:relative;
}

/* viewport */
.section-cards .service-viewport{
  width:100%;
  overflow:hidden;
  border-radius:16px;
}

/* track row */
.section-cards .service-track{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:stretch;
  gap: var(--card-gap);
  padding:10px 0;
  transition: transform .45s ease;
  will-change: transform;
}

/* card sizing */
.section-cards .service-card{
  flex: 0 0 calc((100% - (var(--card-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  max-width: calc((100% - (var(--card-gap) * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  height: var(--card-h);
  display:block;
  text-decoration:none;
  min-width:0;
}

/* card box */
.section-cards .service-card .card-box{
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:12px;
  display:flex;
  flex-direction:column;
}

/* image top */
.section-cards .service-card .card-image{ height:65%; overflow:hidden; }
.section-cards .service-card .card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1);
  filter:brightness(1);
  transition: transform .35s ease, filter .35s ease;
}

/* content bottom */
.section-cards .service-card .card-content{
  height:35%;
  padding:12px;
}

/* hover effect */
.section-cards .card-box:hover .card-image img{
  transform:scale(1.08);
  filter:brightness(1.3);
}

/* slider buttons */
.section-cards .slide-btn{
  width:var(--btn-size);
  height:var(--btn-size);
  border:0;
  padding:0;
  border-radius:50%;
  cursor:pointer;

  background: rgba(90,200,255,.90);
  color:#000;

  display:grid;
  place-items:center;

  font-size:14px;
  font-weight:bold;
  line-height:1;

  position:absolute;
  top:50%;
  transform: translateY(-50%);
  z-index:9999;
}

.section-cards .slide-btn.prev{ left:10px; }
.section-cards .slide-btn.next{ right:10px; }

.section-cards .slide-btn.prev::before{ content:"\276E"; } /* ❮ */
.section-cards .slide-btn.next::before{ content:"\276F"; } /* ❯ */

.section-cards .slide-btn:hover{
  transform: translateY(-50%) scale(1.08);
}

/* =========================================================
   8) VIDEOS SECTION
========================================================= */
.section-videos{ padding:40px 0 60px; }

.section-videos .container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.video-box{
  width:23%;
  text-align:center;
  opacity:0;
  transform: translateY(20px);
  transition: transform .3s ease, box-shadow .3s ease;
}

.video-box video{
  width:100%;
  border-radius:12px;
  outline:none;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.video-box h4{ margin-top:10px; font-size:15px; }
.video-box h4 a{
  text-decoration:none;
  color:#008cffff;
  transition: color .3s ease;
}
.video-box h4 a:hover{ color:#00c3ffff; }

.video-box:hover{ transform: translateY(-8px); }
.video-box:hover video{ box-shadow: 0 10px 26px rgba(0,0,0,.25); }

/* =========================================================
   9) ANIMATIONS
========================================================= */
@keyframes fadeInUp{
  from{ opacity:0; transform:translateY(20px); }
  to{ opacity:1; transform:translateY(0); }
}

.fade-in-up{
  animation-name: fadeInUp;
  animation-duration: .8s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* =========================================================
   10) ABOUT PAGE
========================================================= */
.about-banner{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px 10px;
}
.about-banner .about-img{
  max-width:1200px;
  width:100%;
  height:auto;
  border-radius:10px;
  box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

.cp-screen-shop{
  padding:60px 0;
  background:transparent;
  font-family:"Poppins", Arial, sans-serif;
}

.cp-screen-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  gap:40px;
  align-items:stretch;
  padding:0 20px;
}

.cp-left, .cp-right{ flex:1; }

.cp-logo-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}
.cp-logo-img{ height:90px; width:auto; }

.cp-copy p{
  font-size:15px;
  line-height:1.7;
  color:#fff;
  margin-bottom:14px;
}

.cp-ceo-card{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:0;
}

.cp-ceo-photo img{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
}

.cp-ceo-text h4{
  font-size:16px;
  font-weight:700;
  margin:0 0 4px;
  color:#ffffff;
}

.cp-ceo-text p{
  font-size:13px;
  margin:0;
  color:#a4a4a4;
}

/* FIX: missing semicolon */
.cp-storefront{
  display:block;
  width:100%;
  max-width:100%;
  border-radius:18px;
  object-fit:cover;
}

/* =========================================================
   11) CONTACT PAGE (CONNECT SECTION)
========================================================= */
.contact-banner{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px 20px;
}
.contact-banner .contact-img{
  max-width:1200px;
  width:100%;
  height:auto;
  border-radius:10px;
  box-shadow: 0 5px 20px rgba(0,0,0,.3);
}

.connect-section{
  position:relative;
  padding:60px 20px;
  color:#fff;
  overflow:hidden;
}

.connect-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  align-items:center;
}

.connect-left{
  flex:1 1 380px;
  margin-left:12%;
}

.connect-title{
  font-size:3rem;
  line-height:1.1;
  margin:0 0 16px;
  font-weight:800;
  text-transform:lowercase;
}

.connect-subtitle{
  max-width:420px;
  font-size:.98rem;
  color:#00d5ff;
  margin-bottom:28px;
}

.connect-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:14px;
}

.connect-item a,
.connect-item > div{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:#fff;
  font-size:1rem;
}

.connect-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:12px;
  overflow:hidden;
}

.connect-icon .icon-img{
  width:40px;
  height:40px;
  object-fit:contain;
}

.connect-right{
  flex:1 1 380px;
  display:flex;
  justify-content:center;
  margin-right:10%;
}

.qr-big{
  display:block;
  width:350px;
  max-width:100%;
  border-radius:20px;
}

.qr-label{
  margin-top:16px;
  margin-left:20%;
  font-size:2rem;
  letter-spacing:.25em;
  font-weight:700;
  color:#fff;
}

/* =========================================================
   12) RESPONSIVE
========================================================= */
@media(max-width: 900px){
  .connect-inner{ flex-direction:column; align-items:flex-start; }
  .connect-right{ width:100%; justify-content:center; margin-right:0; }
  .connect-left{ margin-left:0; }
  .connect-title{ font-size:2.4rem; }
}

@media(max-width: 768px){
  .main-nav ul{
    flex-direction:column;
    gap:10px;
    text-align:center;
    margin-right:0;
  }

  .logo-container img{
    max-height:80px;
    margin-right:0;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
    gap:20px;
  }

  .banner-slider{ height:300px; }
}

/* ---------------------------
   Futuristic Frosted Search
---------------------------- */
.icon-controls{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Optional: make icon look premium */
.icon-btn{
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.icon-btn img{ width: 18px; height: 18px; }
.icon-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(90,200,255,0.55);
  background: rgba(90,200,255,0.12);
}
.icon-btn:active{ transform: translateY(0); }
.icon-btn.is-open{
  border-color: rgba(90,200,255,0.75);
  background: rgba(90,200,255,0.16);
}

/* The panel container */
.search-panel{
  position: absolute;
  top: 110%;
  right: 0;
  width: min(360px, 78vw);
  padding: 10px;
  border-radius: 18px;

  /* Frosted glass */
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 99999;
}

/* show */
.search-panel.open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* inner form */
.search-form{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;

  /* extra inner glass */
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.10);
}

/* subtle neon glow layer */
.search-glow{
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.55;
  background: radial-gradient(circle at 20% 30%, rgba(90,200,255,0.35), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(140,90,255,0.25), transparent 55%);
}

.search-form input{
  flex: 1;
  height: 40px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.search-form input::placeholder{
  color: rgba(255,255,255,0.65);
}

.search-go{
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;

  background: rgba(90,200,255,0.90);
  color: #000;
  box-shadow: 0 10px 25px rgba(90,200,255,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.search-go:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(90,200,255,0.26);
}
.search-go:active{ transform: translateY(0); }

/* Mobile tweak */
@media (max-width: 520px){
  .search-panel{ width: min(320px, 86vw); }
}


/* =========================
   HEADER SEARCH (Frosted Blue Slide-Left)
========================= */
.header-search-wrap{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header, .main-nav 
{ overflow: visible; }

/* Panel sits to the LEFT of the icon */
.search-panel{
  position: absolute;
  right: calc(100% + 12px);  /* ✅ left side of the icon */
  top: 50%;
  transform: translateY(-50%) translateX(18px); /* start slightly to the RIGHT (hidden) */
  opacity: 0;
  pointer-events: none;

  width: clamp(220px, 26vw, 360px);
  padding: 10px;
  border-radius: 18px;

  /* frosted blue glass */
  background: rgba(70, 175, 255, 0.14);
  border: 1px solid rgba(120, 210, 255, 0.35);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform 320ms cubic-bezier(.2, .9, .2, 1),
    opacity 220ms ease;
  z-index: 9999;
}

/* glowing accent line */
.search-panel::before{
  content:"";
  position:absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events:none;
  background: linear-gradient(135deg,
    rgba(120, 220, 255, 0.55),
    rgba(60, 120, 255, 0.15),
    rgba(120, 220, 255, 0.35)
  );
  filter: blur(10px);
  opacity: 0.55;
  z-index: -1;
}

/* open state */
.header-search-wrap.is-open .search-panel{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0); /* ✅ slides LEFT into place */
}

/* form layout */
.search-form{
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-form input{
  flex: 1;
  height: 40px;
  border-radius: 14px;
  padding: 0 14px;
  color: #eaf7ff;

  background: rgba(10, 20, 35, 0.35);
  border: 1px solid rgba(120, 210, 255, 0.22);
  outline: none;

  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-form input::placeholder{
  color: rgba(230, 247, 255, 0.6);
}

.search-form input:focus{
  border-color: rgba(120, 220, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(70, 175, 255, 0.18);
}

/* GO button (rounded + futuristic) */
.search-go{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(130, 225, 255, 0.35);
  cursor: pointer;

  color: #071522;
  font-size: 18px;
  line-height: 1;

  background: linear-gradient(135deg,
    rgba(120, 220, 255, 0.95),
    rgba(80, 140, 255, 0.92)
  );
  box-shadow:
    0 10px 22px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: transform 140ms ease, filter 140ms ease;
}

.search-go:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.search-go:active{
  transform: translateY(0);
}

.search-panel{ padding: 5px; border-radius: 12px; }
.search-form input{ height: 28px; border-radius: 10px; font-size: 12px; }
.search-go{ width: 30px; height: 30px; border-radius: 10px; font-size: 15px; }


/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .search-panel{ transition: none; }
  .search-go{ transition: none; }
}


/* =========================================================
   GLOBAL FONT ROLES (automatic)
========================================================= */
h1, h2, h3{
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700; /* bold */
}

h4, h5, h6{
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 500; /* medium */
}

p, blockquote, .quote{
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 400; /* normal */
}



/* wrapper for input + dropdown */
.search-field{
  position: relative;
  flex: 1;
}

/* dropdown panel */
.search-dd{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: none;

  padding: 6px;
  border-radius: 14px;
  background: rgba(70, 175, 255, 0.14);
  border: 1px solid rgba(120, 210, 255, 0.30);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000;
}

.search-dd.is-open{ display: block; }

.search-dd-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  color: rgba(235,250,255,0.92);
  font-size: 13px;
}

.search-dd-item:hover,
.search-dd-item.is-active{
  background: rgba(120, 220, 255, 0.16);
  border: 1px solid rgba(120, 220, 255, 0.18);
}

.search-dd-item small{
  opacity: 0.7;
  font-size: 12px;
}


/* ✅ Footer Quick Links font */
.site-footer .footer-col h4,
.site-footer .footer-col ul,
.site-footer .footer-col ul li,
.site-footer .footer-col ul li a{
  font-family: "Poppins", sans-serif !important;
}


.search-field{ position: relative; flex: 1; }

.search-dd{
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 8px);
  display: none;

  padding: 6px;
  border-radius: 14px;
  background: rgba(70, 175, 255, 0.14);
  border: 1px solid rgba(120, 210, 255, 0.30);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10000;
}

.search-dd.is-open{ display:block; }

.search-dd-item{
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  color: rgba(235,250,255,0.92);
  font-size: 13px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
}

.search-dd-item:hover,
.search-dd-item.is-active{
  background: rgba(120, 220, 255, 0.16);
  border: 1px solid rgba(120, 220, 255, 0.18);
}

.search-dd-item small{
  opacity: .7;
  font-size: 12px;
}


/* ===== COMMENTS SECTION (Index Section 4) ===== */
.cp-comments{ padding: 70px 0; }
.cp-comments-inner{ width: min(1100px, 92%); margin: 0 auto; }

.cp-comments-head{ text-align:center; margin-bottom: 18px; }
.cp-comments-head h2{ color:#fff; margin:0 0 6px; }
.cp-comments-head p{ color: rgba(235,250,255,0.75); margin:0; }

/* Slider */
.cp-cslider{
  position: relative;
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 18px auto 22px;
}

.cp-cviewport{
  overflow:hidden;
  width: 100%;
  border-radius: 18px;
}

.cp-ctrack{
  display:flex;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.cp-cslide{
  flex: 0 0 100%;
  padding: 8px;
}

.cp-ccard{
  border-radius: 18px;
  padding: 18px 18px;

  background: rgba(70, 175, 255, 0.12);
  border: 1px solid rgba(120, 210, 255, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.cp-ctext{
  color: rgba(235,250,255,0.92);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
}

.cp-cname{
  color: rgba(160, 220, 255, 0.95);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

/* arrows */
.cp-cbtn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(120, 210, 255, 0.25);
  background: rgba(0,0,0,0.18);
  cursor:pointer;
  display:grid;
  place-items:center;
}
.cp-cbtn.prev::before{ content:"\276E"; color:#fff; font-weight:700; }
.cp-cbtn.next::before{ content:"\276F"; color:#fff; font-weight:700; }

/* comment form */
.cp-comment-box{
  border-radius: 18px;
  padding: 18px;

  background: rgba(10, 20, 35, 0.25);
  border: 1px solid rgba(120, 210, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cp-comment-box h3{ margin: 0 0 12px; color:#fff; }

.cp-comment-form .cp-row{
  display:flex;
  gap: 10px;
  margin-bottom: 10px;
}
.cp-comment-form input,
.cp-comment-form textarea{
  width:100%;
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(10,20,35,0.35);
  border: 1px solid rgba(120,210,255,0.22);
  color:#eaf7ff;
  outline:none;
  font-family:"Poppins", sans-serif;
}
.cp-comment-form textarea{ min-height: 110px; resize: vertical; }

.cp-comment-form button{
  width: 100%;
  height: 42px;
  margin-top: 10px;
  border-radius: 14px;
  border: 1px solid rgba(130, 225, 255, 0.35);
  cursor: pointer;
  font-weight: 600;
  font-family: "Poppins", sans-serif;

  color: #071522;
  background: linear-gradient(135deg, rgba(120,220,255,0.95), rgba(80,140,255,0.92));
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.cp-comment-msg{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(235,250,255,0.85);
  min-height: 16px;
}

/* mobile */
@media (max-width: 700px){
  .cp-comment-form .cp-row{ flex-direction: column; }
}


/* ===== COMMENTS SLIDER ONLY (INDEX) ===== */
.cp-comments-only{ padding: 50px 0 60px; }
.cp-comments-wrap{
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

/* top row: title + button */
.cp-comments-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.cp-comments-top h2{
  margin:0;
  color:#fff;
  font-family:"Poppins", sans-serif;
  font-weight:700;
}

/* Leave comment button */
.cp-leave-btn{
  height: 40px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(130, 225, 255, 0.35);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .8px;
  font-family: "Poppins", sans-serif;

  color: #071522;
  background: linear-gradient(135deg,
    rgba(120, 220, 255, 0.95),
    rgba(80, 140, 255, 0.92)
  );
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.cp-leave-btn:hover{ filter: brightness(1.05); }
.cp-leave-btn:active{ transform: translateY(1px); }

/* slider */
.cp-cslider{
  position: relative;
  border-radius: 18px;
}

.cp-cviewport{
  overflow:hidden;
  border-radius: 18px;
}

.cp-ctrack{
  display:flex;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.cp-cslide{
  flex: 0 0 100%;
  padding: 8px;
}

.cp-ccard{
  border-radius: 18px;
  padding: 20px;

  background: rgba(70, 175, 255, 0.12);
  border: 1px solid rgba(120, 210, 255, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.cp-ctext{
  color: rgba(235,250,255,0.92);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
}

.cp-cname{
  color: rgba(160, 220, 255, 0.95);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

/* dots */
.cp-cdots{
  display:flex;
  justify-content:center;
  gap:8px;
  padding: 10px 0 0;
}
.cp-cdots button{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,0.35);
}
.cp-cdots button.is-active{
  background: rgba(120, 220, 255, 0.95);
  transform: scale(1.25);
}

/* mobile */
@media (max-width: 700px){
  .cp-comments-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .cp-leave-btn{ width: 100%; }
}


.img-modal{ position:fixed; inset:0; display:none; z-index:99999; }
.img-modal[aria-hidden="false"]{ display:block; }

.img-modal-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.75); }

.img-modal-card{
  position:relative;
  max-width:min(92vw, 1100px);
  max-height:86vh;
  margin: 6vh auto 0;
  border-radius:16px;
  overflow:hidden;
  background:rgba(10,10,10,.85);
  box-shadow:0 20px 80px rgba(0,0,0,.55);
}

.img-modal-card img{
  width:100%;
  height:86vh;
  object-fit:contain;
  display:block;
}

.img-modal-close{
  position:absolute;
  top:10px; right:10px;
  width:40px; height:40px;
  border:0; border-radius:12px;
  cursor:pointer;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:18px;
}


/* =========================
   HEADER BASE
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10000;
}

.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-container img{
  height: 44px;
  width: auto;
  display: block;
}

/* Right icons */
.icon-controls{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Desktop nav */
.main-nav{
  margin-left: 14px;
}
.main-nav ul{
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}
.main-nav a{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

/* Mobile menu button (hidden on desktop) */
.nav-toggle{
  display: none;
  font-size: 20px;
  line-height: 1;
  padding: 8px 10px;
}

/* Search panel positioning */
.header-search-wrap{
  position: relative;
}
.search-panel{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  max-width: 78vw;
  z-index: 10001;
}

/* =========================
   TABLET & MOBILE
========================= */
@media (max-width: 900px){
  .nav-toggle{ display: inline-flex; }

  /* nav becomes dropdown panel */
  .main-nav{
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    margin: 0;
    display: none;
    border-radius: 14px;
    padding: 10px;
  }
  .main-nav[data-open="true"]{ display: block; }

  .main-nav ul{
    flex-direction: column;
    gap: 8px;
  }
  .main-nav a{
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
  }

  /* Keep logo left, icons right */
  .header-inner{
    position: relative;
  }
}

/* smaller phones */
@media (max-width: 420px){
  .logo-container img{ height: 38px; }
  .search-panel{ min-width: 240px; }
}
