/* ================================================================
   Kraviona Tech News - Pixel-Perfect Newpress Template Enhancements
   ================================================================ */

/* Global Reset & Typography */
body {
  font-family: 'Roboto', sans-serif;
  color: #777777;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #010f2e;
  font-weight: 700;
}

/* Header Enhancements */
.header-top.second-header {
  background: #002584 !important;
  color: #ffffff !important;
  font-size: 14px;
  line-height: 48px;
  border-bottom: none;
}

.header-top.second-header a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.header-top.second-header a:hover {
  color: #38bdf8;
}

.header-cta .h-btn {
  background-color: #c5015f !important;
  color: #ffffff !important;
  border-radius: 4px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  text-decoration: none;
}

.header-cta .h-btn img {
  height: 14px;
  width: auto;
  margin-right: 6px;
  margin-top: 0;
}

.trending-slider-active span a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 380px;
  vertical-align: middle;
}

/* Main Navigation */
.menu-area {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.second-menu-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
}

.second-menu .main-menu {
  display: flex;
  align-items: center;
}

.second-menu .main-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  white-space: nowrap !important;
  list-style: none;
}

.second-menu .main-menu ul li {
  display: inline-block;
  position: relative;
  margin-left: 28px;
  white-space: nowrap !important;
}

.second-menu .main-menu ul li:first-child {
  margin-left: 0;
}

.second-menu .main-menu ul li a {
  display: block;
  padding: 28px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #010f2e;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.second-menu .main-menu ul li:hover > a {
  color: #c5015f;
}

/* Bullet dot between top menu items */
.second-menu .main-menu > nav > ul > li::before {
  width: 5px;
  height: 5px;
  background: #c5015f;
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.second-menu .main-menu > nav > ul > li:first-child::before {
  display: none;
}

/* Dropdown styling */
.second-menu .main-menu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 210px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  z-index: 999;
  text-align: left;
  border-top: 3px solid #c5015f;
}

.second-menu .main-menu ul li:hover > ul {
  display: flex;
}

.second-menu .main-menu ul li ul li {
  display: block;
  margin: 0;
  width: 100%;
}

.second-menu .main-menu ul li ul li::before {
  display: none !important;
}

.second-menu .main-menu ul li ul li a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
}

.second-menu .main-menu ul li ul li a:hover {
  background: #f8fafc;
  color: #c5015f;
  padding-left: 24px;
}

/* Admin pill badge */
.header-admin-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 1, 95, 0.08);
  color: #c5015f !important;
  border: 1px solid rgba(197, 1, 95, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-right: 18px;
}

