/* ============================================================
   CIVYA COS — Main Stylesheet
   Base design: 1920px | Fully Responsive
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: #0F172A;
  overflow-x: hidden;
  background-color: #ffffff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ============================================================
   SECTION 1 — TICKER BAR
   ============================================================ */
.ticker-bar {
  width: 100%;
  height: 34px;
  background-color: #0F172A;
  overflow: hidden;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
}
.ticker-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #E0010F;
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION 2 — NAVBAR
   ============================================================ */
.navbar {
  width: 100%;
  height: 94px;
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.navbar-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo img {
  width: auto;
  object-fit: contain;
}
/*.nav-links {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 40px;*/
/*}*/
.nav-links ul {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-links ul li a, .nav-links ul li a span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0F172A;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links ul li a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E0010F;
  transition: width 0.25s ease;
}
.nav-links ul li a:hover { color: #E0010F; }
.nav-links ul li a:hover::before,
.nav-links ul li a.active::before { width: 100%; }
.nav-links ul li a.active{ color: #E0010F; font-weight: 600; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 143px;
  height: 46px;
  padding: 0 24px;
  background-color: #E0010F;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover { background-color: #b8000c; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0F172A;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


header.navbar nav#navLinks {
    width: 100%;
}
header.navbar nav#navLinks ul.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.navbar-inner ul.navbar-nav li.nav-item.dropdown ul.dropdown-menu {
    display: none;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease;
    margin-top: 4px;
}
.navbar-inner ul.navbar-nav li.nav-item.dropdown:hover ul.dropdown-menu {
    display: block !important;
    opacity: 1;
}
.nav-links ul li a:active {
    background: #d9d9d9;
}
/* ============================================================
   SECTION 3 — HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
}
.hero-slide {
  display: none;
  width: 100%;
  position: relative;
  animation: heroFadeIn 0.6s ease forwards;
}
.hero-slide.active { display: block; }
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-arrow:hover { background: #ffffff; transform: translateY(-50%) scale(1.08); }
.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }
.hero-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #0F172A;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}
.hero-dot.active {
  background: #E0010F;
  border-color: #E0010F;
  transform: scale(1.2);
}

/* ============================================================
   SECTION 4 — OUR CATEGORIES
   ============================================================ */

.categories-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #0F172A;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 48px;
}
.categories-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.category-item:hover { transform: translateY(-4px); }
.category-icon-wrap {
  position: relative;
  width: 178px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.category-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.category-label {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #0F172A;
  text-align: center;
  line-height: 1.4;
}
.categories-divider {
  width: 320px;
  height: 1px;
  background: #D1D5DB;
  margin: 40px auto 0;
}
/* ============================================================
   SECTION 4 — OUR CATEGORIES
   ============================================================ */

.categories-section {
  width: 100%;
  background: #ffffff;
  padding: 80px 240px 0px;
}

.categories-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 40px !important;
  color: #0F172A;
  margin-bottom: 40px;
}

.categories-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.category-item:hover { transform: translateY(-6px); }

.category-icon-wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.category-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #0F172A;
  text-align: center;
}

.categories-divider {
  width: 100%;
  height: 1px;
  background-color: #D1D5DB;
}

/* ============================================================
   SECTION 5 — EXPERT DERMATOLOGY + BRAND LOGOS
   ============================================================ */

.expert-section {
  width: 100%;
  background: #ffffff;
}

.expert-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 240px 12px;
    gap: 40px;
    max-width: 1920px;
    margin: 0 auto;
}

.expert-left {
  flex: 0 0 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.expert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #0F172A;
}

.expert-badge img { width: 20px; height: 20px; object-fit: contain; }

.expert-heading {
  font-weight: 500;
  font-size: 36px !important;
  line-height: 1.25;
  color: #0F172A;
}

.expert-desc {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
}

.expert-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.expert-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.expert-btn:hover { background-color: #b8000c; }

.expert-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #0F172A;
  text-decoration: none;
}

.expert-phone svg { width: 16px; height: 16px; }
.expert-phone:hover { color: #E0010F; }

.expert-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-center img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}

.expert-right {
  flex: 0 0 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.expert-model-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-left: -62px;
}

.expert-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expert-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.expert-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.expert-feature-icon img { width: 100%; height: 100%; object-fit: contain; }

.expert-feature-text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 4px;
}

.expert-feature-text p {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.6;
}

/* BRAND LOGOS */
.brand-logos-strip {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: #ffffff;
}

.brand-logos-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: brand-scroll 20s linear infinite;
  white-space: nowrap;
}

.brand-logos-strip:hover .brand-logos-track {
  animation-play-state: paused;
}

.brand-logos-track img {
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, opacity 0.3s ease;
  height: auto;
}

.brand-logos-track img:hover { filter: grayscale(0%); opacity: 1; }

@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION 6 — BUSINESS VERTICALS
   ============================================================ */

