/*
    Theme Name: WCV
    Theme URI: https://webcorevital.com
    Description: WCV theme is a responsive WordPress theme designed with simplicity and functionality in mind. Built using the powerful Kirki framework for easy customization and the flexible Bootstrap 4 grid system for smooth, mobile-first layouts, this theme ensures a seamless experience across all devices.
    Author: WCV
    Author URI: https://webcorevital.com
    Text Domain: wcv
    Version: 1.0.0
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--main-font);
  line-height: var(--text-line-height);
  color: var(--text-color);
  font-size: var(--text-font-size);
  font-weight: var(--body-font-weight, 400);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
}

img {
  max-width: 100%;
  height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style-type: none;
}

/* Header Navigation Menu */

.wcv-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 20px 10px 20px;
    position: sticky;
    top: 0;
    z-index: 99;
}

.wcv-container {
    max-width: var(--header-width, 1200px);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === Logo === */
.wcv-logo img {
    max-height: 50px;
}

/* === Right Side (Menu + Button) === */
.wcv-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* === Contact Button === */
.wcv-contact-btn {
  background-color: #C8102E;
  color: var(--button-text-color);
  padding: 10px 18px;
  border-radius: 4px;
  transition: background 0.3s ease;
  font-size: 15px;
}

.wcv-contact-btn:hover {
    background-color: var(--button-hover-bg-color);
    color: var(--button-hover-text-color);
}

/* === Menu (Desktop) === */
.wcv-desktop-nav {
    display: block;
}

.wcv-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.wcv-menu li {
    position: relative;
}

.wcv-menu li a {
    display: block;
    padding: 10px 15px;
    color: #0B1F3A;
	font-weight: 500;
}

/* Dropdown Icon */
.wcv-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20viewBox%3D%220%200%2020%2020%22%20xml%3Aspace%3D%22preserve%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20style%3D%22fill%3Anone%3Bstroke%3AcurrentColor%3Bstroke-width%3A2%3Bstroke-miterlimit%3A10%3B%22%20points%3D%2228.5%2C11.5%2016%2C24%203.5%2C11.5%20%22%20d%3D%22M17.813%207.188L10%2015L2.188%207.188%22/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.wcv-menu li.current-menu-item a,
.wcv-menu li.current-menu-item a:hover,
.wcv-menu li.current-menu-item > a::after,
.wcv-menu li.current-menu-ancestor > a::after {
    color: var(--primary-color); /* or any color you prefer */
}

/* First-level Dropdown */
.wcv-menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0;
}

/* Animate dropdown (optional) */
@keyframes wcvFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wcv-menu li:hover > ul {
  display: block;
  animation: wcvFadeIn 0.3s ease-in-out;
}

/* Nested dropdown (3rd level) */
.wcv-menu li ul li {
  position: relative;
}

.wcv-menu li ul li ul {
  left: 100%;
  top: 0;
}

/* === Mobile === */
.wcv-menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
}

/* Canvas Menu */
.wcv-canvas-menu {
  position: fixed;
  left: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.3s ease;
  z-index: 2000;
  overflow-y: auto;
  padding-top: 20px;
}

.wcv-canvas-menu.open {
  left: 0;
}

.wcv-close-menu {
  font-size: 26px;
  background: none;
  color: #fff;
  border: none;
  padding: 15px 20px;
  text-align: right;
  width: 100%;
  cursor: pointer;
}

/* Mobile Menu */
.wcv-mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wcv-mobile-menu li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  border-bottom: 1px solid #444;
}

.wcv-mobile-menu li {
    position: relative;
    font-size: 14px;
}

/* Toggle icon span for mobile menu */
.wcv-dropdown-toggle {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2020%2020%22%3E%3Cpath%20d%3D%22M17.813%207.188L10%2015L2.188%207.188%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%222%22%20/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  float: right;
  cursor: pointer;
  background-position: center;
  background-size: 15px;
  position: absolute;
  right: 20px;
  top: 10px;
}

/* Optional: rotate icon when open */
.wcv-mobile-menu li.open > .wcv-dropdown-toggle {
  transform: rotate(180deg);
}

/* Submenu */
.wcv-mobile-menu li ul {
  display: none;
  background: #222;
  padding-left: 10px;
}

.wcv-mobile-menu li.open > ul {

}

/* Mobile contact button */
.wcv-mobile-contact {
  display: block;
  background: var(--button-bg-color);
  color: #fff;
  margin: 20px;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
}

/* === Responsive Menu === */
@media (max-width: 768px) {
  .wcv-desktop-nav,
  .wcv-contact-btn {
    display: none;
  }

  .wcv-menu-toggle {
    display: block;
  }
}

