/* ---------- GLOBAL THEME ---------- */
:root {
  --bs-accent: #C22437;
  --bs-bg-dark: #05071e;
  --bs-body-bg: #05071e;
  --bs-body-color: #f0f2f9;
  --navbar-glass: #e6e6e6;
  --nav-link-color: #1e1b31;
  --card-glass: rgba(12, 16, 40, 0.65);
  --transition-default: all 0.25s ease-in-out;
  --footer-bg: #020417;
   --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #171717; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #dd3209; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bs-bg-dark);
  font-family: var(--default-font);
  color: var(--bs-body-color);
  scroll-behavior: smooth;
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: 90px;
  /* Fixed navbar ke liye space (navbar height approx 76px + margin) */
}

#about{
    background: #f2f2f2;
    color: black;
}

#partners{
        background: #e8e8e8;
    color: black;
}

#publishers{
    background: #f2f2f2;
    color: black;
}

#services{
    background: #f2f2f2;
    color: black;
}

#reviews{
    color: black;
    background: #e8e8e8;
}

#faq{
    background: #f2f2f2;
    color: black;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* accent color utilities */
.text-accent {
  color: var(--bs-accent) !important;
}

.bg-accent {
  background-color: var(--bs-accent) !important;
}

.btn-accent {
  background-color: var(--bs-accent);
  border-color: var(--bs-accent);
  color: white;
  transition: var(--transition-default);
}

.btn-accent:hover {
  background-color: #a01e2f;
  border-color: #a01e2f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(194, 36, 55, 0.3);
  color: white;
}

.btn-outline-accent {
  border: 1.5px solid var(--bs-accent);
  color: var(--bs-accent);
  background: transparent;
}

.btn-outline-accent:hover {
  background-color: var(--bs-accent);
  color: white;
}

/* custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f122e;
}

::-webkit-scrollbar-thumb {
  background: var(--bs-accent);
  border-radius: 12px;
}

/* ---------- FIXED NAVBAR (rounded-circle/pill shape, glassmorphism) ---------- */
.fixed-navbar-top {
  position: fixed;
  top: 1.5rem;
  /* 1.5rem from top, looks like margin-top: 1.5rem but fixed */
  left: 0;
  right: 0;
  z-index: 1030;
  display: flex;
  justify-content: center;
  pointer-events: none;
  /* to allow clicks through wrapper, but navbar itself clickable */
}

.navbar-custom {
  background: var(--navbar-glass);
  backdrop-filter: blur(16px);
  border-radius: 100px !important;
  /* rounded-circle / pill shape */
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
  width: 80%;
  min-width: 280px;
  pointer-events: auto;
  /* navbar clickable */
}

/* expand on large screens: width auto but max-width */
@media (min-width: 992px) {
  .navbar-custom {
    padding: 0.75rem 1.8rem;
  }
}

/* Logo styling */
.navbar-brand-logo {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  color: white !important;
  transition: var(--transition-default);
  margin-right: 1rem;
}

.navbar-brand-logo span {
  color: var(--bs-accent);
}

.navbar-custom .navbar-nav {
  gap: 0.2rem;
}

.navbar-custom .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--nav-link-color);
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-size: 0.95rem;
  transition: var(--transition-default);
  position: relative;
}

/* active link: underline only with accent color */
.navbar-custom .nav-link.active {
  color: var(--bs-accent) !important;
  background: transparent;
  box-shadow: none;
}

.navbar-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 1rem;
  right: 1rem;
  height: 2.5px;
  background-color: var(--bs-accent);
  border-radius: 4px;
  transition: width 0.2s ease;
}

/* hover effect: subtle */
.navbar-custom .nav-link:hover {
  color: var(--bs-accent) !important;
  background: transparent;
}

/* get started button inside navbar */
.btn-get-started {
  background: transparent;
  border: 1.5px solid var(--bs-accent);
  color: var(--bs-accent);
  border-radius: 40px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-left: 0.5rem;
  white-space: nowrap;
}