.header-admin-pill:hover {
  background: #c5015f;
  color: #ffffff !important;
  border-color: #c5015f;
  box-shadow: 0 4px 12px rgba(197, 1, 95, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-social a {
  display: inline-block;
  color: #010f2e;
  margin-left: 16px;
  font-size: 16px;
  transition: color 0.2s;
}

.header-social a:hover {
  color: #c5015f;
}

@media (max-width: 1250px) {
  .second-menu .main-menu ul li {
    margin-left: 20px;
  }
  .second-menu .main-menu > nav > ul > li::before {
    left: -11px;
  }
  .second-menu .main-menu ul li a {
    font-size: 13.5px;
  }
  .header-admin-pill {
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 10px;
  }
}

/* ================================================================
   STICKY NAVIGATION MENU (ON SCROLL)
   ================================================================ */
.menu-area.sticky-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.09) !important;
  animation: slideStickyDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-area.sticky-menu .second-menu-wrap {
  min-height: 68px !important;
}

.menu-area.sticky-menu .second-menu .main-menu ul li a {
  padding: 22px 0 !important;
  font-size: 14.5px !important;
}

.menu-area.sticky-menu .logo img {
  height: 33px !important;
  transition: height 0.25s ease;
}

@keyframes slideStickyDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Offcanvas Drawer */
.offcanvas-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  background: #010e2e;
  z-index: 10000;
  padding: 36px 28px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.offcanvas-menu.active {
  transform: translateX(0);
}

.offcanvas-overly {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.menu-close {
  display: block;
  text-align: right;
  margin-bottom: 24px;
  cursor: pointer;
}

.menu-close i {
  color: #ffffff;
  font-size: 22px;
}

.menu-close:hover i {
  color: #c5015f;
}

.offcanvas-menu .searchform {
  position: relative;
  margin-bottom: 30px;
}

.offcanvas-menu .searchform input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border-radius: 4px;
  border: 1px solid #1e293b;
  background: #091432;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

.offcanvas-menu .searchform button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #c5015f;
  cursor: pointer;
  font-size: 16px;
}

.offcanvas-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offcanvas-menu ul li {
  padding: 12px 0;
  border-bottom: 1px solid #0f1d44;
}

.offcanvas-menu ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.offcanvas-menu ul li a:hover {
  color: #c5015f;
}

/* ================================================================
   HERO CAROUSEL / SLIDER SECTION
   ================================================================ */
.courses-area {
  padding: 30px 0;
  background: #ffffff;
  position: relative;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
}

.hero-slider-item {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 340px;
}

@media (max-width: 991px) {
  .hero-slider-item {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .hero-slider-item {
    flex: 0 0 100%;
  }
}

.box-slider-post {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.box-slider-post .img-s {
  display: block;
  width: 100%;
  height: 100%;
}

.box-slider-post .img-s img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.box-slider-post:hover .img-s img {
  transform: scale(1.08);
}

.box-slider-post::before {
  position: absolute;
  content: '';
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(4, 8, 24, 0.85) 100%);
  z-index: 1;
  border-radius: 15px;
}

.box-slider-post .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  width: 100%;
}

.box-slider-post .text .post-tags {
  margin-bottom: 12px;
}

.box-slider-post .text .post-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.box-slider-post .text .post-tags li a.c-btn {
  padding: 3px 12px;
  background: #ff9900;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 3px;
  text-transform: uppercase;
}

.box-slider-post .text .post-tags li a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
}

.box-slider-post .text h3 {
  font-size: 24px;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 14px;
}

.box-slider-post .text h3 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.box-slider-post .text h3 a:hover {
  color: #38bdf8;
}

.box-slider-post .text .post-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #cbd5e1;
}

.box-slider-post .text .post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #010f2e;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.hero-nav-arrow:hover {
  background: #c5015f;
  color: #ffffff;
}

.hero-nav-arrow.prev {
  left: 18px;
}

.hero-nav-arrow.next {
  right: 18px;
}

/* ================================================================
   FEATURED POSTS SECTION (3 COLUMNS)
   ================================================================ */
.services-area {
  background: #ffffff;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #010f2e;
  margin-bottom: 0;
}

.section-title a {
  color: #c5015f;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-title a:hover {
  color: #010f2e;
}

.fp-box {
  margin-bottom: 30px;
}

.fp-box .img {
  position: relative;
  height: 240px;
  border-radius: 4px;
  overflow: hidden;
}

.fp-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fp-box:hover .img img {
  transform: scale(1.06);
}

.fp-box .img .cat,
.ts-box .img .cat,
.fv-box .img .cat,
.tps-box .img .cat,
.rp-box .text .cat {
  position: absolute;
  left: 20px;
  top: 20px;
  background: #37b222;
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.fp-box .text {
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 1px 1.732px 40px rgba(0, 0, 0, 0.06);
  margin: -50px 20px 0 20px;
  padding: 24px;
  position: relative;
  z-index: 3;
}

.fp-box .text h5 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 12px;
}

.fp-box .text h5 a,
.ts-box .text h5 a,
.fv-box .text h5 a,
.tps-box .text h5 a,
.rp-box .text h5 a,
.ts-box2 .text h5 a {
  color: #010f2e;
  text-decoration: none;
  transition: color 0.2s;
}

