/*=====================================
GOOGLE FONT
=====================================*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/*=====================================
ROOT VARIABLES
=====================================*/

:root {
  --primary: #2196f3;
  --primary-dark: #0d6efd;

  --dark: #06111f;
  --dark-light: #0b1b2d;

  --white: #ffffff;
  --text: #d6dbe3;

  --border: rgba(255, 255, 255, 0.12);

  --radius: 10px;

  --transition: 0.4s;
}

/*=====================================
RESET
=====================================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Poppins", sans-serif;
  background: #06111f;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*=====================================
HEADER
=====================================*/

.header {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  transition: 0.4s;
}

.header.sticky {
  position: fixed;

  background: rgba(6, 17, 31, 0.92);

  backdrop-filter: blur(18px);

  padding: 0px 0;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.navbar {
  padding: 10px 0;
  border-bottom: solid 1px #fff;
}

.logo img {
  height: 70px;
}

.navbar-nav {
  gap: 28px;
}

.nav-link {
  color: #fff;

  font-size: 14px;

  font-weight: 300;

  position: relative;

  transition: 0.4s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;

  height: 2px;

  background: #fff;

  transition: 0.35s;
}

.bi-x-lg {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Join Button */

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;

  border-radius: 4px;

  background: linear-gradient(to bottom, #0f64a9 0%, #1e89df 100%);

  border: 1px solid transparent;

  color: var(--white);

  font-size: 15px;
  font-weight: 600;

  transition: all 0.4s ease;
}

.join-btn:hover {
  background: linear-gradient(to bottom, #0f64a9 0%, #1e89df 100%);

  color: var(--white);

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.3);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #fff;
}

/*=====================================
HERO
=====================================*/

.hero-section {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(rgba(5, 15, 28, 0.436), rgba(5, 15, 28, 0.455)),
    url("../image/hero.png");

  background-size: cover !important;

  background-position: top;
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  width: 100%;
  min-height: 100vh;
}

.hero-section .carousel-item {
  position: relative;
  background: transparent;
}

.hero-section .carousel-item > .col-lg-7 {
  margin-left: auto;
  margin-right: auto;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 28, 0.35);
}

/* Dark Overlay */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(6, 17, 31, 0.92) 0%,
    rgba(6, 17, 31, 0.75) 35%,
    rgba(6, 17, 31, 0.35) 100%
  );
}

.hero-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  z-index: 2;
  width: 100%;
}

.hero-lines span {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-lines span::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(transparent, #ffffff58, transparent);
  animation: lineMove 6s linear infinite;
}

.hero-lines span:nth-child(2)::before {
  animation-delay: 1s;
}

.hero-lines span:nth-child(3)::before {
  animation-delay: 2s;
}

.hero-lines span:nth-child(4)::before {
  animation-delay: 3s;
}

.hero-lines span:nth-child(5)::before {
  animation-delay: 4s;
}

.hero-lines span:nth-child(6)::before {
  animation-delay: 5s;
}

.hero-lines span:nth-child(7)::before {
  animation-delay: 6s;
}

.hero-lines span:nth-child(8)::before {
  animation-delay: 7s;
}

@keyframes lineMove {
  0% {
    top: -120px;
  }

  100% {
    top: 110%;
  }
}

/* Blue Light */

.hero-section::before {
  content: "";

  position: absolute;

  right: -180px;
  top: 50%;

  transform: translateY(-50%);

  width: 600px;

  height: 600px;

  border-radius: 50%;

  background: rgba(33, 150, 243, 0.12);

  filter: blur(130px);
}

/* Bottom Fade */

.hero-shadow {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  height: 180px;

  background: linear-gradient(transparent, #06111fc3);
}

.about-section {
  position: relative;

  height: 74vh !important;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: linear-gradient(rgba(5, 15, 28, 0.72), rgba(5, 15, 28, 0.508));

  background-size: cover !important;
  background-attachment: fixed;
  background-position: center;

  background-repeat: no-repeat;
}

/* Blue Glow */
.about-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 140, 255, 0.35) 0%,
    rgba(0, 140, 255, 0.15) 35%,
    transparent 70%
  );
  filter: blur(80px);
  animation: glowMove 10s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Animated Light Scan */
.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(0, 180, 255, 0.18),
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: skewX(-25deg);
  animation: scanLight 7s linear infinite;
  pointer-events: none;
}

@keyframes glowMove {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(250px, 80px) scale(1.2);
  }
}

@keyframes scanLight {
  0% {
    left: -40%;
  }

  100% {
    left: 140%;
  }
}

.about-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 100px 0px 0px 0px !important;
}

.about-content p {
  margin-top: 26px;
}

/*=========================================
    HERO CONTENT
=========================================*/

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 180px 0 80px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: pulseDot 1.5s infinite;
}

@keyframes blinkDot {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 5px var(--primary);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.5);
    box-shadow:
      0 0 20px var(--primary),
      0 0 35px var(--primary);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 5px var(--primary);
  }
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  max-width: 620px;

  color: var(--text);

  font-size: 18px;

  line-height: 28px;

  margin-bottom: 45px;
}

/*=========================================
    HERO BUTTONS
=========================================*/
.hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button */

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 38px;

  border-radius: 4px;

  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);

  color: #fff;
  font-weight: 600;

  transition: all 0.4s ease;
}

.btn-primary-custom:hover {
  background: linear-gradient(to bottom, #03204d 0%, #0f64a9 100%);

  color: #fff;

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.3);
}

/* Outline Button */

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 38px;

  border-radius: 4px;

  border: 1px solid #fff;

  background: transparent;

  color: #fff;

  transition: all 0.4s ease;
}

.btn-outline-custom:hover {
  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);

  border-color: transparent;

  color: #fff;

  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(33, 150, 243, 0.4);
}

/*=========================================
    HERO TEXT ANIMATION
=========================================*/

.hero-content > * {
  animation: fadeUp 0.8s ease forwards;
}

.hero-content h1 {
  animation-delay: 0.2s;
}

.hero-content p {
  animation-delay: 0.4s;
}

.hero-btns {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*=========================================
    BACKGROUND ZOOM
=========================================*/

.hero-section {
  animation: heroZoom 4s linear infinite alternate;
}

@keyframes heroZoom {
  from {
    background-size: 100%;
  }

  to {
    background-size: 110%;
  }
}

.about-section {
  animation: heroZoom 4s linear infinite alternate;
}

@keyframes heroZoom {
  from {
    background-size: 100%;
  }

  to {
    background-size: 110%;
  }
}

/*=========================================
    BUTTON RIPPLE
=========================================*/

.btn-primary-custom,
.btn-outline-custom {
  position: relative;

  overflow: hidden;
}

.btn-primary-custom::before,
.btn-outline-custom::before {
  content: "";

  position: absolute;

  width: 0;

  height: 100%;

  left: -20px;

  top: 0;

  transform: skewX(-25deg);

  background: rgba(255, 255, 255, 0.12);

  transition: 0.5s;
}

.btn-primary-custom:hover::before,
.btn-outline-custom:hover::before {
  width: 140%;
}

/*====================================================
        WHAT WE COVER
====================================================*/

.coverage-section {
  padding: clamp(70px, 8vw, 100px) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/*==============================
SECTION TAG
==============================*/

.coverage-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.coverage-section .section-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
  }
}