.btn-get-started:hover {
  background: var(--bs-accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(194, 36, 55, 0.3);
}

/* toggler button */
.navbar-toggler {
  border-color: rgba(194, 36, 55, 0.7);
  background-color: rgba(5, 7, 30, 0.6);
}

.navbar-toggler-icon {
  filter: invert(0.8);
}

/* collapse menu background on mobile */
@media (max-width: 991px) {
  .navbar-custom {
    border-radius: 28px !important;
    width: calc(100% - 2rem);
    margin: 0 1rem;
  }

  .fixed-navbar-top {
    top: 1rem;
    left: 0;
    right: 0;
    padding: 0;
  }

  body {
    padding-top: 85px;
  }

  .navbar-collapse {
    background: white;
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 1rem;
    margin-top: 0.8rem;
  }

  .navbar-custom .nav-link.active::after {
    left: 0.5rem;
    right: 0.5rem;
  }

  .btn-get-started {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    width: fit-content;
  }
}

section,
.section {
  padding: 60px 0;
  scroll-margin-top: 135px;
  overflow: clip;
}
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/*.section-title:after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  bottom: -12px;*/
/*  left: 0;*/
/*  width: 70px;*/
/*  height: 4px;*/
/*  background: var(--bs-accent);*/
/*  border-radius: 4px;*/
/*}*/

.section-title:before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.glass-card {
  background: rgb(237 237 239);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  border: 2px solid rgba(255, 0, 0, 0.322);
  transition: transform 0.2s ease, box-shadow 0.2s;
  padding: 1.8rem;
  height: 100%;
}

.glass-card:hover {
  transform: scale(1.02);
}

.hero-section .glass-card {
  border: 4px solid rgba(136, 136, 136, 0.322);
  transform: rotate(-4deg);
}

.hero-section .glass-card:hover {
  transform: rotate(0deg) scale(1.05);
}

#services h3 {
  min-height: 56px;
}

.service-icon {
  font-size: 2.8rem;
  color: var(--bs-accent);
  margin-bottom: 1.2rem;
}

.about-left-content {
  padding-right: 1rem;
}

.about-main-heading {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: 'Quicksand', sans-serif;
}