.fp-box .text h5 a:hover,
.tps-box .text h5 a:hover,
.rp-box .text h5 a:hover,
.ts-box2 .text h5 a:hover {
  color: #c5015f;
}

.post-tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.post-tags li {
  font-size: 12px;
  color: #777777;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.post-tags li .icon i {
  color: #c5015f;
}

/* ================================================================
   TOP STORIES SECTION (2 LARGE CARDS + 3 COMPACT ROWS)
   ================================================================ */
.ts-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
  margin-bottom: 30px;
}

.ts-box .img {
  position: relative;
  width: 100%;
  height: 100%;
}

.ts-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ts-box:hover .img img {
  transform: scale(1.06);
}

.ts-box::before {
  position: absolute;
  content: '';
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(1, 14, 46, 0.85) 100%);
  z-index: 1;
}

.ts-box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #ffffff;
}

.ts-box .text h5 a {
  color: #ffffff !important;
  font-size: 19px;
  line-height: 28px;
}

.ts-box .text h5 a:hover {
  color: #38bdf8 !important;
}

.ts-box .text .post-tags li {
  color: #cbd5e1;
}

.ts-box .text .post-tags li .icon i {
  color: #ffffff;
}

/* Compact story card (.ts-box2) */
.ts-box2 {
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 1px 1.732px 30px rgba(0, 0, 0, 0.05);
  padding: 16px;
  position: relative;
  margin-bottom: 24px;
}

.ts-box2 .img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.ts-box2 .text h5 {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 8px;
}

/* ================================================================
   FEATURED VIDEOS SECTION (DARK NAVY)
   ================================================================ */
.fv-post-area {
  background: #010e2e !important;
}

.fv-post-area .section-title h2 {
  color: #ffffff !important;
}

.fv-post-area .section-title a {
  color: #38bdf8 !important;
}

.fv-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  height: 220px;
}

.fv-box.fv-box2 {
  height: 470px;
}

.fv-box .img {
  width: 100%;
  height: 100%;
  position: relative;
}

.fv-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fv-box:hover .img img {
  transform: scale(1.06);
}

.fv-box::before {
  position: absolute;
  content: '';
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(1, 14, 46, 0.88) 100%);
  z-index: 1;
}

.fv-box .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.fv-box .text h5 a {
  color: #ffffff !important;
  font-size: 17px;
  line-height: 24px;
}

.fv-box.fv-box2 .text h5 a {
  font-size: 24px;
  line-height: 32px;
}

.fv-box .text h5 a:hover {
  color: #38bdf8 !important;
}

.fv-box .text .post-tags li {
  color: #94a3b8;
}

.fv-box .text .post-tags li .icon i {
  color: #ffffff;
}

/* Video Play Buttons */
.fv-box .video-i.popup-video {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(197, 1, 95, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.fv-box .video-i.popup-video:hover {
  transform: scale(1.12);
  background: #c5015f;
}

.fv-box .video-i.popup-video img {
  width: 20px;
  height: 20px;
}

.fv-box2 .video-i.popup-video {
  right: auto;
  top: auto;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.9);
}

.fv-box2 .video-i.popup-video img {
  width: 30px;
  height: 30px;
}

.fv-box2:hover .video-i.popup-video {
  transform: translate(-50%, -50%) scale(1.12);
  background: #ffffff;
}

/* ================================================================
   TOP POSTS (2x3 GRID) & SIDEBAR
   ================================================================ */
.tps-box {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 1px 1.732px 30px rgba(0, 0, 0, 0.05);
}

.tps-box .img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tps-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tps-box:hover .img img {
  transform: scale(1.06);
}

.tps-box .text {
  padding: 24px;
}

.tps-box .text h5 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

.tps-box .text p {
  color: #777777;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 16px;
}

/* Sidebar Widgets */
.sidebar-top-post h2 {
  font-size: 24px;
  font-weight: 800;
  color: #010f2e;
  margin-bottom: 24px;
  position: relative;
}

.subscribe {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border: 4px dashed #c5015f;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.subscribe img {
  margin-bottom: 12px;
}

.subscribe h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #010f2e;
}