.bv-section {
  width: 100%;
  padding: 60px 240px;
  background: #ffffff;
}

.bv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bv-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px !important;
  font-weight: 500;
  color: #0F172A;
}

.bv-explore-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bv-explore-all:hover { background-color: #b8000c; }

/* ── STRIP ── */
.bv-strip {
  display: flex;
  align-items: stretch;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  gap: 0;
}

/* ── EACH CARD ── */
.bv-card {
  position: relative;
  flex: 1;                        /* collapsed = equal share */
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

/* Active / hovered card expands */
.bv-card.active,
.bv-card:hover {
  flex: 3.5;
}

/* Dark gradient overlay — stronger on active */
.bv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.18) 50%,
    rgba(0, 0, 0, 0.04) 100%
  );
  transition: background 0.4s ease;
}

/* Content pinned to bottom-left */
.bv-card-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.bv-card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.bv-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.18s, transform 0.35s ease 0.18s, background 0.2s ease;
}

.bv-card-btn:hover { background-color: #b8000c; }

/* Show label + button only on active/hovered card */
.bv-card.active .bv-card-label,
.bv-card:hover .bv-card-label,
.bv-card.active .bv-card-btn,
.bv-card:hover .bv-card-btn {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================================
   SECTION 7 — OUR PRODUCT RANGE
   ============================================================ */


.pr-section {
    width: 100%;
    background-color: #ffffff;
    background-image: url('/themes/ripple/images/product bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 240px;
    background-repeat: no-repeat;
}
.pr-inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* Header */
.pr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.pr-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px !important;
  font-weight: 500;
  color: #0F172A;
}

.pr-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pr-all-btn:hover { background-color: #b8000c; }

/* Tabs */
.pr-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 2px solid #E5E7EB;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.pr-tabs::-webkit-scrollbar { display: none; }

.pr-tab {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0F172A;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 68px;
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
    text-transform: capitalize;
}
.pr-tab:hover { color: #E0010F; }

.pr-tab.active {
    color: #E0010F;
    font-weight: 600;
    border-bottom-color: #E0010F;
}

/* Panels */
.pr-panel { display: none; }
.pr-panel.active { display: block; }

/* Cards Grid */
.pr-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pr-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #F0F0F0;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.pr-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.pr-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pr-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.pr-card:hover .pr-card-img img { transform: scale(1.05); }

.pr-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0F172A;
  padding: 14px 16px 18px;
  line-height: 1.5;
}
/* ============================================================
   SECTION 8 — GROW WITH US / CONTACT
   ============================================================ */

.grow-section {
  width: 100%;
  background-color: #F5F5F5;
  padding: 70px 240px;
}

.grow-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1920px;
  margin: 0 auto;
}

/* ── LEFT ── */
.grow-left {
  flex: 0 0 430px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grow-label {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0F172A;
    text-transform: none;
    letter-spacing: 0;
}
.grow-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 40px !important;
  font-weight: 500;
  color: #0F172A;
  line-height: 1.25;
}

.grow-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.7;
}

.grow-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.grow-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.grow-contact-item:hover { color: #E0010F; }

.grow-contact-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid #D1D5DB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.grow-contact-item:hover .grow-contact-icon { border-color: #E0010F; }

.grow-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: #0F172A;
  transition: stroke 0.2s ease;
}

.grow-contact-item:hover .grow-contact-icon svg { stroke: #E0010F; }

.grow-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.grow-contact-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.grow-contact-value {
  font-size: 20px;
  font-weight: 400;
  color: #0F172A;
}

.grow-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 13px 28px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.grow-cta:hover { background-color: #b8000c; transform: translateY(-1px); }

/* ── CENTER: FORM CARD ── */
.grow-form-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 36px 32px;
}

.grow-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.grow-field {
  position: relative;
  margin-bottom: 24px;
}

.grow-field input,
.grow-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #D1D5DB;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #0F172A;
  padding: 8px 0;
  resize: none;
  transition: border-color 0.2s ease;
}

.grow-field input::placeholder,
.grow-field textarea::placeholder {
  color: #555555;
  font-size: 13px;
}

.grow-field input:focus,
.grow-field textarea:focus {
  border-bottom-color: #E0010F;
}

.grow-submit {
  width: 100%;
  padding: 15px;
  background-color: #E0010F;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.grow-submit:hover { background-color: #b8000c; transform: translateY(-1px); }

/* ── RIGHT: IMAGE ── */
.grow-image {
  flex: 0 0 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grow-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}
/* ============================================================
   SECTION 9 — WHY CHOOSE US
   ============================================================ */

.wcu-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 240px;
}

.wcu-inner {
  max-width: 1920px;
  margin: 0 auto;
}

.wcu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.wcu-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px !important;
  font-weight: 500;
  color: #0F172A;
}