/*==============================
TITLE
==============================*/

.coverage-section .section-title {
  font-size: clamp(32px, 3vw, 48px);

  font-weight: 600;

  line-height: 1.2;

  color: #08152f;

  margin: 18px 0 20px;
}

/*==============================
TEXT
==============================*/

.coverage-section .section-text {
  font-size: clamp(15px, 1vw, 18px);

  line-height: 1.8;

  color: #666;

  padding-left: 35px;

  max-width: 650px;
}

/*==============================
CARD
==============================*/

.cover-card {
  position: relative;

  height: 100%;

  display: flex;

  flex-direction: column;

  padding: 25px 0 20px 28px;

  border-left: 2px solid var(--primary);

  transition: 0.35s ease;
}

.cover-card:hover {
  transform: translateY(-10px);
}

.cover-card::before {
  content: "";

  position: absolute;

  left: -2px;

  top: 0;

  width: 2px;

  height: 0;

  background: #08152f;

  transition: 0.45s;
}

.cover-card:hover::before {
  height: 100%;
}

/*==============================
ICON
==============================*/

.icon-box {
  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(to bottom, #0f64a9, #03204d);

  color: #fff;

  border-radius: 8px;

  margin-bottom: 22px;

  transition: 0.35s;
}

.icon-box i {
  font-size: 24px;
}

.cover-card:hover .icon-box {
  transform: rotate(-8deg) scale(1.05);

  background: #08152f;
}

/*==============================
NUMBER
==============================*/

.card-number {
  display: block;

  margin-bottom: 12px;

  font-size: 16px;

  font-weight: 500;

  color: #555;
}

.card-number strong {
  color: var(--primary);
}

/*==============================
TITLE
==============================*/

.cover-card h3 {
  font-size: clamp(22px, 1.7vw, 30px);

  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 15px;

  color: #08152f;

  transition: 0.3s;
}

.cover-card:hover h3 {
  color: var(--primary);
}

/*==============================
TEXT
==============================*/

.cover-card p {
  font-size: clamp(15px, 1vw, 17px);

  line-height: 1.8;

  color: #666;

  margin: 0;

  flex: 1;
}
/*====================================================
                BOTTOM INFO BAR
====================================================*/

.coverage-bottom {
  margin-top: clamp(50px, 6vw, 70px);
  background: #07152d;
}

.info-box {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  height: 100%;

  padding: clamp(22px, 2vw, 32px);

  color: #fff;

  transition: 0.35s;

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.info-box:last-child {
  border-right: none;
}

.info-box:hover {
  background: var(--primary);
}

.info-box i {
  width: 60px;

  height: 60px;

  min-width: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #fff;

  color: var(--primary);

  font-size: 24px;

  transition: 0.45s;
}

.info-box:hover i {
  background: #08152f;

  color: #fff;

  transform: rotate(360deg);
}

.info-box h5 {
  font-size: clamp(20px, 1.5vw, 28px);

  font-weight: 600;

  line-height: 1.3;

  margin-bottom: 6px;
}

.info-box p {
  margin: 0;

  color: #d8d8d8;

  font-size: clamp(14px, 0.9vw, 16px);

  line-height: 1.7;
}

/*====================================================
                1400px
====================================================*/

@media (max-width: 1400px) {
  .coverage-section {
    padding: 90px 0;
  }

  .cover-card {
    padding-left: 24px;
  }
}

/*====================================================
                1200px (MacBook)
====================================================*/

@media (max-width: 1200px) {
  .coverage-section {
    padding: 85px 0;
  }

  .cover-card {
    padding-left: 22px;
  }

  .icon-box {
    width: 56px;

    height: 56px;
  }

  .icon-box i {
    font-size: 22px;
  }

  .info-box {
    padding: 24px;

    gap: 15px;
  }

  .info-box i {
    width: 55px;

    height: 55px;

    min-width: 55px;

    font-size: 22px;
  }
}

/*====================================================
                Tablet
====================================================*/

@media (max-width: 991px) {
  .coverage-section {
    padding: 80px 0;
  }

  .coverage-section .section-text {
    padding-left: 0;

    margin-top: 20px;
  }

  .cover-card {
    margin-bottom: 35px;
  }

  .coverage-bottom {
    margin-top: 45px;
  }

  .info-box {
    border-right: none;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .info-box:last-child {
    border-bottom: none;
  }
}

/*====================================================
                Mobile
====================================================*/

@media (max-width: 767px) {
  .coverage-section {
    padding: 60px 0;
  }

  .coverage-section .section-title {
    font-size: 30px;
  }

  .cover-card {
    padding-left: 18px;
  }

  .icon-box {
    width: 52px;

    height: 52px;

    margin-bottom: 18px;
  }

  .icon-box i {
    font-size: 20px;
  }

  .cover-card h3 {
    font-size: 22px;
  }

  .info-box {
    padding: 20px;

    gap: 15px;
  }

  .info-box i {
    width: 48px;

    height: 48px;

    min-width: 48px;

    font-size: 18px;
  }

  .info-box h5 {
    font-size: 18px;
  }

  .info-box p {
    font-size: 14px;
  }
}

/*====================================================
                Small Mobile
====================================================*/

@media (max-width: 575px) {
  .coverage-section {
    padding: 50px 0;
  }
  .hero-content h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 28px;
  }

  .coverage-section .section-title {
    font-size: 26px;
  }

  .cover-card {
    padding-left: 16px;
  }

  .info-box {
    flex-direction: column;

    text-align: center;

    align-items: center;

    padding: 20px 16px;
  }

  .info-box i {
    margin-bottom: 10px;
  }
}
/*=========================================
        RECENT COVERAGE
=========================================*/

.recent-coverage {
  padding: 10px 0 50px 0;
  background: var(--white);
  position: relative;
}
/*====================================================
                    BLOG CARD
====================================================*/

.blog-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  height: 100%;

  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/*====================================================
                    IMAGE
====================================================*/

.blog-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  opacity: 0;
  transition: 0.4s;
}

.blog-card:hover .blog-img::after {
  opacity: 1;
}

/*====================================================
                CATEGORY
====================================================*/

.blog-category {
  position: absolute;
  top: 240px;
  left: 18px;

  background: linear-gradient(to bottom, #0f64a9, #03204d);

  color: #fff;

  padding: 8px 16px;

  font-size: 13px;

  font-weight: 600;

  border-radius: 4px;

  z-index: 5;

  transition: 0.3s;
}

.blog-card:hover .blog-category {
  background: linear-gradient(to bottom, #03204d, #0f64a9);
}

/*====================================================
                    CONTENT
====================================================*/

.blog-content {
  padding: 24px;

  flex: 1;

  display: flex;

  flex-direction: column;
}

.blog-content h4 {
  font-size: clamp(20px, 1.6vw, 25px);

  font-weight: 700;

  color: #08152f;

  line-height: 1.35;

  margin-bottom: 15px;

  transition: 0.3s;
}

.blog-card:hover .blog-content h4 {
  color: var(--primary);
}

.blog-content p {
  font-size: clamp(15px, 1vw, 17px);

  line-height: 1.8;

  color: #666;

  margin-bottom: 25px;

  flex: 1;
}

/*====================================================
                    META
====================================================*/

.blog-meta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  border-top: 1px solid #ececec;

  padding-top: 18px;

  gap: 15px;

  flex-wrap: wrap;

  margin-top: auto;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 15px;
  white-space: nowrap;
  text-transform: capitalize !important;
}

.blog-meta i {
  color: var(--primary);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  border-radius: 50%;

  transition: 0.4s;
}

.blog-card:hover .blog-meta i {
  color: #08152f;
}

/*====================================================
                    BUTTON
====================================================*/

.recent-coverage .btn-primary-custom {
  padding: 14px 30px;

  font-size: 15px;
}

/*====================================================
                1400px
====================================================*/

@media (max-width: 1400px) {
  .blog-content {
    padding: 22px;
  }
  .blog-category {
    position: absolute;
    top: 200px;
    left: 18px;

    background: linear-gradient(to bottom, #0f64a9, #03204d);

    color: #fff;

    padding: 8px 16px;

    font-size: 13px;

    font-weight: 600;

    border-radius: 4px;

    z-index: 5;

    transition: 0.3s;
  }
}

/*====================================================
                1200px
====================================================*/

@media (max-width: 1200px) {
  .blog-content {
    padding: 22px;
  }

  .blog-content h4 {
    font-size: 22px;
  }

  .blog-content p {
    font-size: 15px;
  }
}

/*====================================================
                992px
====================================================*/

@media (max-width: 991px) {
  .recent-coverage {
    padding: 80px 0;
  }

  .recent-coverage .section-title {
    font-size: 38px;
  }

  .blog-content {
    padding: 22px;
  }

  .blog-meta {
    gap: 12px;
  }
}

/*====================================================
                768px
====================================================*/

@media (max-width: 767px) {
  .recent-coverage {
    padding: 60px 0;
  }

  .recent-coverage .section-title {
    font-size: 30px;

    line-height: 1.3;
  }

  .recent-coverage .btn-primary-custom {
    width: 100%;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-content h4 {
    font-size: 20px;
  }

  .blog-content p {
    font-size: 15px;

    line-height: 28px;
  }

  .blog-meta {
    flex-direction: column;

    align-items: flex-start;
  }
}

/*====================================================
                576px
====================================================*/

@media (max-width: 575px) {
  .recent-coverage .section-title {
    font-size: 26px;
  }

  .blog-category {
    top: 204px !important;

    left: 12px;

    padding: 6px 12px;

    font-size: 12px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-meta span {
    font-size: 14px;
  }
}
/*=========================================
            GET INVOLVED
=========================================*/

.join-section {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0;

  background:
    linear-gradient(rgba(5, 12, 30, 0.78), rgba(5, 12, 30, 0.88)),
    url("../image/bg-footer-top.png") center/cover no-repeat fixed;
}

.join-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(33, 150, 243, 0.22),
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(33, 150, 243, 0.18),
      transparent 35%
    ),
    linear-gradient(rgba(7, 21, 45, 0.35), rgba(7, 21, 45, 0.75));

  animation: bgMove 12s linear infinite alternate;
}

@keyframes bgMove {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

/*=========================================
TEXT
=========================================*/

.join-text {
  color: rgba(255, 255, 255, 0.88);

  font-size: clamp(16px, 1vw, 18px);

  line-height: 1.8;
}

/*=========================================
CARD
=========================================*/

.join-card {
  position: relative;

  display: flex;

  flex-direction: column;

  height: 100%;

  padding: clamp(24px, 2vw, 38px);

  background: rgba(5, 15, 35, 0.45);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);

  overflow: hidden;

  transition: 0.4s;
}

.join-card:hover {
  transform: translateY(-10px);

  border-color: rgba(33, 150, 243, 0.5);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.join-sec {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;

  align-items: flex-start;
}

/*=========================================
ICON
=========================================*/

.join-icon {
  width: 60px;

  height: 60px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(to bottom, #0f64a9, #03204d);

  color: #fff;

  font-size: 24px;

  margin-bottom: 22px;

  border-radius: 8px;

  transition: 0.4s;
}

.join-card:hover .join-icon {
  transform: rotate(-8deg) scale(1.08);
}

/*=========================================
CONTENT
=========================================*/

.join-card span {
  display: block;

  color: #b9d9ff;

  font-size: clamp(15px, 1vw, 18px);

  margin-bottom: 8px;
}

.join-card h3 {
  color: #fff;

  font-size: clamp(24px, 2vw, 34px);

  font-weight: 600;

  line-height: 1.3;

  margin-bottom: 18px;

  transition: 0.3s;
}

.join-card:hover h3 {
  color: var(--primary);
}

.join-card p {
  flex: 1;

  color: rgba(255, 255, 255, 0.82);

  font-size: clamp(15px, 1vw, 17px);

  line-height: 1.8;

  margin-bottom: 30px;
}

/*=========================================
BUTTON
=========================================*/

.join-outline-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  margin-top: auto;

  padding: 14px 28px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: #fff;

  text-decoration: none;

  transition: 0.35s;
}

.join-outline-btn:hover {
  background: linear-gradient(to bottom, #0f64a9, #03204d);

  border-color: transparent;

  color: #fff;

  transform: translateY(-3px);
}

/*=========================================
1400px
=========================================*/

@media (max-width: 1400px) {
  .join-card {
    padding: 30px;
  }
}

/*=========================================
1200px (MacBook)
=========================================*/

@media (max-width: 1200px) {
  .join-card {
    padding: 28px;
  }

  .join-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

/*=========================================
991px
=========================================*/

@media (max-width: 991px) {
  .join-section {
    padding: 80px 0;
  }

  .join-card {
    padding: 26px;
  }

  .join-text {
    margin-top: 18px;
  }
}

/*=========================================
767px
=========================================*/

@media (max-width: 767px) {
  .join-section {
    padding: 60px 0;

    background-attachment: scroll;
  }

  .join-card {
    padding: 22px;
  }

  .join-sec {
    flex-direction: column;

    gap: 12px;
  }

  .join-outline-btn {
    width: 100%;
  }
}

/*=========================================
575px
=========================================*/

@media (max-width: 575px) {
  .join-card {
    padding: 20px;
  }
  .footer-bottom-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    gap: 30px;
  }
  .join-icon {
    width: 52px;

    height: 52px;

    font-size: 20px;
  }

  .join-card h3 {
    font-size: 24px;
  }
}
/*=========================================
            FOOTER
=========================================*/

/*=========================================
            SITE LOADER
=========================================*/

#site-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
  z-index: 9999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#site-loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bars {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.loader-bars .bar {
  width: 12px;
  height: 64px;
  border-radius: 4px;
  display: inline-block;
  transform-origin: bottom center;
  animation: barAnim 1s infinite ease-in-out;
}

.bar1 {
  background: #ffd400;
  animation-delay: 0s;
}

.bar2 {
  background: #00c853;
  animation-delay: 0.12s;
}

.bar3 {
  background: #ff3d00;
  animation-delay: 0.24s;
}

.bar4 {
  background: #2979ff;
  animation-delay: 0.36s;
}

@keyframes barAnim {
  0%,
  100% {
    transform: scaleY(0.35);
  }

  50% {
    transform: scaleY(1);
  }
}

.loader-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #222;
  letter-spacing: 2px;
}

#typing {
  border-right: 2px solid #222;
  padding-right: 6px;
  display: inline-block;
}

.footer-section {
  position: relative;

  padding: 80px 0;

  background:
    linear-gradient(180deg, #ffffffcf, #ffffffd5),
    url("../image/footer-bg.png") no-repeat center center / cover;
  /* background-attachment: fixed; */
  overflow: hidden;
}

.footer-section::before {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.3);

  opacity: 0.4;

  pointer-events: none;
}

.footer-logo img {
  max-width: 180px;
}

.footer-about {
  margin-top: 25px;

  font-size: 18px;

  color: #555;

  line-height: 34px;

  max-width: 340px;
}

.footer-section h4 {
  font-size: 26px;

  font-weight: 700;

  color: #08152f;

  margin-bottom: 25px;

  position: relative;
}

.footer-section h4::after {
  content: "";

  width: 45px;

  height: 3px;

  background: var(--primary);

  display: block;

  margin-top: 10px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  text-decoration: none;

  color: #444;

  transition: 0.35s;

  position: relative;
}

.footer-links a:hover {
  color: var(--primary);

  padding-left: 10px;
}

.footer-links a::before {
  content: "";

  position: absolute;

  left: -12px;

  top: 50%;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: 0.35s;
}

.footer-links a:hover::before {
  width: 8px;
}

/* Divider */

.footer-section .col-lg-3,
.footer-section .col-lg-2 {
  border-left: 1px solid rgba(0, 0, 0, 0.12);

  padding-left: 40px;
}

@media (max-width: 991px) {
  .footer-section .col-lg-3,
  .footer-section .col-lg-2 {
    border: none;

    padding-left: 12px;
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding: 60px 0;
  }

  .footer-about {
    font-size: 16px;

    line-height: 28px;
  }

  .footer-section h4 {
    font-size: 22px;

    margin-top: 20px;
  }
}

/*=========================================
            FOOTER BOTTOM
=========================================*/

.footer-bottom {
  background: #07152d;

  padding: 22px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
}

.footer-bottom-menu {
  margin: 0;

  padding: 0;

  list-style: none;

  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 30px;
}

.footer-bottom-menu li {
  position: relative;
}

.footer-bottom-menu li:not(:last-child)::after {
  content: "";

  position: absolute;

  right: -16px;

  top: 50%;

  transform: translateY(-50%);

  width: 1px;

  height: 14px;

  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom-menu a {
  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;

  font-size: 15px;

  transition: 0.35s;
}

.footer-bottom-menu a:hover {
  color: var(--primary);
}

.bi-list {
  color: #fff;
  font-size: 28px;
}

@media (max-width: 768px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0px 0;
    transition: 0.4s;
    background-color: #000000;
  }

  .img-badge {
    position: absolute;
    bottom: 52%;
    left: 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    letter-spacing: 0.3px;
  }

  .about-section {
    position: relative;
    height: 70vh !important;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
      linear-gradient(rgba(5, 15, 28, 0.72), rgba(5, 15, 28, 0.508)),
      url("../image/about.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
  }

  .navbar {
    padding: 10px 0;
    border-bottom: solid 1px #fff;
  }

  .navbar-nav {
    gap: 2px;
  }
}

/*=========================================
        SERVICE DETAILS
=========================================*/

.service-details {
  padding: 100px 0;

  background: #fff;
}

/*=========================================
ITEM
=========================================*/

.service-item {
  padding: 20px 0 60px;
}

.service-divider {
  width: 100%;

  height: 1px;

  background: #d8d8d8;

  margin: 20px 0 70px;
}

/*=========================================
CONTENT
=========================================*/

.service-content {
  position: relative;

  padding-left: 22px;
}

.service-item:hover .service-content::before {
  height: 95%;
}

.service-number {
  display: block;

  margin-bottom: 18px;

  font-size: 20px;

  color: var(--primary);

  font-weight: 500;
}

.service-number strong {
  font-weight: 400;
  text-transform: uppercase;
}

.service-content h2 {
  font-size: 38px;

  font-weight: 700;

  color: #08152f;

  line-height: 1.2;

  margin-bottom: 22px;

  transition: 0.35s;
}

.service-item:hover h2 {
  color: var(--primary);
}

.service-content p {
  font-size: 16px;

  color: #666;

  line-height: 28px;

  margin-bottom: 28px;
}

/*=========================================
LIST
=========================================*/

.service-list {
  padding: 0;

  margin: 0;

  list-style: none;
}

.service-list li {
  display: flex;

  align-items: start;

  gap: 14px;

  margin-bottom: 10px;

  color: #555;

  font-size: 16px;

  line-height: 26px;

  transition: 0.35s;
}

.service-list li i {
  color: var(--primary);

  font-size: 20px;

  margin-top: 2px;

  transition: 0.35s;
}

.service-item:hover .service-list li {
  transform: translateX(8px);
}

.service-item:hover .service-list li i {
  transform: rotate(360deg) scale(1.2);
}

/*=========================================
IMAGE
=========================================*/

.service-image {
  overflow: hidden;

  border-radius: 10px;

  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

  transition: 0.45s;
}

.service-image img {
  width: 100%;

  transition: 0.7s;
}

.service-item:hover .service-image {
  transform: translateY(-10px);

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.service-item:hover .service-image img {
  transform: scale(1.08);
}

/*=========================================
TABLET
=========================================*/

@media (max-width: 991px) {
  .service-details {
    padding: 80px 0;
  }

  .service-content {
    padding-left: 18px;
  }

  .service-content h2 {
    font-size: 36px;
  }

  .service-content p {
    font-size: 18px;

    line-height: 32px;
  }

  .service-list li {
    font-size: 17px;

    line-height: 22px;
  }

  .service-image {
    margin-bottom: 30px;
  }
}

/*=========================================
MOBILE
=========================================*/

@media (max-width: 767px) {
  .service-details {
    padding: 60px 0;
  }

  .service-number {
    font-size: 18px;
    font-weight: 500;
  }

  .service-content h2 {
    font-size: 30px;
  }

  .service-content p {
    font-size: 16px;

    line-height: 28px;
  }

  .service-list li {
    font-size: 15px;

    line-height: 28px;

    gap: 10px;
  }

  .service-divider {
    margin: 20px 0 50px;
  }
}

/*=====================================
04 - PLATFORM SECTION STYLES
=====================================*/
.platform-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(3, 11, 24, 0.92) 0%,
      rgba(8, 26, 54, 0.92) 50%
    ),
    url("../image/platform.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.platform-tag {
  color: #2196f3;
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.platform-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 24px;
}

.platform-text {
  color: #a2b4cc;
  font-size: 15px;
  line-height: 1.7;
}

/* Timeline Layout */
.timeline-wrapper {
  position: relative;
  padding-top: 20px;
}

.timeline-line {
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(33, 150, 243, 0.4);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2196f3;
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.8);
  margin: 0 auto 18px auto;

  animation: pulseDot 1.5s infinite;
}

@keyframes blinkDot {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 5px var(--primary);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.5);
    box-shadow:
      0 0 20px var(--primary),
      0 0 35px var(--primary);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 5px var(--primary);
  }
}

