/*
Theme Name: Vivacity Group
Theme URI: https://wordpress.org/
Author: Vivacity Group
Author URI: https://wordpress.org/
Description: Vivacity Group WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: vivacity-wp
*/
body {
    background: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    /*font-size: 18px;*/
    margin: 0px;
    padding-bottom: 15px;
    color: #555;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /*background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);*/
    border-bottom: 2px solid #b7b7b7;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

/* ========================================
   Desktop Navigation
   ======================================== */
nav {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers items horizontally */
}

nav>ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav>ul>li {
    position: relative;
    margin: 0 20px;
}

nav li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

nav li>a:hover {
    color: #b7b7b7;
    background: var(--color-bg-secondary);
}

/* Dropdown Indicator - CSS Arrow for items with submenus */
nav li:has(> ul)>a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    transition: var(--transition-fast);
}

/* ========================================
   Desktop Submenu (Level 2+)
   ======================================== */
nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

/* Nested submenu positioning (Level 3+) */
nav li ul li ul {
    top: 0;
    left: 100%;
    margin-left: 4px;
}

nav li ul li {
    position: relative;
    width: 100%;
}

nav li ul li>a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    justify-content: space-between;
    color: #000;
}

nav li ul li>a:hover {
    background: var(--color-bg-tertiary);
    color: #e2000f
}

/* Rotate nested arrow indicator to point right */
nav li ul li:has(> ul)>a::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    border-right: none;
    margin-left: auto;
}

/* Show submenu on hover (desktop) */
@media (min-width: 769px) {
    nav li:hover>ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate dropdown arrow on hover */
    nav>ul>li:hover>a::after {
        transform: rotate(180deg);
    }

    /* Hide mobile elements on desktop */
    .menu-toggle,
    .nav-close,
    .nav-overlay {
        display: none !important;
    }
}

/* ========================================
   Mobile Menu Toggle (Hamburger)
   ======================================== */
.menu-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--color-bg-tertiary);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Close Button (Mobile)
   ======================================== */
.nav-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    z-index: 10;
}

.nav-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

.nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

.nav-close span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-close span:nth-child(2) {
    transform: rotate(-45deg);
}

/* ========================================
   Mobile Navigation
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height));
        height: auto;
        background: #000;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition-slow), opacity var(--transition-normal), visibility var(--transition-normal);
        z-index: 1000;
        display: block;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        border: none;
    }
    nav li ul li > a {
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      justify-content: space-between;
      color: #fff;
    }

    /* Mobile Nav List */
    nav>ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    nav>ul>li {
        position: relative;
    }

    nav li>a {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        justify-content: space-between;
    }

    /* Mobile Submenu */
    nav li ul {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: var(--radius-sm);
        box-shadow: none;
        padding: 0;
        margin-top: 4px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        overflow: hidden;
        transition: max-height var(--transition-slow),
            opacity var(--transition-normal),
            visibility var(--transition-normal),
            padding var(--transition-normal);
    }

    nav li ul.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 8px 16px;
    }

    nav li ul li ul {
        margin-left: 0;
        background: rgba(0, 0, 0, 0.15);
    }

    nav li ul li>a {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    /* Reset arrow for mobile - all point down */
    nav li:has(> ul)>a::after,
    nav li ul li:has(> ul)>a::after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        border-bottom: none;
        margin-left: auto;
        transition: var(--transition-fast);
    }

    /* Rotate arrow when submenu is open */
    nav li:has(> ul.active)>a::after {
        transform: rotate(180deg);
    }

    /* Left border for visual hierarchy */
    nav li ul li {
        border-left: 2px solid var(--color-border);
        padding-left: 12px;
        margin-left: 4px;
    }

    nav li ul li:hover {
        border-left-color: var(--color-primary);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-overlay);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-normal), visibility var(--transition-normal);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ========================================
   Demo Content
   ======================================== */
main {
    padding-top: var(--header-height);
}

.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ========================================
   Animation for mobile nav items
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*nav.active>ul>li {
    animation: fadeIn 0.3s ease forwards;
}
*/
nav.active>ul>li:nth-child(1) {
    animation-delay: 0.05s;
}

nav.active>ul>li:nth-child(2) {
    animation-delay: 0.1s;
}

nav.active>ul>li:nth-child(3) {
    animation-delay: 0.15s;
}

nav.active>ul>li:nth-child(4) {
    animation-delay: 0.2s;
}

.headersocial ul li{
    display: inline-block;
}
.headersocial ul li a{
    color: #fff;
}
.headersocial ul li i{
    font-size: 18px;
    padding: 0 5px;
}