.wcu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.wcu-cta:hover { background-color: #b8000c; }

/* Grid */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.wcu-card {
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: default;
}

.wcu-card:hover:not(.active) {
  border-color: #E0010F;
  box-shadow: 0 6px 24px rgba(224, 1, 15, 0.10);
  transform: translateY(-3px);
}

/* Active (red) card */
.wcu-card.active {
  background-color: #E0010F;
  border-color: #E0010F;
}

.wcu-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px !important;
  font-weight: 500;
  color: #0F172A;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.wcu-card.active .wcu-card-title { color: #ffffff; }

.wcu-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.7;
  transition: color 0.25s ease;
}

.wcu-card.active .wcu-card-desc { color: rgba(255,255,255,0.88); }
/* ============================================================
   SECTION 10 — PROMO BANNERS
   ============================================================ */

.promo-section {
  width: 100%;
  background: #ffffff;
  padding: 0 24px 70px;
}

.promo-inner {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 1920px;
  margin: 0 auto;
}

.promo-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.promo-card a {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.promo-card:hover img { transform: scale(1.02); }
/* ============================================================
   SECTION 11 — TESTIMONIALS
   ============================================================ */

.testi-section {
  width: 100%;
  background: #ffffff;
  padding: 0 240px 70px;
}

.testi-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1920px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

/* ── LEFT ── */
.testi-left {
    flex: 0 0 48%;
    background-image: url('/themes/ripple/images/testimonial bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 48px 130px 48px 44px;
    min-height: 340px;
}

.testi-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  border-radius: inherit;
}

.testi-left-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-left-title {
  font-family: 'Poppins', sans-serif;
  font-size: 40px !important;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.testi-left-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1.7;
}

.testi-write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 28px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.testi-write-btn:hover { background-color: #b8000c; transform: translateY(-1px); }

/* ── RIGHT ── */
.testi-right {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-left: none;
  padding: 44px 48px 36px 74px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Slider */
.testi-slider { position: relative; flex: 1; }

.testi-slide {
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: testiFade 0.5s ease forwards;
}

.testi-slide.active { display: flex; }

@keyframes testiFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stars */
.testi-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.testi-stars svg {
  width: 20px;
  height: 20px;
  fill: #E0010F;
}

/* Quote icon */
.testi-quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 130px;
  line-height: 1;
  color: #E5E7EB;
  font-family: Georgia, serif;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
/* Reviewer */
.testi-reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-reviewer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #F0F0F0;
}

.testi-reviewer div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testi-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
}

.testi-role {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #E0010F;
  font-style: italic;
}

/* Review text */
.testi-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.75;
}

/* Dots */
.testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  padding: 0;
}

.testi-dot.active {
  background: #E0010F;
  transform: scale(1.25);
}
/* ============================================================
   SECTION 12 — OUR BLOGS
   ============================================================ */

.blog-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 240px;
}

.blog-inner {
  max-width: 1920px;
  margin: 0 auto;
}

/* Header */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px !important;
    font-weight: 500;
    color: #0F172A;
}

.blog-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.blog-explore-btn:hover { background-color: #b8000c; }

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.blog-card {
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* Card Image */
.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

/* Card Body */
.blog-card-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px !important;
    font-weight: 500;
    color: #0F172A;
    line-height: 1.4;
}
.blog-card-title a {
    color: #0F172A !important;
    font-weight: 500;
}
.blog-card-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.7;
  flex: 1;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 11px 26px;
  background-color: #E0010F;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s ease, transform 0.15s ease;
}

.blog-read-btn:hover { background-color: #b8000c; transform: translateY(-1px); }
/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  width: 100%;
  background-color: #0F172A;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 240px 50px;
}

/* ── COL 1: ABOUT ── */
.footer-about {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-about-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
}

/* Social Icons */
footer.page-footer ul.social-links li a {
    background: #fff !important;
    border-radius: 6px;
    color: #0f172a;
    border: 1px solid #ffffff59;
}