.subscribe p {
  font-size: 13px;
  color: #777777;
  margin-bottom: 20px;
}

.subscribe .search-form {
  position: relative;
}

.subscribe .search-form input[type="email"],
.subscribe .search-form input[type="search"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
}

.subscribe .search-form input[type="submit"] {
  width: 100%;
  background: #c5015f;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.subscribe .search-form input[type="submit"]:hover {
  background: #010f2e;
}

.widget-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.widget-social a {
  flex: 0 0 calc(50% - 4px);
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  border-radius: 4px;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.widget-social a:hover {
  opacity: 0.9;
}

.widget-social a:nth-child(1) { background: #3b5998; }
.widget-social a:nth-child(2) { background: #c32aa3; }
.widget-social a:nth-child(3) { background: #07acde; }
.widget-social a:nth-child(4) { background: #c8232c; }
.widget-social a:nth-child(5) { background: #0e76a8; }
.widget-social a:nth-child(6) { background: #e52d27; }

.tags-store a {
  font-size: 13px;
  font-weight: 600;
  color: #777777;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 4px 14px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tags-store a:hover {
  color: #c5015f;
  border-color: #c5015f;
  background: #fff;
}

/* ================================================================
   RECENT POSTS SECTION
   ================================================================ */
.rp-box {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 1px 1.732px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .rp-box {
    flex-direction: column;
  }
}

.rp-box .img {
  width: 240px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .rp-box .img {
    width: 100%;
    height: 200px;
  }
}

.rp-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rp-box:hover .img img {
  transform: scale(1.06);
}

.rp-box .text {
  padding: 24px;
  flex: 1;
}

.rp-box .text .cat {
  position: static;
  display: inline-block;
  margin-bottom: 10px;
}

.rp-box .text h5 {
  font-size: 19px;
  line-height: 26px;
  margin-bottom: 8px;
}

.rp-box .text p {
  color: #777777;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 12px;
}

.ad-bnner img {
  width: 100%;
  border-radius: 4px;
}

.most-loved {
  background: #ffffff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 1px 1.732px 30px rgba(0, 0, 0, 0.05);
}

.most-loved img {
  width: 100%;
  border-radius: 4px;
}

.most-loved h4 {
  font-size: 18px;
  line-height: 24px;
  color: #010f2e;
  margin-top: 14px;
  font-weight: 700;
}

/* ================================================================
   EDITOR CHOICE SECTION
   ================================================================ */
.editor-choice-area {
  background: #f3f8fb;
}

.editor-choice-controls {
  display: flex;
  gap: 8px;
}

.editor-arrow-btn {
  width: 40px;
  height: 40px;
  background: #c5015f;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.editor-arrow-btn:hover {
  background: #010f2e;
}

/* ================================================================
   FOOTER SECTION (AUTHENTIC 4 COLUMNS)
   ================================================================ */
.footer-bg {
  background: #010e2e !important;
  color: #94a3b8;
}

.footer-widget h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.footer-widget p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 24px;
}

.footer-widget .f-contact ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.footer-widget .f-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #94a3b8;
}

.footer-widget .f-contact ul li i {
  color: #c5015f;
  font-size: 18px;
  margin-top: 3px;
}

.footer-widget .f-contact ul li a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-widget .f-contact ul li a:hover {
  color: #38bdf8;
}

.footer-link ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link ul li {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}

.footer-link ul li a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link ul li a:hover {
  color: #ffffff;
}

.f-insta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.f-insta ul li a img {
  border-radius: 4px;
  transition: opacity 0.2s;
}

.f-insta ul li a img:hover {
  opacity: 0.8;
}

.copyright-wrap {
  border-top: 1px solid #0f1d44;
  padding: 24px 0;
  background: #00081b;
  color: #94a3b8;
  font-size: 14px;
}

.footer-social a {
  color: #ffffff;
  margin-left: 16px;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #c5015f;
}

/* ================================================================
   BLOG DETAILS & BREADCRUMB ENHANCEMENTS
   ================================================================ */
.breadcrumb-area {
  min-height: 200px;
  padding: 60px 0;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #010e2e 0%, #001e54 50%, #002584 100%) !important;
  background-size: cover;
  overflow: hidden;
}

.breadcrumb-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(197, 1, 95, 0.22) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(2, 132, 199, 0.22) 0%, transparent 50%);
  pointer-events: none;
}

.breadcrumb-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 14px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.breadcrumb-wrap .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-wrap .breadcrumb-item a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb-wrap .breadcrumb-item a:hover {
  color: #ffffff;
}

.breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
  color: #64748b;
  content: "/";
  padding-right: 8px;
  padding-left: 4px;
}

.breadcrumb-wrap .breadcrumb-item.active {
  color: #f43f5e;
  font-weight: 600;
  font-size: 14px;
}

.b-details-p .details__content h2 {
  font-size: 34px;
  line-height: 1.35;
  color: #010f2e;
  font-weight: 800;
  margin-bottom: 18px;
}

.b-details-p .meta-info {
  margin-bottom: 24px;
}

.b-details-p .meta-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.b-details-p .meta-info ul li {
  font-size: 13px;
  color: #c5015f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.b-details-p .meta-info ul li i {
  color: #c5015f;
}

.b-details-p blockquote {
  background: #242d2e;
  border-radius: 10px;
  padding: 40px 35px;
  text-align: center;
  margin: 35px 0;
  border: none;
}

.b-details-p blockquote footer {
  color: #c5015f !important;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.b-details-p blockquote h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}

.details__content-img {
  margin: 35px 0;
  border-radius: 6px;
  overflow: hidden;
}

.details__content-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

.details__content figure {
  margin: 35px 0;
  overflow: hidden;
}

.details__content figure img {
  float: left;
  width: 260px;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 24px;
  margin-bottom: 15px;
}

.details__content figure p {
  color: #777777;
  font-size: 14px;
  line-height: 24px;
}

.avatar__wrap {
  background: #fff5f4;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 45px;
  position: relative;
  width: 100%;
  float: left;
}

.avatar__wrap .avatar-img {
  margin-top: -85px;
  margin-bottom: 18px;
}

.avatar__wrap .avatar-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.avatar__info-social a {
  color: #c5015f;
  margin: 0 8px;
  font-size: 14px;
  transition: opacity 0.2s;
}

.avatar__info-social a:hover {
  opacity: 0.8;
}

.avatar__wrap-content p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Comment single item */
.single__comment {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.single__comment.children {
  margin-left: 70px;
}

.comments-avatar img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-text {
  flex: 1;
}

.comment-text .avatar-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comment-text .avatar-name h6 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #010f2e;
}

.comment-text .avatar-name span {
  font-size: 12px;
  color: #c5015f;
  font-weight: 600;
  margin-left: 12px;
}

.comment-text .avatar-name .comment-reply {
  font-size: 12px;
  font-weight: 700;
  color: #777777;
  border: 1px solid #e2e8f0;
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}

.comment-text .avatar-name .comment-reply:hover {
  background: #c5015f;
  color: #ffffff;
  border-color: #c5015f;
}

.comment-text p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* Comment Form */
.comments-area .comment-form {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 40px;
}

.comment-form .comment-field {
  position: relative;
  margin-bottom: 18px;
}

.comment-form .comment-field i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #c5015f;
  font-size: 14px;
}

.comment-form .comment-field input {
  width: 100%;
  padding: 14px 44px 14px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.comment-form textarea {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  min-height: 140px;
}

.comment-form .form-submit input[type="submit"] {
  background: #c5015f;
  color: #ffffff;
  border: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.comment-form .form-submit input[type="submit"]:hover {
  background: #010f2e;
}