.step-badge {
  display: inline-block;
  color: #8da4c4;
  font-size: 13px;
  margin-bottom: 12px;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: #2196f3;
  margin-bottom: 12px;
}

.step-desc {
  color: #a2b4cc;
  font-size: 13.5px;
  line-height: 1.6;
  text-align: left;
}

/*=====================================
05 - GET INVOLVED SECTION STYLES
=====================================*/
.involved-section {
  padding: 100px 0;
  background: #ffffff;
  color: #08152f;
}

.involved-tag {
  color: #2196f3;
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.involved-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: #08152f;
  margin-bottom: 22px;
}

.involved-text {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.involved-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline-dark-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1px solid #08152f;
  background: transparent;
  color: #08152f;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.35s ease;
}

.btn-outline-dark-custom:hover {
  background: #08152f;
  color: #ffffff;
  transform: translateY(-3px);
}

.involved-image-wrapper img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  width: 100%;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .timeline-line {
    display: none;
  }

  .timeline-step {
    margin-bottom: 30px;
    text-align: left;
  }

  .timeline-dot {
    margin: 0 0 15px 0;
  }
}

/*=====================================
MEDIA & INSIGHTS SECTION STYLES
=====================================*/
.media-section {
  background-color: #f8f9fa;
}

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  /* Mobile screen ke liye wrap */
}