/* ── COL 2: QUICK LINKS ── */
.footer-links-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 12px;
  border-bottom: 2px solid #E0010F;
  width: fit-content;
  min-width: 120px;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
    margin-top: 24px;
}
.footer-about .widget__content p {
    color: #fff;
    font-size: 16px;
}
footer.page-footer .page-footer__bottom p.footer-copy {
    color: #fff;
    font-size: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* ── COL 3: CONTACT ── */
.footer-contact-col {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
}

.footer-contact-list li svg {
  width: 18px;
  height: 18px;
  stroke: #E0010F;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list li a,
.footer-contact-list li span {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list li a:hover { color: #ffffff; }

/* ── BOTTOM BAR ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 0px;
}

.footer-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.footer-copy a {
  color: #E0010F;
  font-weight: 600;
  text-decoration: none;
}

.footer-copy a:hover { text-decoration: underline; }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
}

.footer-bottom-links span {
  color: rgba(255,255,255,0.30);
  font-size: 12px;
}

.footer-bottom-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: #ffffff; }






/******new css*****/


footer.page-footer.bg-dark.pt-50 {
    background: #0F172A !important;
}
footer.page-footer .page-footer__bottom {
    background: #0f172a;
    padding: 34px 0 16px;
}
footer.page-footer .page-footer__bottom .container {
    border-top: 1px solid #ffffff33;
    padding-top: 18px;
}

.footer-about .widget__content {
    margin-top: 20px;
}
.container {
    width: 1440px !important;
    margin: 0px;
    max-width: 1440px !important;
}
.footer-about {
    padding-right: 130px !important;
}
.footer-contact-list li p {
    display: flex;
    gap: 10px;
    color: #fff;
    margin-bottom: 0px;
    font-size: 16px;
}
.footer-contact-list li a {
    color: #fff;
    font-size:16px;
}
.hero-slider p {
    margin: 0;
}
/********about-page*****/
section.section.page-intro {
    background: #000 !important;
}
section.aboutpage-section {
    padding: 60px 0;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: #f5f5f5;
    padding: 28px;
    border-radius: 25px;
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon img {
    width: 55px;
}

.feature-card h3 {
    font-size: 18px !important;
    color: #111827;
    margin-bottom: 18px;
    font-weight: 500;
    line-height: 24px;
}

.feature-card p {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

.civya-choose-section {
    padding: 60px 0px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}
.civya-choose-container{
    max-width:1250px;
    margin:auto;
}

.civya-choose-top{
    text-align:center;
    margin-bottom:70px;
}

.civya-choose-section .civya-choose-top h2 {
    color: #000 !important;
    font-size: 34px !important;
}
.civya-choose-section .civya-choose-top p {
    font-size: 14px !important;
    color: #4B5563 !important;
    width: 50%;
    margin: 0 auto;
}
.civya-choose-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:45px;
    align-items:start;
}

.civya-box h3 {
    font-size: 24px !important;
    color: #000 !important;
    margin-bottom: 10px;
    font-weight: 500;
}

.civya-box p {
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    font-size: 14px !important;
    color: #4B5563 !important;
}

.civya-box img{
    width:100%;
    border-radius:0 0 0 80px;
    display:block;
    object-fit:cover;
}

.civya-middle-img{
    position:relative;
}

.civya-middle-img img{
    width:100%;
    border-radius:0 0 80px 0;
    display:block;
}

.civya-flower{
    position:absolute;
    top:-25px;
    right:20px;
    font-size:45px;
}

.civya-bottom-text{
    margin-top:35px;
}
section.aboutpage-section .expert-left .expert-badge span {
    color: #000;
    font-size: 16px;
}
section.aboutpage-section .expert-left h2.expert-heading {
    color: #000;
}
section.aboutpage-section .expert-left p.expert-desc {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
}
section.aboutpage-section .expert-left .feature-grid .feature-card h3 {
    color: #000;
}
section.aboutpage-section .expert-left .feature-grid .feature-card p {
    font-size: 15px;
    color: #4B5563;
}
section.aboutpage-section .expert-left .feature-grid .feature-card p img {
    width: 42px;
}
section.aboutpage-section .expert-left .feature-grid .feature-card h3 {
    color: #000;
    margin-bottom: 10px;
}

.civya-why-section{
    padding:100px 20px;
    background:#f8f8f8;
}

.civya-why-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.civya-why-image{
    position:relative;
}

.civya-why-image img{
    width:100%;
    border-radius:8px;
    display:block;
}

.civya-exp-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:25px 35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.civya-exp-box h2{
    font-size:60px;
    margin:0;
    color:#567c84;
    line-height:1;
}

.civya-exp-box p{
    margin:10px 0 0;
    font-size:18px;
    color:#000;
    font-weight:600;
}

.civya-subtitle{
    color:#567c84;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:18px;
    margin-bottom:15px;
}

.civya-title{
    font-size:68px;
    line-height:1.1;
    color:#111;
    margin-bottom:25px;
    font-weight:500;
}

.civya-desc{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:45px;
}

.civya-feature{
    display:flex;
    gap:25px;
    margin-bottom:35px;
}

.civya-icon{
    width:90px;
    height:90px;
    min-width:90px;
    border-radius:50%;
    background:#dfecee;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

.civya-feature-content h3{
    font-size:38px;
    margin-bottom:10px;
    color:#111;
    font-weight:500;
}

.civya-feature-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.cc-whychoose-section{
    padding:70px 0;
    background:#f8f8f8;
}
.cc-whychoose-box:last-child {
    margin-bottom: 0px;
}
.cc-whychoose-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:0 40px 0 40px;
}
.cc-whychoose-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0F172A;
    text-transform: none;
    letter-spacing: 0;
}
.cc-whychoose-title {
    margin-bottom: 25px;
    color: #000 !important;
    font-weight: 500;
    font-size: 34px !important;
    line-height: 1.25;
}
.cc-whychoose-desc {
    font-size: 14px !important;
    color: #4B5563 !important;
    line-height: 1.7;
    margin-bottom: 40px !important;
}
.cc-whychoose-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:35px;
}

.cc-whychoose-icon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:50%;
    background:#ffe9e9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.cc-whychoose-box h4 {
    font-size: 20px !important;
    margin-bottom: 10px;
    color: #111 !important;
    font-weight: 500;
}


.cc-whychoose-box p {
    margin: 0;
    font-size: 14px !important;
    color: #4B5563 !important;
}

/****contact page start*****/
.civya-contact-section{
    background:#fff;
}

.civya-contact-form-box{
    border:1px solid #d9b7b7;
    border-radius:25px;
    padding:40px;
    background:#fff;
}

.civya-contact-form-box label{
    display:block;
    margin-bottom:10px;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#9f5b66;
    font-weight:600;
}

.civya-contact-form-box .form-control{
    height:55px;
    border:none;
    border-radius:14px;
    background:#f6e8ea;
    padding:15px 20px;
    box-shadow:none;
}

.civya-contact-form-box textarea.form-control{
    height:auto;
    resize:none;
}

.civya-contact-btn{
    width:100%;
    border:none;
    background:#9f5b66;
    color:#fff;
    height:58px;
    border-radius:16px;
    font-size:18px;
    font-weight:600;
    transition:0.4s;
}

.civya-contact-btn:hover{
    background:#7f4650;
}

.civya-contact-subtitle {
    color: #e0010f;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 10px !important;
}

.civya-contact-title{
    font-weight: 500;
    font-size: 34px !important;
    line-height: 1.25;
    color: #0F172A !important;
}

.civya-contact-description {
    font-size: 14px !important;
    color: #485563 !important;
    margin-bottom: 35px;
}

.civya-contact-info{
    margin-bottom:40px;
}

.civya-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.civya-contact-item span{
    font-size:22px;
}

.civya-contact-item p{
    margin:0;
    color:#333;
    font-size:17px;
    margin-bottom: 0px !important;
}
.civya-contact-item span {
    font-size: 22px;
    background: transparent;
    padding: 3px 7px;
    border: 1px solid #848585;
    border-radius: 100px;
    color: #e0010f;
}
.civya-contact-item p {
    margin: 0;
    color: #485563 !important;
    font-size: 14px !important;
}
.civya-social-area{
    border-top:1px solid #d7b4b4;
    padding-top:30px;
}

.civya-social-area h4 {
    font-size: 20px !important;
    margin-bottom: 24px;
    color: #0f172a !important;
}
.civya-social-icons ul.social-links {
    padding: 0px !important;
}
.civya-social-icons{
    display:flex;
    gap:14px;
}

.civya-social-icons .social-links li a {
    border: 1px solid #848585;
    border-radius: 50%;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    display: flex;
    align-items: center;
    background: transparent;
    color: #e0010f;
    justify-content: center;
}
.civya-contact-section .contact-form-group button.contact-button {
    background: #e0010f;
    border: 1px solid #e0010f;
}


/****blog-archive-css start***/
.postinner {
    padding: 30px 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}
.postinner article {
    display: grid;
}
.postinner article .post__thumbnail {
    float: left;
    position: relative;
    width: 100%;
    z-index: 20;
}
.postinner .post__content-wrap {
    float: left;
    padding: 15px 20px;
    width: calc(100% - 0px) !important;
}
.postinner .post__content-wrap h3.post__title a {
    color: #0f172a;
    line-height: 24px;
    font-size: 16px !important;
}
.postinner .post__content-wrap .post__content.p-0 p {
    font-size: 14px;
    color: #4B5563;
}
.postinner .post__content-wrap header.post__header {
    border: 0px;
}
/**single blog****/

.blog-form form#botble-contact-forms-fronts-contact-form .contact-form-row.row .contact-column-6 {
    width: 100%;
}
.blog-form form#botble-contact-forms-fronts-contact-form .contact-form-row.row .contact-column-6 .contact-form-group {
    display: grid;
}
.blog-form form#botble-contact-forms-fronts-contact-form .contact-form-row.row .contact-column-12 .contact-form-group {
    display: grid;
}
.blog-form form#botble-contact-forms-fronts-contact-form .contact-form-row.row .contact-form-group input {
    border-radius: 6px;
    height: 38px;
    border: 1px solid #9b9b9b;
    padding: 0px 12px;
    margin-bottom: 10px;
    width: 100%;
}
.blog-form form#botble-contact-forms-fronts-contact-form .contact-form-row textarea#content {
    border-radius: 6px;
    padding: 10px 12px;
}
.blog-form form#botble-contact-forms-fronts-contact-form .contact-form-group button.contact-button {
    background: #e0010f;
    color: #fff;
    border: 1px solid #e0010f;
    padding: 6px 24px;
    border-radius: 100px;
}
.blog-form {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
}
.blog-form form#botble-contact-forms-fronts-contact-form .contact-form-group label.form-check {
    margin-top: 14px;
    margin-bottom: 20px;
}
.page-sidebar .panel-title {
    font-size: 24px !important;
    color: #0f172a;
    font-weight: 600 !important;
}
article.post header.post__header h1.post__title {
    font-size: 24px;
    color: #0f172a;
    font-weight: 600 !important;
}
.divisionpage-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.divisionpage-list .division-item {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 12px;
}
.division-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.divisionpage-list .division-item h2 {
    text-align: center;
    font-size: 21px !important;
    color: #0f172a;
    font-weight: bold !important;
    margin-top: 20px;
    margin-bottom: 0px !important;
}
section.divisionpage-section {
    padding: 60px 0px;
}
.divisionpage-list .division-item h2 span.division-label {
    font-weight: 500;
    color: #0f172a;
}
.divisionpage-list .division-item:hover {
    transform: translate(0px, -10px);
    transition: all 1s ease;
}
ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.pagination li.page-item.active span {
    background: #e0010f;
    border: 1px solid #e0010f;
}
ul.pagination li.page-item a {
    color: #000;
}
.newClass {
    position: fixed !important;
    top: 0px;
}
/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1600px) {
  .navbar-inner        { padding: 0 120px; }
  .categories-section  { padding: 60px 120px 0; }
  .expert-inner        { padding: 60px 120px; }
  .bv-section          { padding: 60px 120px; }
  .pr-section { padding: 60px 120px; }
   .grow-section { padding: 70px 120px; }
   .wcu-section { padding: 70px 120px; }
   .promo-section { padding: 0 120px 60px; }
   .testi-section { padding: 0 120px 60px; }
   .blog-section { padding: 70px 120px; }
   .footer-inner        { padding: 60px 120px 50px; gap: 48px; }
  .footer-bottom-inner { padding: 20px 120px; }
}
@media (max-width: 1400px) {
    .expert-left {
        flex: 0 0 350px;
    }
    .expert-right {
        flex: 0 0 350px;
    }
    .pr-tab {
        padding: 10px 45px;
    }
    .grow-image {
        flex: 0 0 360px;
    }
    .grow-left {
        flex: 0 0 360px;
    }
    footer.page-footer .container {
        width: 1160px !important;
        max-width: 1160px !important;
    }
    .container {
        width: 1160px !important;
        max-width: 1160px !important;
    }
    footer.page-footer .page-footer__bottom .container .row.footer-bottom-inner{
        padding: 0 0 10px;
    }
}