.about-description {
  opacity: 0.85;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.about-points {
  list-style: none;
  padding-left: 0;
}

.about-points li {
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.metric-label{
    color:white;
}

.about-points li i {
  color: var(--bs-accent);
  font-size: 1.3rem;
  width: 1.6rem;
}

/* Right side image gallery with overlapping */
.image-grid-area {
  position: relative;
  min-height: 480px;
}

.about-image-main {
  width: 100%;
  border-radius: 28px;
  border: 4px solid rgba(136, 136, 136, 0.322);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.about-image-overlap {
  position: absolute;
  bottom: -30px;
  left: -25px;
  width: 45%;
  border-radius: 20px;
  border: 4px solid rgba(136, 136, 136, 0.322);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
  background: #0a0e24;
  transition: transform 0.3s;
}

/* Metric cards (top right corner over main image) */
.metric-cards-wrapper {
  position: absolute;
  top: -25px;
  right: 100px;
  display: flex;
  flex-direction: row;
  z-index: 10;
  max-width: 160px;
}

.metric-card {
  background: rgba(5, 7, 30, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}

.metric-number {
  font-size: 1.7rem;
  font-weight: 800;
  font-family: 'Quicksand', sans-serif;
  color: var(--bs-accent);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  opacity: 0.8;
}

footer {
  background: #020417;
  border-top: 1px solid rgba(194, 36, 55, 0.3);
  padding: 2rem 0;
  margin-top: 2rem;
}

/* smooth scroll offset fix for fixed navbar */
html {
  scroll-padding-top: 110px;
}

@media (max-width: 768px) {
  .navbar-brand-logo .img-fluid{
    height: 35px !important;
  }

  .hero-section.section {
    margin: 40px 0 0;
  }

  .section {
    padding: 70px 0 60px;
  }

  .hero-section {
    min-height: 70vh;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .image-grid-area {
    margin-top: 3rem;
    min-height: 420px;
  }

  .metric-cards-wrapper {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: row;
    max-width: 100%;
    justify-content: end;
    margin-top: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .about-image-overlap {
    bottom: -20px;
    left: -15px;
    width: 40%;
  }

  .about-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {

  .about-image-overlap {
    position: relative;
    bottom: auto;
    left: auto;
    width: 45%;
    margin-top: -30px;
    margin-left: 1rem;
    float: right;
  }

  .image-grid-area {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .about-image-main {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .metric-cards-wrapper {
    margin-top: 0.8rem;
    gap: 8px;
  }

  .metric-card {
    flex: 1;
    padding: 0.6rem;
  }

  .about-image-overlap {
    margin-top: -120px;
    margin-bottom: 1rem;
    width: 50%;
    align-self: flex-start;
  }
}

/* ========== PARTNERS SECTION========== */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.partner-item {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: inline-block;
}

.partner-item:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* For consistent sizing across logos, we use object-contain where needed */
.partner-logo {
  object-fit: contain;
}

@media (max-width: 768px) {
  .partners-grid {
    justify-content: center;
    gap: 1.8rem;
  }

  .partner-item {
    min-width: 100px;
  }

  .partner-logo {
    max-width: 100px;
  }
}

@media (max-width: 576px) {
  .partner-item {
    min-width: calc(33% - 1rem);
  }

  .partner-logo {
    max-width: 85px;
  }
}

/* ========== PREMIUM PUBLISHERS SECTION — COMPLETELY REDESIGNED ========== */
.publisher-main-card {
  transition: all 0.3s;
}

.lynktrix-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(194, 36, 55, 0.2), rgba(194, 36, 55, 0.05));
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(194, 36, 55, 0.4);
  margin-bottom: 1.5rem;
}

.publisher-headline {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.publisher-desc {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.perk-item {
  display: flex;
  align-items: center;
  margin-right: 8px;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  transition: all 0.2s;
}

.perk-item:hover {
  background: rgba(194, 36, 55, 0.1);
}

.perk-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(194, 36, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bs-accent);
}

.perk-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.perk-text p {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0;
}

/* Right Side - Stats & CTA */
.publisher-stats-card {
  background: linear-gradient(145deg, rgba(194, 36, 55, 0.08), rgba(5, 7, 30, 0.6));
  backdrop-filter: blur(10px);
  border-radius: 48px;
  border: 1px solid rgba(194, 36, 55, 0.3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-circle-group {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-circle {
  text-align: center;
  flex: 1;
  background: rgba(5, 7, 30, 0.6);
  border-radius: 32px;
  padding: 1rem 0.5rem;
  transition: all 0.2s;
}

.stat-circle:hover {
  background: rgba(194, 36, 55, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Quicksand', sans-serif;
  color: var(--bs-accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 0.3rem;
}

.offer-preview {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 28px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.commission-bar {
  background: rgba(194, 36, 55, 0.2);
  border-radius: 12px;
  height: 8px;
  overflow: hidden;
  margin: 0.8rem 0;
}

.commission-fill {
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, var(--bs-accent), #ff6b7c);
  border-radius: 12px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-premium {
  flex: 1;
  border-radius: 40px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
}

@media (max-width: 992px) {
  .publisher-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .publisher-main-card {
    padding: 1.8rem;
    border-radius: 36px;
  }

  .publisher-headline {
    font-size: 2.2rem;
  }

  .publisher-stats-card {
    padding: 1.5rem;
    border-radius: 36px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .section-padding {
    padding: 70px 0 60px;
  }
}

@media (max-width: 576px) {
  .stat-circle-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .publisher-headline {
    font-size: 1.8rem;
  }
}

/* ========== ADVERTISERS SECTION WITH ANIMATED FLOATING CARDS ========== */
.advertisers-section {
  position: relative;
}

.advertiser-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.advertiser-text {
  font-size: 1.1rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.advertiser-btn {
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Image wrapper with absolute positioned cards */
.pointing-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pointing-img {
  max-width: 90%;
  width: auto;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
  z-index: 2;
  position: relative;
}

.pointing-img:hover {
  transform: scale(1.02);
}

.float-card {
  position: absolute;
  background: rgba(5, 7, 30, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 0.8rem 1.2rem;
  border: 4px solid var(--bs-accent);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatUpDown 3.5s ease-in-out infinite reverse;
}

.float-icon {
  width: 40px;
  height: 40px;
  background: rgba(194, 36, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bs-accent);
}

.float-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0;
}

.float-text p {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-bottom: 0;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 991px) {
  .advertiser-content {
    padding: 2rem;
  }

  .advertiser-heading {
    font-size: 2rem;
  }

  .pointing-image-wrapper {
    min-height: 400px;
    margin-top: 1rem;
    padding-bottom: 1rem;
  }

  .float-card-top {
    top: 0px;
    left: 0px;
    padding: 0.5rem 1rem;
  }

  .float-card-bottom {
    bottom: 10px;
    right: 0px;
    padding: 0.5rem 1rem;
  }

  .float-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .float-text h6 {
    font-size: 0.75rem;
  }

  .float-text p {
    font-size: 0.6rem;
  }
}

@media (max-width: 576px) {
  .advertiser-content {
    padding: 1.5rem;
  }

  .advertiser-heading {
    font-size: 1.6rem;
  }

  .pointing-image-wrapper {
    min-height: 320px;
  }

  .float-card-top,
  .float-card-bottom {
    padding: 0.4rem 0.8rem;
    gap: 6px;
  }

  .float-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* ========== REVIEWS SECTION WITH OWL CAROUSEL ========== */
.review-card {
  background: rgb(237 237 239);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  border: 1px solid rgba(194, 36, 55, 0.3);
  padding: 1.5rem 2rem;
  margin: 0.5rem;
  transition: all 0.3s;
  height: auto;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: var(--bs-accent);
  box-shadow: 0 20px 35px -12px rgba(194, 36, 55, 0.25);
}

.review-stars {
  color: #C22437;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.review-text {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: .5rem;
  font-style: italic;
  min-height: 105px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(194, 36, 55, 0.2);
  padding-top: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: rgba(194, 36, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bs-accent);
}

.reviewer-name {
  font-weight: 700;
  margin-bottom: 0;
}

.reviewer-title {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-bottom: 0;
}

/* Owl Carousel Overrides */
.owl-theme .owl-dots .owl-dot span {
  background: rgba(194, 36, 55, 0.3);
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: all 0.2s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--bs-accent);
  transform: scale(1.2);
}

.owl-theme .owl-nav {
  margin-top: 1.5rem;
}

.owl-theme .owl-nav [class*=owl-] {
  background: rgba(194, 36, 55, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s;
  color: var(--bs-accent);
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--bs-accent);
  color: white;
}

@media (max-width: 768px) {
  .review-card {
    padding: 1.2rem;
  }
  

  [data-aos-delay] {
    transition-delay: 0 !important;
  }


  .review-text {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ========== CONTACT SECTION — TWO COLUMN LAYOUT WITH BACKGROUND IMAGE ========== */

.contact-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 👇 background layer */
.contact-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/dotted-world-1.webp') center/cover no-repeat;
  opacity: 0.15;
  /* 👈 yahan control karo opacity */
  z-index: 0;
}

/* 👇 content above background */
.contact-container>* {
  position: relative;
  z-index: 1;
}

/* Left Column - Form */
.contact-form-col {
  padding: 2.5rem;
}

.form-control::placeholder {
  color: #727272;
}

.form-control {
  border: 2px solid #ccc;
}

.form-control:focus {
  border: 2px solid #C22437;
  box-shadow: none !important;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
  transition: all 0.2s;
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(194, 36, 55, 0.2);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bs-accent);
  transition: all 0.2s;
}

.detail-text h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.detail-text p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(194, 36, 55, 0.2);
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(194, 36, 55, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bs-body-color);
  transition: all 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--bs-accent);
  color: white;
  transform: translateY(-3px);
}

.contact-badge {
  display: inline-block;
  background: rgba(194, 36, 55, 0.2);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(194, 36, 55, 0.4);
}

@media (max-width: 991px) {

  .contact-form-col,
  .contact-details-col {
    padding: 1.8rem;
  }

  .contact-details-col {
    border-left: none;
    border-top: 1px solid rgba(194, 36, 55, 0.2);
  }
}

@media (max-width: 576px) {

  .contact-form-col,
  .contact-details-col {
    padding: 1.2rem;
  }

  .detail-item {
    margin-bottom: 1.2rem;
  }

  .detail-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* ========== FOOTER STYLES ========== */
.footer {
  background: #f2f2f2;
    color: black;
  border-top: 1px solid rgba(194, 36, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bs-accent), transparent);
}

.footer-widget {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--bs-accent);
}

.footer-about {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--bs-accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: black;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--bs-accent);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-contact-item i {
  color: var(--bs-accent);
  width: 20px;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(194, 36, 55, 0.3);
  border-radius: 50px 0 0 50px;
  padding: 0.6rem 1rem;
  color: white;
  font-size: 0.8rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--bs-accent);
}

.newsletter-btn {
  background: var(--bs-accent);
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 0 1.2rem;
  color: white;
  transition: all 0.2s;
}

.newsletter-btn:hover {
  background: var(--bs-accent-dark);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  background: var(--bs-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social-icon:hover {
  background: var(--bs-accent);
}

.copyright {
  border-top: 1px solid rgba(194, 36, 55, 0.15);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.5;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-widget {
    text-align: center;
  }

  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 300px;
    margin: 1rem auto 0;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ========== FAQ SECTION WITH PLUS/MINUS ICONS ========== */
.faq-section {
  background: radial-gradient(circle at 30% 10%, rgba(194, 36, 55, 0.05) 0%, #05071e 100%);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: rgba(10, 14, 40, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(194, 36, 55, 0.25);
  border-radius: 20px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.2s;
}

.accordion-item:hover {
  border-color: rgba(194, 36, 55, 0.5);
}

.accordion-header {
  background: transparent;
}

.accordion-button {
  background: rgba(10, 14, 40, 0.8);
  color: white;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
  transition: all 0.2s;
  position: relative;
}

.accordion-button:not(.collapsed) {
 background: rgb(255 255 255);
  color: var(--bs-accent);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Hide default Bootstrap arrow */
.accordion-button::after {
  display: none;
}

/* Custom plus/minus icon */
.accordion-button .accordion-icon {
  position: absolute;
  right: 1.5rem;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  color: var(--bs-accent);
}

.accordion-button .accordion-icon .bi-plus-circle-fill,
.accordion-button .accordion-icon .bi-dash-circle-fill {
  font-size: 1.2rem;
}

.accordion-button.collapsed .accordion-icon .minus-icon {
  display: none;
}

.accordion-button.collapsed .accordion-icon .plus-icon {
  display: inline-block;
}

.accordion-button:not(.collapsed) .accordion-icon .plus-icon {
  display: none;
}

.accordion-button:not(.collapsed) .accordion-icon .minus-icon {
  display: inline-block;
}

.plus-icon,
.minus-icon {
  transition: all 0.2s;
}

.accordion-body {
  background: rgba(5, 7, 30, 0.5);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid rgba(194, 36, 55, 0.15);
}

.faq-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.faq-stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  background: rgba(194, 36, 55, 0.08);
  border-radius: 40px;
  backdrop-filter: blur(4px);
}

.faq-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bs-accent);
  font-family: 'Quicksand', sans-serif;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .advertiser-content {
    padding: 1.5rem;
  }

  .contact-form-col,
  .contact-details-col {
    padding: 1.5rem;
  }

  .accordion-button {
    padding: 1rem;
    font-size: 0.85rem;
    padding-right: 3rem;
  }

  .accordion-button .accordion-icon {
    right: 1rem;
  }

  .faq-stat-item {
    padding: 0.5rem 1rem;
  }

  .faq-stat-number {
    font-size: 1.3rem;
  }
}