.headersocial ul {
    background: #e2000f;
    text-align: center;
    margin: 0 20px;
    padding: 5px;
    border-radius: 25px;
}
.logocontinaer img{
    width: 35%;
    min-width: auto;
}

.headersocial{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menucontainer{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#navbar{
    background-image: linear-gradient(to bottom, #000000, #000000, #000000, #0000009e, #00000057);
    transition:all .5s ease-in-out;
}
.scroll {
    background-color:#000 !important;
}

.menucontainer ul li a.active{
    color:  #e2000f;
}

.menucontainer ul li a.active::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: 5px;
    left: 0;
    right: 0;
    background-color: #e2000f;
    transition: width 0.3s ease;
    margin: 0 auto;
}
.carousel-caption {
    position: absolute;
  margin: 0;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.carousel-caption h2{
    font-size: 35px;
      line-height: 60px;
      color: #fff;
      font-weight: 500;
      text-align: center;
      padding: 0 100px;
      margin-bottom: 20px;
      background: #000;
      opacity: .5;
      margin: 0 85px;
      padding: 0;
}

.carousel-caption p{
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    padding: 0 150px;
}
.aboutuscontainer{
    margin: 50px 0 0 0;
}

.welcometext h1{
    color: #e2000f;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin-bottom: 25px;
}

.welcometext h1 span{
    color: #000;
}

.welcometext p{
    color: #555;
    text-align: center;
    padding: 0 200px;
    line-height: 1.8;
}

.aboutusbtn{
    text-align: center;
    margin-top: 30px;
}

.aboutusbtn a {
    color: #e2000f;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
}

.aboutusbtn a:hover{
    color: #000;
    transition: all 0.65s ease-in;
}
.aboutusbtn a::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #e2000f;
    transition: width 0.3s ease;
    border-radius: 50px;
}
.ourproductscontainer{
  background: url(assets/images/homeproductbg.png) top center no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0 50px 0;
  margin: 50px 0 0 0;
}

.ourproductscontainer h2{
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin-bottom: 25px;
}

.ourproductscontainer h2 span{
    color: #e2000f;
}

.productbox h3{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    padding: 10px 60px;
}

.productbox{
    margin-bottom: 30px;
}

.productbox img{
    width: 100%;
    border-bottom: 5px solid #e2000f;
    border-radius: 15px;
}

.productsbtn{
    text-align: center;
    margin-top: 30px;
}

.productsbtn a{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    position: relative;
}


.productsbtn a::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #e2000f;
    transition: width 0.3s ease;
    border-radius: 50px;
}
.energybgcontainer{
    background: url(assets/images/energybg.png) top center no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 0;
}

.energy-boxA h2{
    color: #fff;
    font-size: 58px;
    font-weight: 500;
    line-height: 58px;
    text-align: left;
    padding-bottom: 0;
}
.energy-boxA h3{
    color: #fff;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    padding-bottom: 0;
}
.energy-boxA p{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    text-align: left;
    padding-bottom: 0px;
}

.energy-boxB img{
    width: auto;
    min-width: auto;
    margin: 0 auto;
    display: block;
}