@media (max-width: 1280px) {
  .navbar-inner        { padding: 0 60px; }
  .nav-links           { gap: 28px; }
  .nav-link            { font-size: 14px; }
  .categories-section  { padding: 50px 60px 0; }
  .categories-title    { font-size: 34px!important; }
  .expert-inner        { padding: 50px 60px; }
  .expert-heading      { font-size: 30px!important; }
  .bv-section          { padding: 50px 60px; }
  .bv-title            { font-size: 30px!important; }
  .bv-strip            { height: 360px; }
  .pr-section { padding: 50px 60px; }
  .pr-title   { font-size: 30px!important; }
  .pr-tab     { font-size: 14px!important; padding: 10px 48px; }
  .grow-section  { padding: 60px 60px; }
  .grow-heading  { font-size: 28px!important; }
  .grow-left     { flex: 0 0 320px; }
  .grow-image    { flex: 0 0 320px; }
  .wcu-section { padding: 60px 60px; }
  .wcu-title   { font-size: 30px!important; }
  .promo-section { padding: 0 60px 50px; }
  .testi-section      { padding: 0 60px 50px; }
  .testi-left-title   { font-size: 26px!important; }
  .testi-left         { padding: 36px 32px; }
  .testi-right        { padding: 36px 36px 28px; }
  .blog-section { padding: 60px 60px; }
  .blog-title   { font-size: 30px!important; }
   .footer-inner        { padding: 50px 60px 40px; gap: 40px; }
  .footer-bottom-inner { padding: 18px 60px; }
  .footer-about        { flex: 0 0 260px; }
  .footer-contact-col  { flex: 0 0 260px; }
  .container {
        width: 1160px !important;
        max-width: 1160px !important;
    }
    .civya-choose-section .civya-choose-top p {
    width: 100%;
}
.civya-choose-top {
    margin-bottom: 40px;
}
}