.filter-btn {
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  color: #0b1b2d;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);
  color: #ffffff;
  border-color: #0b1b2d;
  box-shadow: 0 4px 12px rgba(11, 27, 45, 0.15);
}

/* --- Media Card Layout --- */
.media-card {
  background: #eef2f5;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* --- Card Image & Overlay Badge --- */
.card-img-box {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background-color: #d8e0e8;
}

.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-card:hover .card-img-box img {
  transform: scale(1.06);
}

.img-badge {
  position: absolute;
  bottom: 45%;
  left: 12px;
  background: #0b53d6;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  letter-spacing: 0.3px;
}

/* --- Card Content --- */
.card-content {
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #06111f;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.media-card:hover .card-content h4 {
  color: #0b53d6;
}

.card-content p {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* --- Card Meta Info --- */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #dce2e6;
  font-size: 12px;
  color: #1a2229;
  font-weight: 600;
}

.meta-tag,
.meta-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-tag i {
  font-size: 8px;
  color: #0b1b2d;
}

.meta-time i {
  font-size: 12px;
  color: #0b1b2d;
}

/* --- Tab Filter Animation Classes --- */
.filter-item {
  transition: all 0.4s ease-in-out;
}

.filter-item.hide-item {
  display: none !important;
}

.filter-item.show-item {
  animation: cardFadeIn 0.4s ease-in-out forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/*=====================================
RESPONSIVE MEDIA QUERIES
=====================================*/

/* Large Screens (Desktops) */
@media (max-width: 1199px) {
  .card-img-box {
    height: 190px;
  }

  .card-content h4 {
    font-size: 20px;
  }
}

/* Tablets (Portrait & Landscape) */
@media (max-width: 991px) {
  .card-img-box {
    height: 220px;
  }

  .filter-tabs {
    justify-content: flex-start;
    gap: 10px;
  }

  .filter-btn {
    padding: 7px 18px;
    font-size: 12px;
  }
}

/* Mobile Devices */
@media (max-width: 575px) {
  .card-img-box {
    height: 200px;
  }
  .filter-tabs {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-direction: column;
    /* Mobile screen ke liye wrap */
  }
  .join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 20px;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(to bottom, #0f64a9 0%, #1e89df 100%);
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: none;
    transition: 0.4s;
  }
  .card-content {
    padding: 18px 16px 14px 16px;
  }

  .card-content h4 {
    font-size: 16px;
  }

  .filter-tabs {
    width: 100%;
  }

  .filter-btn {
    flex: 1 1 auto;
    text-align: center;
    padding: 8px 12px;
    font-size: 11px;
  }
}

/*=====================================
SUBSCRIBE CTA SECTION STYLES
=====================================*/
.subscribe-section {
  position: relative;
  padding: 90px 0;
  /* Dark tech grid overlay background matching earlier sections */
  background:
    linear-gradient(
      180deg,
      rgba(3, 11, 24, 0.88) 0%,
      rgba(4, 15, 33, 0.94) 100%
    ),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  background-attachment: fixed;
  /* Parallax Effect */
  color: #ffffff;
  overflow: hidden;
}

/* Heading Styling */
.subscribe-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  line-height: 1.2;
}

/* Subtitle Styling */
.subscribe-text {
  font-size: 22px;
  font-weight: 300;
  color: #e2e8f0;
  max-width: 780px;
  line-height: 1.45;
}

/* Glassmorphism / Outlined Subscribe Button */
.btn-subscribe {
  display: inline-block;
  padding: 12px 48px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.btn-subscribe:hover {
  background: #ffffff;
  color: #030b18;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/*=====================================
RESPONSIVE STYLES
=====================================*/
@media (max-width: 991px) {
  .subscribe-section {
    padding: 70px 0;
  }

  .subscribe-title {
    font-size: 34px;
  }

  .subscribe-text {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .subscribe-section {
    padding: 55px 0;
  }

  .subscribe-title {
    font-size: 26px;
  }

  .subscribe-text {
    font-size: 16px;
  }

  .btn-subscribe {
    width: 100%;
    /* Mobile screen par full width button option */
    max-width: 280px;
    padding: 12px 24px;
    font-size: 16px;
  }
}

/*=====================================
MEDIA CONTENT TABS STYLES
=====================================*/
.content-tabs-section {
  background-color: #f8f9fa;
}

/* Filter Tab Buttons */
.filter-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #d0d7de;
  background: #ffffff;
  color: #0d1b2a;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);
  color: #ffffff;
  border-color: #0d233a;
}
/*=========================================
            MEDIA CARD
=========================================*/

.tab-media-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.tab-media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/*=========================================
                IMAGE
=========================================*/

.card-img-box {
  position: relative;
  overflow: visible;
  aspect-ratio: 16/10;
}

.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.tab-media-card:hover img {
  transform: scale(1.08);
}

/*=========================================
            IMAGE BADGE
=========================================*/

.img-badge {
  position: absolute;

  left: 20px;

  top: -20px;

  z-index: 20;

  display: inline-flex;

  align-items: center;

  padding: 8px 18px;

  font-size: 13px;
  height: fit-content;
  font-weight: 600;

  color: #fff;

  border-radius: 4px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.badge-blue,
.badge-darkblue,
.badge-cyan {
  background: linear-gradient(to bottom, #0f64a9, #03204d);
}
/*=========================================
            CARD CONTENT
=========================================*/

.card-content {
  position: relative;

  padding: 26px 22px 22px;

  display: flex;

  flex-direction: column;

  flex: 1;
}

.card-content h4 {
  font-size: clamp(20px, 1.6vw, 24px);

  font-weight: 700;

  line-height: 1.35;

  color: #08121e;

  margin: 0 0 14px;

  transition: 0.35s;
}

.tab-media-card:hover .card-content h4 {
  color: var(--primary);
}

.card-content p {
  font-size: clamp(15px, 1vw, 16px);

  color: #666;

  line-height: 1.8;

  margin-bottom: 24px;

  flex: 1;
}

/*=========================================
            META
=========================================*/

.card-meta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 12px;

  border-top: 1px solid #e6e6e6;

  padding-top: 18px;

  flex-wrap: wrap;
}

.meta-time,
.meta-type {
  display: flex;

  align-items: center;

  gap: 7px;

  font-size: 14px;

  color: #555;

  font-weight: 500;
}

.meta-time i,
.meta-type i {
  width: 22px;

  height: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(to bottom, #0f64a9, #03204d);

  color: #fff;

  border-radius: 50%;

  font-size: 10px;

  transition: 0.4s;
}

.tab-media-card:hover .meta-time i,
.tab-media-card:hover .meta-type i {
  transform: rotate(360deg);

  background: #08152f;
}

/*=========================================
            FILTER
=========================================*/

.filter-item {
  transition: 0.35s;
}

.filter-item.hide-item {
  display: none !important;
}

.filter-item.show-item {
  animation: tabFadeIn 0.45s ease forwards;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}
/*=========================================
        RESPONSIVE
=========================================*/

/*--------------- 1400px ---------------*/

@media (max-width: 1400px) {
  .card-content {
    padding: 26px 20px 20px;
  }

  .card-content h4 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 15px;
  }
}

/*--------------- 1200px (MacBook) ---------------*/

@media (max-width: 1200px) {
  .tab-media-card {
    border-radius: 8px;
  }

  .card-content {
    padding: 48px 18px 18px;
  }

  .card-content h4 {
    font-size: 21px;
  }

  .card-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .img-badge {
    left: 20px;

    top: -16px;

    padding: 7px 16px;

    font-size: 12px;
  }
}

/*--------------- Tablet ---------------*/

@media (max-width: 991px) {
  .card-content {
    padding: 38px 18px 18px;
  }

  .card-img-box {
    aspect-ratio: 16/10;
  }

  .filter-btn {
    padding: 8px 18px;

    font-size: 13px;
  }

  .card-meta {
    gap: 10px;
  }
}

/*--------------- Mobile ---------------*/

@media (max-width: 767px) {
  .card-content {
    padding: 26px 16px 16px;
  }

  .card-content h4 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 15px;

    line-height: 1.7;
  }

  .img-badge {
    left: 0px;

    top: 15px;

    padding: 6px 14px;

    font-size: 12px;
  }

  .card-meta {
    flex-direction: column;

    align-items: flex-start;
  }

  .meta-time,
  .meta-type {
    font-size: 13px;
  }
}

/*--------------- Small Mobile ---------------*/

@media (max-width: 575px) {
  .card-content {
    padding: 20px 15px 15px;
  }

  .card-content h4 {
    font-size: 19px;
  }

  .card-content p {
    font-size: 14px;
  }

  .img-badge {
    left: 18px;

    top: -14px;

    padding: 6px 12px;

    font-size: 11px;
  }

  .filter-tabs {
    width: 100%;
  }

  .filter-btn {
    flex: 1;

    text-align: center;
  }
}

/*=====================================
FORMS & SERVICES STYLES
=====================================*/
.forms-section {
  background-color: #ffffff;
  color: #1a2229;
}

.sub-heading-tag {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0b1b2d;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Bullet Lists */
.bullet-list {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.tier-list i {
  color: #2196f3;
}

.tier-list li {
  font-size: 16px;
  color: #4a5568;
  margin-bottom: 10px;
  position: relative;
}

/* Form Styles */
.custom-form .form-label {
  font-size: 13px;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 6px;
}

.custom-form .form-control,
.custom-form .form-select {
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.custom-form .form-control:focus,
.custom-form .form-select:focus {
  border-color: #0b53d6;
  box-shadow: 0 0 0 3px rgba(11, 83, 214, 0.1);
}

.form-check-label {
  font-size: 13px;
  color: #4a5568;
}

/* Custom Buttons */
.btn-navy {
  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
}

.btn-navy:hover {
  background: linear-gradient(to bottom, #03204d 0%, #0f64a9 100%);
  color: #ffffff;
}

strong {
  color: #2196f3;
}

.text-primary {
  color: #2196f3 !important;
}

.section-divider {
  border-top: 1px solid #e2e8f0;
  opacity: 1;
}

/* Dark Advertising Block */
.dark-advertising-wrapper {
  background:
    linear-gradient(135deg, #030b18da 0%, #081a36d5 100%),
    url("../image/15.png") center/cover no-repeat;
  background-attachment: fixed;
}

.text-light-muted {
  color: #a0aec0;
}

.light-bullets {
  color: #cbd5e0;
}

.dark-input {
  background-color: #ffffff !important;
  border: 1px solid #ffffff !important;
  color: #000000 !important;
}

.btn-navy-dark {
  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid #1e3a5f;
  transition: all 0.3s ease;
}

.btn-navy-dark:hover {
  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .section-heading {
    font-size: 24px;
  }
}

/*=====================================
CONTACT & FOOTER STYLES
=====================================*/

/* 1. Contact Section */
.contact-title {
  font-size: 32px;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.6;
}

.contact-divider {
  height: 1px;
  background-color: #cbd5e1;
  width: 100%;
  position: relative;
}

.contact-divider::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -9px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2196f3;
  animation: pulseDot 1.5s infinite;
}

.text-info {
  color: #2196f3 !important;
}

.info-label {
  font-size: 14px;
}

.contact-email {
  color: #0b53d6;
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: #081a36;
}

.custom-input {
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 14px;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.custom-input:focus {
  border-color: #0b53d6;
  box-shadow: 0 0 0 3px rgba(11, 83, 214, 0.1);
}

.btn-navy {
  background-color: #0d233a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s ease;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
  border: solid 2px #0d6efd !important;
}
.btn-navy:hover {
  background-color: #0b53d6;
  color: #ffffff;
}

/* 2. Location Banner */
.location-banner {
  background:
    linear-gradient(
      180deg,
      rgba(3, 11, 24, 0.788) 0%,
      rgba(4, 15, 33, 0.821) 100%
    ),
    url("../image/15.png") center/cover no-repeat;
  background-attachment: fixed;
}

.location-sub-tag {
  letter-spacing: 0.5px;
}

.location-heading {
  font-size: 34px;
}

.location-desc {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e0;
}

/* 3. Footer Section */
.footer-heading {
  font-size: 14px;
}

.footer-links a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0b53d6;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .location-heading {
    font-size: 28px;
  }

  .contact-title {
    font-size: 26px;
  }
}

/*=====================================
ABOUT HERO SECTION - LIGHT THEME
=====================================*/
.about-hero-section-light {
  background-color: #f8fafc;
  /* Crisp Light Grey Background */
  border-bottom: 1px solid #e2e8f0;
  padding: 90px 0 70px 0;
  position: relative;
}

/* Light Accent Badge */
.badge-light-accent {
  background-color: #e0edff;
  color: #0b53d6;
  border: 1px solid #bfdbfe;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
}

/* Heading Styling */
.text-dark-navy {
  color: #0d233a;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

/* Subtitle Styling */
.hero-subtext-light {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 760px;
  color: #4a5568 !important;
}

/* Responsive Styling */
@media (max-width: 991px) {
  .about-hero-section-light {
    padding: 70px 0 50px 0;
  }

  .hero-subtext-light {
    font-size: 16px;
  }
}

/* Hero Section */
.about-hero-section {
  position: relative;
  padding: 110px 0 80px 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 11, 24, 0.9) 0%,
      rgba(8, 26, 54, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80")
      center/cover no-repeat;
  background-attachment: fixed;
}

.badge-accent {
  background: rgba(11, 83, 214, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 30px;
}

.hero-subtext {
  font-size: 19px;
  color: #e2e8f0;
  font-weight: 300;
  max-width: 750px;
  line-height: 1.6;
}

/* Mission Section */
.mission-img-wrapper {
  position: relative;
}

.mission-glass-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-left: 4px solid #0b53d6;
  max-width: 320px;
  color: #0b1b2d;
}

/* Stats Section */
.stats-section {
  background-color: #030b18;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card h3 {
  font-size: 38px;
  color: #ffffff;
}

.text-light-muted {
  color: #94a3b8;
}

/* Core Pillars */
.pillar-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border: 1px solid #e2e8f0 !important;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.pillar-icon {
  width: 55px;
  height: 55px;
  background: rgba(11, 83, 214, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* CTA Navy Section */
.bg-navy {
  background-color: #081a36;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .about-hero-section {
    padding: 80px 0 60px 0;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .mission-glass-card {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: 100%;
    margin-top: 15px;
  }
}
.recent-coverage .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.recent-coverage .section-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
  }
}

.recent-coverage .section-title {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: #08152f;
  margin: 18px 0 20px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
  }
}

.social-youtube {
  background: #d92323;
}

.social-youtube:hover {
  background: #b91c1c;
  color: #fff;
}

.social-fixed {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 10px;

  z-index: 9999;
}

/* Button */

.social-btn {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 7px;

  color: #fff;
  text-decoration: none;

  font-size: 19px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);

  transition: all 0.25s ease;
}

/* X */

.social-x {
  background: #111827;
}

.social-x:hover {
  background: #000;
  color: #fff;
}

/* LinkedIn */

.social-linkedin {
  background: #0877b9;
}

.social-linkedin:hover {
  background: #08669d;
  color: #fff;
}

/* TikTok */

.social-tiktok {
  background: #087f9f;
}

.social-tiktok:hover {
  background: #056b87;
  color: #fff;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .social-fixed {
    right: 0px;
    top: auto;
    bottom: 20px;

    transform: none;

    flex-direction: row;
    gap: 8px;
  }

  .social-btn {
    width: 42px;
    height: 42px;

    border-radius: 6px;

    font-size: 17px;
  }
}

/* =========================================
   PTDS MEDIA ADVERTISEMENT
   LIGHT PREMIUM THEME
========================================= */

.ptds-ad-section {
  position: relative;

  padding: 110px 0;

  background: #f5f8fb;

  overflow: hidden;
}

/* Background Glow */

.ptds-ad-section::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -300px;
  right: -180px;

  border-radius: 50%;

  filter: blur(80px);

  pointer-events: none;
}

/* Subtle Grid */

.ptds-ad-section::after {
  content: "";

  position: absolute;

  inset: 0;

  background-size: 60px 60px;

  pointer-events: none;

  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

/* =========================================
   HEADING
========================================= */

.ptds-ad-heading {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 50px;

  margin-bottom: 50px;
}

.ptds-ad-heading-left {
  max-width: 650px;
}

.ptds-ad-eyebrow {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 18px;

  color: var(--primary);

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}

.eyebrow-line {
  width: 32px;
  height: 2px;

  background: var(--primary);
}

.ptds-ad-heading h2 {
  margin: 0;

  color: var(--dark);

  font-size: clamp(38px, 4.5vw, 60px);

  line-height: 1.05;

  font-weight: 500;

  letter-spacing: -2px;
}

.ptds-ad-heading h2 strong {
  display: block;

  color: var(--primary);

  font-weight: 700;
}

.ptds-ad-heading-right {
  max-width: 440px;
}

.ptds-ad-heading-right p {
  margin: 0 0 18px;

  color: #64748b;

  font-size: 14px;

  line-height: 1.8;
}

.ptds-ad-header-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--dark);

  text-decoration: none;

  font-size: 12px;

  font-weight: 700;

  transition: var(--transition);
}

.ptds-ad-header-link i {
  color: var(--primary);

  transition: 0.3s ease;
}

.ptds-ad-header-link:hover {
  color: var(--primary);
}

.ptds-ad-header-link:hover i {
  transform: translate(3px, -3px);
}

/* =========================================
   SLIDER
========================================= */

.ptds-ad-slider {
  position: relative;

  z-index: 2;

  width: 100%;

  overflow: hidden;
}

.ptds-ad-track {
  display: flex;

  width: max-content;

  gap: 24px;

  animation: ptdsAdScroll 32s linear infinite;

  will-change: transform;
}

/* Pause on Hover */

.ptds-ad-slider:hover .ptds-ad-track {
  animation-play-state: paused;
}

/* =========================================
   SLIDE
========================================= */

.ptds-ad-slide {
  flex: 0 0 1000px;

  width: 1000px;
  height: 100%;
}

/* =========================================
   CARD
========================================= */

.ptds-ad-card {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  min-height: 450px;

  background: #ffffff;

  border: 1px solid #e3eaf1;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(6, 17, 31, 0.08);

  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.ptds-ad-card:hover {
  box-shadow: 0 25px 70px rgba(6, 17, 31, 0.13);
}

/* =========================================
   CONTENT
========================================= */

.ptds-ad-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 50px;
}

.ptds-ad-top {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 18px;
}

.ptds-ad-number {
  color: #94a3b8;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;
}

.ptds-ad-type {
  padding: 6px 9px;

  color: var(--primary);

  background: rgba(33, 150, 243, 0.07);

  border: 1px solid rgba(33, 150, 243, 0.13);

  border-radius: 4px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;
}

.ptds-ad-small-title {
  margin-bottom: 12px;

  color: #64748b;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.ptds-ad-content h3 {
  margin: 0 0 18px;

  color: var(--dark);

  font-size: 30px;

  line-height: 1.12;

  font-weight: 600;

  letter-spacing: -1.2px;
}

.ptds-ad-content h3 span {
  color: var(--primary);
}

.ptds-ad-content p {
  max-width: 480px;

  margin: 0 0 22px;

  color: #64748b;

  font-size: 14px;

  line-height: 1.75;
}

/* =========================================
   META
========================================= */

.ptds-ad-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 28px;
}

.ptds-ad-meta div {
  display: flex;

  align-items: center;

  gap: 7px;

  color: #64748b;

  font-size: 11px;

  font-weight: 500;
}

.ptds-ad-meta i {
  color: var(--primary);

  font-size: 14px;
}

/* =========================================
   BUTTON
========================================= */

.ptds-ad-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: fit-content;

  padding: 13px 20px;

  color: #ffffff;

  background: linear-gradient(to bottom, #0f64a9 0%, #03204d 100%);

  border: 1px solid var(--primary);

  border-radius: 6px;

  text-decoration: none;

  font-size: 12px;

  font-weight: 600;

  transition: var(--transition);
}

.ptds-ad-button:hover {
  color: #ffffff;

  background: linear-gradient(to bottom, #03204d 0%, #0f64a9 100%);

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(33, 150, 243, 0.22);
}

.ptds-ad-button i {
  transition: 0.3s ease;
}

.ptds-ad-button:hover i {
  transform: translate(3px, -3px);
}

/* =========================================
   MEDIA
========================================= */

.ptds-ad-media {
  position: relative;

  min-height: 450px;

  overflow: hidden;

  background: #dce8f2;
}

.ptds-ad-media img,
.ptds-ad-media video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.ptds-ad-card:hover .ptds-ad-media img {
  transform: scale(1.04);
}

/* =========================================
   MEDIA OVERLAY
========================================= */

.ptds-ad-media-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(6, 17, 31, 0.02) 30%,
    rgba(6, 17, 31, 0.58) 100%
  );

  pointer-events: none;
}