/* ================= Footer Start ============== */

.wcv-footer {
  padding: 10px 0;
  font-size: 14px;
}

/* ================= Common Class ============== */

.section-padding,
.section-padding-top { padding-top: 40px; }
.section-padding,
.section-padding-bottom { padding-bottom: 40px; }

.small { font-size: 80%; }
.text-muted { color:var(--muted-text-color); }
.text-primary { color:var(--primary-color); }

.d-flex { display: flex; }
.gap-1 { gap: 2px; }
.gap-2 { gap: 4px; }
.gap-3 { gap: 6px; }
.gap-4 { gap: 8px; }
.gap-5 { gap: 10px; }

.wcv-btn {
    padding: var(--button-padding, 10px 18px);
    border-radius: var(--button-border-radius, 4px);
    transition: background 0.3s ease;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    text-decoration:none;
    cursor:pointer;
}
.wcv-btn-primary {
    background:var(--primary-color);
    color:white;
}
.wcv-btn-ghost{
    background:transparent;
    color:var(--primary-color);
    border:1px solid rgba(15,98,254,0.12);
}

.wcv-card {
    background : #fff;
    border-radius:12px;
    padding:20px;
    box-shadow: 0 6px 20px rgba(16,24,40,0.04);
}

/* ============================================================
   BASIC SOFT SHADOW
   - Very light shadow
   - Best for minimal UI and subtle elevation
============================================================ */
.wcv-shadow-soft {
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* Small blur & low opacity */
}

/* ============================================================
   MEDIUM SHADOW (Bootstrap-like)
   - Similar to Bootstrap's default "shadow" class
   - Good for headers, cards, sticky bars
============================================================ */
.wcv-shadow {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12); /* Moderate shadow depth */
}

/* ============================================================
   STRONG SHADOW
   - Similar to Bootstrap's "shadow-lg"
   - Use when you want high elevation or floating effect
============================================================ */
.wcv-shadow-strong {
    box-shadow: 0 8px 24px rgba(0,0,0,0.18); /* Larger blur + stronger opacity */
}

/* ============================================================
   HEADER-SPECIFIC SHADOW (Recommended)
   - Perfect for site headers
   - Balanced softness + visibility
============================================================ */
.wcv-header.shadow-sm,
.wcv-header.wcv-shadow-header { 
    box-shadow: 0 3px 10px rgba(0,0,0,0.10); /* Nice modern header shadow */
}

/* ======================================================
   CWV HERO SECTION – FULL CSS
====================================================== */

/* Base & Layout */
:root {
    --primary: #C8102E;
    --dark-1: #0B1F3A;
    --dark-2: #1A2C7A;
}

/* ======================================================
   1. HERO SECTION + ANIMATED BACKGROUND
====================================================== */

.cwv-hero {
    position: relative;
    padding: 0px 20px 50px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B1F3A, #3F51B5, #1A2C7A);
    background-size: 300% 300%;
    animation: cwvGradientShift 15s ease infinite;
}

@keyframes cwvGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ======================================================
   2. WAVES
====================================================== */

.cwv-wave-layer {
    position: absolute;
    width: 200%;
    height: 220px;
    left: -50%;
    bottom: -40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(60px);
    animation: cwvWaveFloat 8s ease-in-out infinite alternate;
    z-index: 1;
}

.cwv-wave-2 {
    animation-duration: 14s;
    opacity: 0.3;
}

@keyframes cwvWaveFloat {
    0% { transform: translateX(-10%) rotate(4deg); }
    100% { transform: translateX(10%) rotate(-4deg); }
}

/* ======================================================
   3. TYPOGRAPHY
====================================================== */

.cwv-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.cwv-subtitle {
    display: block;
    font-size: 1.3rem;
    margin-top: 10px;
    color: #fff;
}

.cwv-description {
    font-size: 1.15rem;
    color: #fff;
    opacity: 0.9;
    margin: 25px 0;
}

/* ======================================================
   4. CTA BUTTON
====================================================== */

.cwv-btn-primary {
    background: var(--primary);
    padding: 12px 32px;
    color: #fff;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: 0.25s ease;
    font-weight: 600;
}

.cwv-btn-primary:hover {
    background: #A50D25;
}