@media (max-width: 1024px) {
  .navbar-inner        { padding: 0 40px; }
  .nav-links           { gap: 20px; }
  .nav-link            { font-size: 13px; }
  .nav-cta             { font-size: 12px; min-width: 120px; height: 40px; padding: 0 18px; }
  .categories-section  { padding: 40px 40px 0; }
  .categories-title    { font-size: 30px; margin-bottom: 36px; }
  .category-icon-wrap  { width: 130px; height: 120px; }
  .expert-inner        { padding: 40px; flex-direction: column; align-items: center; }
  .expert-left,
  .expert-right        { flex: 0 0 auto; width: 100%; }
  .bv-section          { padding: 40px; }
  .bv-strip            { height: 300px; }
  .bv-card.active,
  .bv-card:hover       { flex: 3; }
  .pr-section { padding: 40px 40px; }
  .pr-cards   { grid-template-columns: repeat(3, 1fr); }
  .grow-section  { padding: 50px 40px; }
  .grow-inner    { gap: 28px; }
  .grow-image    { display: none; }
  .grow-left     { flex: 0 0 240px; }
   .wcu-section { padding: 50px 40px; }
  .wcu-grid    { grid-template-columns: repeat(2, 1fr); }
   .promo-section { padding: 0 40px 40px; }
  .promo-inner   { gap: 16px; }
  .testi-section { padding: 0 40px 40px; }
  .testi-left    { flex: 0 0 40%; }
  .blog-section { padding: 50px 40px; }
  .blog-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-inner        { padding: 40px 40px 32px; gap: 32px; flex-wrap: wrap; }
  .footer-bottom-inner { padding: 16px 40px; }
  .footer-about        { flex: 0 0 100%; }
  .footer-links-col    { flex: 1; }
  .footer-contact-col  { flex: 1; min-width: 220px; }
  .container {
    width: 100% !important;
    max-width: 100% !important;
}
.postinner {
    grid-template-columns: repeat(auto-fill, minmax(342px, 1fr));
}
}