/* =========================================
   MEDIA INFO
========================================= */

.ptds-ad-media-info {
  position: absolute;

  left: 22px;
  bottom: 22px;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 9px 12px;

  color: #ffffff;

  background: rgba(6, 17, 31, 0.72);

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 5px;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;
}

.ptds-live-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #38bdf8;

  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

/* =========================================
   MEDIA ICON
========================================= */

.ptds-ad-media-icon {
  position: absolute;

  top: 22px;
  right: 22px;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: rgba(6, 17, 31, 0.62);

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 8px;

  font-size: 17px;
}

/* =========================================
   VIDEO PLAY
========================================= */

.ptds-video-play {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 68px;
  height: 68px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: rgba(33, 150, 243, 0.9);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 50%;

  transform: translate(-50%, -50%);

  box-shadow: 0 10px 35px rgba(33, 150, 243, 0.35);

  pointer-events: none;

  animation: videoPulse 2s infinite;
}

.ptds-video-play i {
  margin-left: 3px;

  font-size: 27px;
}

@keyframes videoPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.35);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(33, 150, 243, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
  }
}

/* =========================================
   INFINITE ANIMATION
========================================= */

@keyframes ptdsAdScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

/* =========================================
   FOOTER
========================================= */

.ptds-ad-footer {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-top: 24px;

  padding: 0 10px;
}