/* =========================================================
   FOOTER WRAPPER
========================================================= */
.WCVfooter {
    background: #0B1F3A;
    color: #ffffff;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */
.WCVfooter-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* =========================================================
   GRID WRAPPER
   Centers the grid block perfectly
========================================================= */
.WCVfooter-grid-wrapper {
    display: flex;
    justify-content: center;
}

/* =========================================================
   FOOTER GRID – EQUAL 4 COLUMNS
========================================================= */
.WCVfooter-grid {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

/* =========================================================
   INDIVIDUAL COLUMN
========================================================= */
.WCVfooter-col {
    text-align: left;
}

/* =========================================================
   COLUMN HEADINGS
========================================================= */
.WCVfooter h4 {
    font-size: 20px;
    margin-bottom: 22px;
}

/* =========================================================
   FOOTER LINKS
========================================================= */
.WCVfooter ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.WCVfooter ul li {
    margin-bottom: 12px;
}

.WCVfooter ul li a {
    color: #d6dbe3;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.WCVfooter ul li a:hover {
    color: #ffffff;
}

/* =========================================================
   MIDDLE LINKS SECTION
========================================================= */
.WCVfooter-middle-links {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.25);
}

.WCVfooter-middle-links a {
    color: #ddd;
    margin: 0 18px;
    font-size: 15px;
    text-decoration: none;
}

/* =========================================================
   FOOTER BOTTOM BAR
========================================================= */
.WCVfooter-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.WCVfooter-bottom a {
    color: #ddd;
    margin-left: 20px;
    text-decoration: none;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
========================================================= */
@media (max-width: 992px) {
    .WCVfooter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .WCVfooter-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .WCVfooter-col {
        text-align: center;
    }

    .WCVfooter-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .WCVfooter-bottom a {
        margin: 0 10px;
    }
}

/* =========================================================
   FOOTER END
========================================================= */


/* =========================================================
   RESPONSIVE BREAKPOINTS START (FOOTER SECTION)
========================================================= */

/* =========================================================
   EXTRA LARGE DESKTOP (≥ 1440px) START
========================================================= */
@media (min-width: 1440px) {

    .WCVfooter-container {
        max-width: 1400px;
        padding: 70px 50px;
    }

    .WCVfooter-grid {
        max-width: 1250px;
        gap: 70px;
    }

    .WCVfooter h4 {
        font-size: 21px;
        margin-bottom: 24px;
    }

    .WCVfooter ul li a {
        font-size: 15.5px;
    }

    .WCVfooter-middle-links {
        margin-top: 55px;
        padding-top: 34px;
    }

    .WCVfooter-bottom {
        padding: 22px 50px;
        font-size: 14.5px;
    }
}
/* =========================================================
   EXTRA LARGE DESKTOP (≥ 1440px) END
========================================================= */


/* =========================================================
   DESKTOP / LAPTOP (1200px – 1439px) START
========================================================= */
@media (min-width: 1200px) and (max-width: 1439px) {

    .WCVfooter-container {
        max-width: 1300px;
        padding: 60px 40px;
    }

    .WCVfooter-grid {
        max-width: 1200px;
        gap: 60px;
    }

    .WCVfooter-bottom {
        padding: 20px 40px;
    }
}
/* =========================================================
   DESKTOP / LAPTOP (1200px – 1439px) END
========================================================= */


/* =========================================================
   SMALL DESKTOP (992px – 1199px) START
========================================================= */
@media (min-width: 992px) and (max-width: 1199px) {

    .WCVfooter-container {
        padding: 52px 26px;
    }

    .WCVfooter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .WCVfooter h4 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .WCVfooter ul li a {
        font-size: 14.5px;
    }

    .WCVfooter-middle-links {
        margin-top: 40px;
        padding-top: 26px;
    }

    .WCVfooter-middle-links a {
        margin: 0 12px;
        font-size: 14.5px;
        display: inline-block;
        padding: 6px 0;
    }

    .WCVfooter-bottom {
        padding: 18px 26px;
        font-size: 13.8px;
    }

    .WCVfooter-bottom a {
        margin-left: 14px;
    }
}
/* =========================================================
   SMALL DESKTOP (992px – 1199px) END
========================================================= */


/* =========================================================
   TABLET (LANDSCAPE) (768px – 991px) START
========================================================= */
@media (min-width: 768px) and (max-width: 991px) {

    .WCVfooter-container {
        padding: 44px 18px;
    }

    .WCVfooter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .WCVfooter h4 {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .WCVfooter ul li {
        margin-bottom: 10px;
    }

    .WCVfooter ul li a {
        font-size: 14px;
    }

    .WCVfooter-middle-links {
        margin-top: 32px;
        padding-top: 22px;
    }

    .WCVfooter-middle-links a {
        margin: 0 10px;
        font-size: 14px;
        display: inline-block;
        padding: 6px 0;
    }

    .WCVfooter-bottom {
        padding: 16px 18px;
        gap: 10px;
    }

    .WCVfooter-bottom a {
        margin-left: 12px;
    }
}
/* =========================================================
   TABLET (LANDSCAPE) (768px – 991px) END
========================================================= */


/* =========================================================
   TABLET (PORTRAIT) (576px – 767px) START
========================================================= */
@media (min-width: 576px) and (max-width: 767px) {

    .WCVfooter-container {
        padding: 38px 14px;
    }

    .WCVfooter-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .WCVfooter-col {
        text-align: center;
    }

    .WCVfooter h4 {
        font-size: 16.5px;
        margin-bottom: 14px;
    }

    .WCVfooter ul li a {
        font-size: 14px;
    }

    .WCVfooter-middle-links {
        margin-top: 26px;
        padding-top: 18px;
    }

    .WCVfooter-middle-links a {
        margin: 0 8px;
        font-size: 14px;
        display: inline-block;
        padding: 6px 0;
    }

    .WCVfooter-bottom {
        padding: 16px 14px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .WCVfooter-bottom a {
        margin: 0 8px;
    }
}
/* =========================================================
   TABLET (PORTRAIT) (576px – 767px) END
========================================================= */


/* =========================================================
   MOBILE (LARGE) (375px – 575px) START
========================================================= */
@media (min-width: 375px) and (max-width: 575px) {

    .WCVfooter-container {
        padding: 34px 12px;
    }

    .WCVfooter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .WCVfooter-col {
        text-align: center;
    }

    .WCVfooter h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .WCVfooter ul li {
        margin-bottom: 9px;
    }

    .WCVfooter ul li a {
        font-size: 13.8px;
    }

    .WCVfooter-middle-links {
        margin-top: 22px;
        padding-top: 16px;
    }

    .WCVfooter-middle-links a {
        margin: 0 6px;
        font-size: 13.8px;
        display: inline-block;
        padding: 6px 0;
    }

    .WCVfooter-bottom {
        padding: 14px 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
        font-size: 13.5px;
    }

    .WCVfooter-bottom a {
        margin: 0 6px;
    }
}
/* =========================================================
   MOBILE (LARGE) (375px – 575px) END
========================================================= */


/* =========================================================
   MOBILE (SMALL) (≤ 374px) START
========================================================= */
@media (max-width: 374px) {

    .WCVfooter-container {
        padding: 30px 10px;
    }

    .WCVfooter-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .WCVfooter-col {
        text-align: center;
    }

    .WCVfooter h4 {
        font-size: 15.5px;
        margin-bottom: 10px;
    }

    .WCVfooter ul li a {
        font-size: 13.6px;
    }

    .WCVfooter-middle-links {
        margin-top: 20px;
        padding-top: 14px;
    }

    .WCVfooter-middle-links a {
        margin: 0 6px;
        font-size: 13.6px;
        display: inline-block;
        padding: 6px 0;
    }

    .WCVfooter-bottom {
        padding: 14px 10px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 13.4px;
    }

    .WCVfooter-bottom a {
        margin: 0 6px;
    }
}
/* =========================================================
   MOBILE (SMALL) (≤ 374px) END
========================================================= */
/* =========================================================
   FOOTER SUBSCRIBE SECTION
========================================================= */

.WCVfooter-subscribe p {
    font-size: 14.5px;
    color: #d6dbe3;
    margin-bottom: 18px;
    line-height: 1.6;
    max-width: 320px;
}

/* ===== SUBSCRIBE FORM ===== */
.WCVsubscribe-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.WCVsubscribe-form input[type="email"] {
    flex: 1;
    padding: 11px 14px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
    background: #ffffff;
    color: #0B1F3A;
}

.WCVsubscribe-form input::placeholder {
    color: #777;
}

.WCVsubscribe-form button {
    padding: 11px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: #C8102E;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.WCVsubscribe-form button:hover {
    background: #a90d26;
    transform: translateY(-1px);
}

/* ===== SOCIAL ICONS ===== */
.WCVfooter-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.WCVfooter-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-size: 15px;
    transition: background 0.3s ease, transform 0.25s ease;
}

.WCVfooter-social a:hover {
    background: #C8102E;
    transform: translateY(-3px);
}

/* =========================================================
   RESPONSIVE TWEAKS – SUBSCRIBE
========================================================= */

@media (max-width: 576px) {

    .WCVsubscribe-form {
        flex-direction: column;
        gap: 10px;
    }

    .WCVsubscribe-form button {
        width: 100%;
    }

    .WCVfooter-social {
        justify-content: center;
        margin-top: 10px;
    }

    .WCVfooter-subscribe p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================================================
   RESPONSIVE BREAKPOINTS END (FOOTER SECTION)
========================================================= */