.energy-boxA{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.useareacontainer{
    margin: 50px 0 0 0;
}

.useareacontainer h2{
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin-bottom: 0px;
}

.useareacontainer h2 span{
    color: #e2000f;
}

.useareabox ul li{
    display: inline-block;
    width: 19%;
}

.useareabox ul li img{
    width: auto;
    min-width: auto;
    margin: 0 auto;
    display: block;
}

.useareabox ul li h3{
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.useareboxtitle{
    background: #e7e7e7;
    padding: 35px 0;
    margin: 20px 25px;
    border-radius: 15px;
    border-bottom: 5px solid #e2000f;
}
.useareabox ul{
    text-align: center;
}

.useareabox ul li .useareboxtitle:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all 0.65s ease-in;
    transform: translateY(-10px);
}

.ourclientscontainer{
    margin: 50px 0 0 0;
}

.ourclientscontainer h2{
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin-bottom: 10px;
}

.ourclientscontainer h2 span{
    color: #e2000f;
}

.ourclientbox img{
    width: 150px;
    min-width: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    filter: grayscale(0%);
  transition: filter 0.5s ease;
}
.ourclientbox{
    border: 1px solid #e7e7e7;
    margin-bottom: 20px;
}
.ourclientbox img:hover{
    filter: grayscale(100%);
}

.servicerecordcontainer{
    background: url(assets/images/servedbg.png) top center no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px 0;
    margin: 50px 0 0 0;
}

.servicerecordbox h2{
    font-size: 60px;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding-bottom: 0px;
}

.servicerecordbox p{
    font-size: 25px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding-bottom: 0;
}

.footercontainer{
    background: url(assets/images/footerbg.png) top center no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px 0 0 0;
}

.footermenu h2{
    font-size: 25px;
    line-height: 25px;
    color: #b7b7b7;
    font-weight: 400;
    text-align: left;
}

.footermenu ul li,
.footermenu ul li a{
    font-size: 14px;
    line-height: 25px;
    color: #b7b7b7;
    font-weight: 300;
    text-align: left;
    padding-bottom: 20px;
}
.footermenu ul li a:hover{
    color: #fff;
    transition: all 0.8s ease;
}

.footercontact h2{
    font-size: 25px;
    line-height: 25px;
    color: #b7b7b7;
    font-weight: 400;
    text-align: left;
}

.footercontact ul li{
    font-size: 14px;
    line-height: 25px;
    color: #b7b7b7;
    font-weight: 300;
    text-align: left;
    padding-bottom: 20px;
    display: flex;
}

.footercontact ul li a{
    color: #b7b7b7;
}

.footerlogo img{
    width: auto;
    min-width: auto;
    margin-bottom: 20px;
}


.footerlogo p{
    font-size: 14px;
    color: #b7b7b7;
    line-height: 30px;
    font-weight: 400;
    padding-right: 30px;
    line-height: 1.8;
}

.footercontact ul li i{
    color: #41a0c8;
    margin: 5px 10px 0 0px;
    font-size: 14px;
}

.copyrightstext{
    background: #313131;
    padding: 15px 0;
    margin: 30px 0 0 0;
}
.copyrightstext p{
    text-align: center;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    font-weight: 400;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.copyrightstext p a {
    color: #fff;
}

/*About Page*/
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('assets/images/about-banner.jpg') center/cover no-repeat;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
}

.about-subtitle {
    font-size: 18px;
    opacity: 0.9;
    color: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #e2000f;
    display: block;
    margin-top: 10px;
}

.text-center .section-title::after {
    margin: 10px auto 0;
}

.about-content p {
    color: #555;
    line-height: 1.8;
}

.mission-section {
    background: #000;
}

.mission-text {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 40px;
    color: #e2000f;
    margin-bottom: 15px;
}

.about-extra {
    background: #f8f9fa;
}

.about-extra p {
    color: #555;
    line-height: 1.8;
}

.about-img-box img {
    border-radius: 12px;
}
.feature-box p {
    margin-bottom: 20px;
    color: #555;
    line-height: 25px;
    font-size: 16px;
}
/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 32px;
    }
}
/*About Page*/

/*Product Page*/
.products-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('assets/images/product-banner.jpg') center/cover no-repeat;
}

.products-title {
    font-size: 48px;
    font-weight: 700;
}

.products-subtitle {
    font-size: 18px;
    opacity: 0.9;
    color: #fff;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #eee;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.product-img {
    overflow: hidden;
}

.product-img img {
    width: 100%;
    transition: 0.4s;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px;
}

.product-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-content h5::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #e2000f;
    display: block;
}

.product-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.products-cta {
    background: #000;
    padding: 60px 0;
}

.products-cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.products-cta p {
    margin-bottom: 20px;
    color: #fff;
    line-height: 25px;
    font-size: 16px;
}

.products-cta .btn {
    background: #e2000f;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.products-cta .btn:hover {
    background: #c0000c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .products-title {
        font-size: 32px;
    }
}
/*Product Page*/

/*Contact Page*/
.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('assets/images/contact-banner.jpg') center/cover no-repeat;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 18px;
    opacity: 0.9;
    color: #fff;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-card h4::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #e2000f;
  display: block;
}

.contact-card p, .contact-card p a {
    font-size: 14px;
    color: #555;
    display: flex;
    line-height: 25px;
    margin: 0;
}

.contact-card i {
    color: #e2000f;
    margin: 5px 5px 0 0;
}

.contact-form-section {
    background: #f8f9fa;
}

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #e2000f;
    display: block;
}

/* CF7 FORM STYLING */
.wpcf7-form label {
    font-weight: 600;
}
.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #e2000f;
    outline: none;
}

.wpcf7 textarea {
    height: 100px;
}

.wpcf7-submit {
    background: #e2000f;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.wpcf7-submit:hover {
    background: #c0000c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-title {
        font-size: 32px;
    }
}
/*Contact Page*/