.ptds-ad-footer-left {
  display: flex;

  align-items: center;

  gap: 9px;

  color: #94a3b8;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;
}

.footer-dot {
  width: 6px;
  height: 6px;

  background: var(--primary);

  border-radius: 50%;
}

.footer-separator {
  color: #cbd5e1;
}

.ptds-ad-footer-link {
  display: flex;

  align-items: center;

  gap: 8px;

  color: var(--dark);

  text-decoration: none;

  font-size: 11px;

  font-weight: 600;

  transition: var(--transition);
}

.ptds-ad-footer-link i {
  color: var(--primary);

  transition: 0.3s ease;
}

.ptds-ad-footer-link:hover {
  color: var(--primary);
}

.ptds-ad-footer-link:hover i {
  transform: translateX(4px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
  .ptds-ad-slide {
    flex-basis: 900px;

    width: 900px;
  }

  .ptds-ad-content {
    padding: 40px;
  }

  .ptds-ad-content h3 {
    font-size: 34px;
  }
}

/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991px) {
  .ptds-ad-section {
    padding: 85px 0;
  }

  .ptds-ad-heading {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .ptds-ad-slide {
    flex-basis: 760px;

    width: 760px;
  }

  .ptds-ad-card {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .ptds-ad-section {
    padding: 70px 0;
  }

  .ptds-ad-heading {
    margin-bottom: 35px;
  }

  .ptds-ad-heading h2 {
    font-size: 37px;

    letter-spacing: -1px;
  }

  .ptds-ad-heading-right p {
    font-size: 13px;
  }

  .ptds-ad-slide {
    flex-basis: 88vw;

    width: 88vw;
  }

  .ptds-ad-card {
    display: flex;

    flex-direction: column;

    min-height: auto;

    border-radius: 14px;
  }

  .ptds-ad-content {
    padding: 30px 25px;
  }

  .ptds-ad-content h3 {
    font-size: 29px;

    letter-spacing: -0.7px;
  }

  .ptds-ad-content p {
    font-size: 13px;
  }

  .ptds-ad-meta {
    gap: 12px;
  }

  .ptds-ad-media {
    min-height: 280px;

    height: 280px;
  }

  .ptds-video-play {
    width: 55px;
    height: 55px;
  }

  .ptds-ad-footer {
    flex-direction: column;

    align-items: flex-start;

    padding: 0;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .ptds-ad-heading h2 {
    font-size: 31px;
  }

  .ptds-ad-content {
    padding: 25px 20px;
  }

  .ptds-ad-content h3 {
    font-size: 26px;
  }

  .ptds-ad-media {
    min-height: 230px;

    height: 230px;
  }

  .ptds-ad-type {
    font-size: 8px;
  }

  .ptds-ad-meta {
    flex-direction: column;

    gap: 8px;
  }
}