@media (max-width: 768px) {
  /* Ticker */
  .ticker-item         { font-size: 11px; padding: 0 24px; }
  .ticker-dot          { width: 5px; height: 5px; }

  /* Navbar */
  .navbar              { height: 64px; }
  .navbar-inner        { padding: 0 20px; position: relative; }
  .nav-toggle          { display: flex; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 0; position: absolute; top: 64px; left: 0; width: 100%; background-color: #F9F9F9;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px 20px 24px; z-index: 1000;}
  .nav-links.open      { display: flex; }
  .nav-link            { font-size: 15px; padding: 12px 0; width: 100%; border-bottom: 1px solid #f0f0f0; }
  .nav-link:last-child { border-bottom: none; }
  .nav-link::after     { display: none; }
  .nav-cta             { display: none; }
  .nav-links ul {
    display: grid;
    align-items: center;
    gap: 40px;
}

  /* Hero */
  .hero-arrow          { width: 36px; height: 36px; }
  .hero-arrow.prev     { left: 12px; }
  .hero-arrow.next     { right: 12px; }
  .hero-arrow svg      { width: 16px; height: 16px; }
  .hero-dots           { bottom: 12px; }
  .hero-dot            { width: 8px; height: 8px; }

  /* Categories */
  .categories-section  { padding: 32px 20px 0; }
  .categories-title    { font-size: 28px !important; margin-bottom: 28px; }
  .categories-list     { flex-wrap: wrap; justify-content: center; }
  .categories-grid     { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .category-item       { width: calc(33.33% - 16px); flex: none; }
  .category-icon-wrap  { width: 120px; height: 100px; }

  /* Expert */
  .expert-inner        { padding: 32px 20px; }
  .expert-heading      { font-size: 26px!important; }

  /* Brand logos */
  .brand-logos-track   { gap: 36px; }
  .brand-logos-track img { height: auto; }

  /* Business Verticals */
  .bv-section          { padding: 32px 20px; }
  .bv-title            { font-size: 26px!important; }
  .bv-strip {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
  .bv-card {
    flex: none;
    height: 80px;
    border-radius: 10px;
  }
  .bv-card.active,
  .bv-card:hover       { flex: none; height: 260px; }
  .bv-card-label       { font-size: 14px; white-space: normal; }
  .pr-section { padding: 32px 20px; }
  .pr-title   { font-size: 26px!important; }
  .pr-tab     { font-size: 13px; padding: 8px 16px !important; }
  .pr-cards   { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grow-section  { padding: 40px 20px; }
  .grow-inner    { flex-direction: column; gap: 32px; }
  .grow-left     { flex: none; width: 100%; }
  .grow-heading  { font-size: 26px; }
  .grow-form-card { padding: 28px 20px; width: 100%; }
  .wcu-section { padding: 40px 20px; }
  .wcu-title   { font-size: 26px!important; }
  .wcu-grid    { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .wcu-card    { padding: 24px 20px; }
  .wcu-card-title { font-size: 15px; }
   .promo-section { padding: 0 20px 32px; }
  .promo-inner   { flex-direction: column; gap: 16px; }
  .promo-card    { border-radius: 14px; }
  .promo-card img { border-radius: 14px; }
   .testi-section  { padding: 0 20px 32px; }
  .testi-inner    { flex-direction: column; border-radius: 16px; }
  .testi-left     { flex: none; min-height: 260px; padding: 28px 24px; border-radius: 16px 16px 0 0; }
  .testi-right    { border-left: 1.5px solid #E5E7EB; border-top: none; padding: 28px 24px 24px; border-radius: 0 0 16px 16px; }
  .testi-left-title { font-size: 22px!important; }
   .testi-text       { font-size: 12px; }
   .testi-name       { font-size: 14px; }
   .blog-section { padding: 40px 20px; }
  .blog-title   { font-size: 26px!important; }
  .blog-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .blog-card-title { font-size: 15px; }
   .footer-inner        { padding: 36px 20px 28px; flex-direction: column; gap: 32px; }
  .footer-bottom-inner { padding: 16px 20px; flex-direction: column; gap: 10px; text-align: center; }
  .footer-about        { flex: none; }
  .footer-links-col    { flex: none; }
  .footer-contact-col  { flex: none; }
  .footer-links-grid   { gap: 32px; }
  .expert-model-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-left: 0px;
}
.footer-about {
    padding-right: 40px !important;
}
footer.page-footer .container {
    width: auto !important;
    max-width: auto !important;
}
footer.page-footer .page-footer__bottom .container .row.footer-bottom-inner {
    padding: 0 0 10px;
    gap: 0px;
    flex-direction: row;
}
.feature-grid{
    grid-template-columns:1fr;
}
  header.navbar nav#navLinks ul.navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
}
@media (max-width: 540px) {
  .blog-grid    { grid-template-columns: 1fr; }
  .blog-card-body { padding: 20px 18px 22px; }
      .footer-bottom-links {
        justify-content: center;
    }
    footer.page-footer .page-footer__bottom p.footer-copy {
        text-align: center;
    }
    .category-label {
        font-size: 16px;
    }
    .grow-contact-value {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
  /* Navbar */
  .navbar-inner        { padding: 0 16px; }
  .navbar-logo img     { height: 40px; }

  /* Hero */
  .hero-arrow          { width: 30px; height: 30px; }
  .hero-arrow svg      { width: 13px; height: 13px; }

  /* Categories */
  .categories-grid     { gap: 16px; }
  .category-item       { width: calc(48% - 8px); }
  .category-icon-wrap  { width: 90px; height: 80px; }
  .category-label      { font-size: 14px; }

  /* Expert */
  .expert-heading      { font-size: 22px !important; }

  /* Business Verticals */
  .bv-card             { height: 64px; }
  .bv-card.active,
  .bv-card:hover       { height: 220px; }
  .bv-card-label       { font-size: 18px; }
  .bv-card-btn  { font-size: 14px; padding: 8px 16px; }
  .pr-cards   { grid-template-columns: repeat(1, 1fr); gap: 10px; }
  .pr-card-name { font-size: 16px; padding: 10px 12px 14px; }
  .grow-heading  { font-size: 22px !important; }
  .grow-form-card { padding: 20px 16px; }
  .grow-submit   { font-size: 16px; }
  .wcu-title   { font-size: 15px !important; }
  .wcu-grid    { grid-template-columns: 1fr; }
  .wcu-card    { padding: 20px 16px; }
  .promo-section { padding: 0 16px 24px; }
  .promo-card    { border-radius: 10px; }
  .promo-card img { border-radius: 10px; }
  .testi-left-title { font-size: 20px; }
  .testi-text       { font-size: 13px; }
  .testi-name       { font-size: 14px; }
  .blog-title {
    font-size: 24px !important;
    text-align: center;
}
  .footer-links-grid   { flex-direction: column; gap: 16px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .categories-title {
    font-size: 24px !important;
}
.bv-title {
    font-size: 24px !important;
}
.bv-header {
    display: grid;
    justify-content: center;
}
.pr-header {
    display: grid;
    justify-content: center;
}
.pr-header p {
    text-align: center;
}
.bv-header p {
    text-align: center;
}
.pr-title {
    font-size: 24px !important;
}
.wcu-header {
    display: grid;
    justify-content: center;
}
.wcu-title {
    font-size: 24px !important;
    text-align: center;
}
.grow-field input::placeholder, .grow-field textarea::placeholder {
    font-size: 16px;
}
.blog-header {
     display: grid;
    justify-content: center;
}
.blog-header p {
    text-align: center;
}
.blog-explore-btn {
    font-size: 14px;
}
.testi-write-btn {
    font-size: 14px;
}
.blog-read-btn {
    font-size: 14px;
}
.civya-box:nth-child(2) {
    flex-direction: column-reverse;
    display: flex;
}
.page-intro .page-intro__title {
    font-size: 18px !important;
}
.divisionpage-list {
    display: grid;
}
}
