/* ================= HEADER ================= */
.tp-header-main {
    padding: 5px 0;
}

.tp-header-bottom {
    padding: 4px 0;
}

/* ================= MAIN MENU ================= */
.tp-main-menu-content > ul {
    display: flex;
    align-items: center;
    justify-content: center;   /* keep centered */
    gap: 2px;                  /* 🔥 VERY LOW GAP */
    margin: 0;
    padding: 0;
}

/* remove default spacing */
.tp-main-menu-content > ul > li {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

/* 🔥 MAIN FIX: reduce space between menu links */
.tp-main-menu-content > ul > li > a {
    font-size: 13px;
    padding: 5px 6px;          /* 🔥 LOW SPACE BETWEEN MENU */
    display: flex;
    align-items: center;
    gap: 3px;
    color: #010f1c;
}

/* reduce dropdown icon size */
.tp-main-menu-content > ul > li > a svg {
    width: 13px;
    height: 13px;
}

/* ================= SUBMENU ================= */
.tp-main-menu-content ul li .tp-submenu {
    position: absolute;
    background: #fff;
    min-width: 200px;
    padding: 8px 0;
    top: 120%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* force vertical submenu */
.tp-main-menu-content ul li .tp-submenu ul {
    display: block !important;
    margin: 0;
    padding: 0;
}

/* submenu items */
.tp-main-menu-content ul li .tp-submenu ul li {
    display: block;
    width: 100%;
}

/* submenu links */
.tp-main-menu-content ul li .tp-submenu ul li a {
    display: block;
    padding: 8px 15px;
    font-size: 13px;
    color: #222;
    white-space: nowrap;
}

/* hover effect */
.tp-main-menu-content ul li .tp-submenu ul li a:hover {
    background: #ec3331;
    color: #fff;
}

/* show submenu */
.tp-main-menu-content ul li:hover > .tp-submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transition: 0.3s ease;
}

/* ================= HEADER ROW FIX ================= */
.tp-mega-menu-wrapper .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* keep all in one row */
}
/* =========================
   STICKY HEADER ONLY
========================= */

/* =========================
   HERO SLIDER BASE
========================= */

.vc-hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* =========================
   SLIDE BASE
========================= */

.vc-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 60px;
    opacity: 0;
    animation: vcSlideFade 15s infinite;
}

/* =========================
   BACKGROUND IMAGES
========================= */

.vc-slide1 {
    background: url("https://multivecom1.virginclouds.in/storage/hero1.webp") center/cover no-repeat;
    animation-delay: 0s;
}

.vc-slide2 {
    background: url("https://multivecom1.virginclouds.in/storage/hero2-3.webp") center/cover no-repeat;
    animation-delay: 5s;
}

.vc-slide3 {
    background: url("https://multivecom1.virginclouds.in/storage/hero5.jpg") center/cover no-repeat;
    animation-delay: 10s;
}

/* =========================
   DARK OVERLAY
========================= */

.vc-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* =========================
   CONTENT WRAPPER
========================= */

.vc-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
}

/* =========================
   TEXT STYLE
========================= */

.vc-subtitle {
    display: block;
    font-size: 28px;
  color:#fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vc-title {
    font-size: 80px;
    font-weight: 700;
  color:#fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vc-text {
    font-size: 18px;
    margin-bottom: 20px;
  color:#fff;
}

.vc-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00A2D1;
    color: #000;
  font-weight:700;
    border-radius: 30px;
    text-decoration: none;
}

/* =========================
   TEXT ANIMATION (FIXED)
========================= */

.vc-subtitle,
.vc-title,
.vc-text,
.vc-btn {
    opacity: 0;
    transform: translateY(30px);
    animation: vcTextFade 15s infinite;
}

/* SLIDE 1 */
.vc-slide1 .vc-subtitle,
.vc-slide1 .vc-title,
.vc-slide1 .vc-text,
.vc-slide1 .vc-btn {
    animation-delay: 0s;
}

/* SLIDE 2 */
.vc-slide2 .vc-subtitle,
.vc-slide2 .vc-title,
.vc-slide2 .vc-text,
.vc-slide2 .vc-btn {
    animation-delay: 5s;
}

/* SLIDE 3 */
.vc-slide3 .vc-subtitle,
.vc-slide3 .vc-title,
.vc-slide3 .vc-text,
.vc-slide3 .vc-btn {
    animation-delay: 10s;
}

/* =========================
   SLIDE FADE ANIMATION
========================= */

@keyframes vcSlideFade {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    35% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* =========================
   TEXT ANIMATION
========================= */

@keyframes vcTextFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    8% {
        opacity: 1;
        transform: translateY(0);
    }
    28% {
        opacity: 1;
    }
    35% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .vc-slide {
        padding: 30px;
    }
  .vc-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #fff;
   
}
  .vc-hero-slider {
   
    height: 60vh;
   
}

    .vc-title {
        font-size: 28px;
    }

    .vc-text {
        font-size: 18px;
    }

    .vc-subtitle {
        font-size: 20px;
    }
}




/* =========================
   UNIQUE LIGHT BLUE SEARCH DESIGN
========================= */

/* =========================
   REMOVE CATEGORY BUTTON
========================= */
.tp-header-category {
    display: none !important;
}

/* =========================
   SHOW CATEGORY INSIDE SEARCH
========================= */
/* =========================
   CATEGORY (MORE SPACE)
========================= */
.tp-header-search-category {
    display: block !important;
    border-left: 1px solid #e6f2ff;
    padding: 0 15px;
    min-width: 120px;           /* 🔥 more space for category */
}

.tp-header-search-category select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: #0072ff;
    font-weight: 500;
    cursor: pointer;
}

/* =========================
   SEARCH CONTAINER
========================= */
.tp-header-search {
    position: relative;
    max-width: 650px;
    width: 100%;
}

/* =========================
   WRAPPER
========================= */
.tp-header-search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    background: #f8fcff;
    border-radius: 60px;
    padding: 0;
    overflow: hidden;
    z-index: 1;
}

/* animated border */
.tp-header-search-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(120deg, #00c6ff, #0072ff, #00c6ff);
    background-size: 200% 200%;
    animation: borderMove 4s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

/* =========================
   INPUT (LESS SPACE)
========================= */
.tp-header-search-box {
    flex: 0.7;              /* 🔥 reduce input width */
}

.tp-header-search-box input {
    width: 100%;
    height: 52px;
    border: none;
    outline: none;
    padding: 0 12px;        /* less padding */
    font-size: 13px;
    background: transparent;
    color: #333;
}

/* =========================
   SEARCH BUTTON (MORE SPACE)
========================= */
.tp-header-search-btn {
    margin-left: -2px;
}

.tp-header-search-btn button {
    width: 65px;            /* 🔥 bigger button */
    height: 52px;
    border: none;
    border-radius: 50px;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔥 bigger icon */
.tp-header-search-btn button svg {
    width: 20px;
    height: 20px;
}

/* hover */
.tp-header-search-btn button:hover {
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

    .tp-header-search {
        max-width: 100%;
        margin: 10px 0;
    }

    .tp-header-search-box {
        flex: 1;
    }

    .tp-header-search-box input {
        height: 45px;
        font-size: 13px;
    }

    .tp-header-search-btn button {
        height: 45px;
        width: 55px;
    }
}

/* =========================
   FORCE VERTICAL MENU
========================= */
.tp-main-menu-mobile .tp-main-menu-content ul {
    display: block !important;
    padding: 0;
    margin: 0;
}

/* Each main item */
.tp-main-menu-mobile .tp-main-menu-content ul li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
}

/* Links */
.tp-main-menu-mobile .tp-main-menu-content ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 15px;
    font-size: 15px;
    color: #222;
    text-decoration: none;
}

/* =========================
   DROPDOWN ICON ALIGN
========================= */
.tp-main-menu-mobile .dropdown-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    margin-left: 10px;
}

/* =========================
   SUBMENU (VERTICAL)
========================= */
.tp-main-menu-mobile .tp-submenu {
    display: none;
    background: #f9f9f9;
}

/* Show when active (default script handles toggle) */
.tp-main-menu-mobile .tp-submenu.active {
    display: block;
}

/* Submenu items */
.tp-main-menu-mobile .tp-submenu li {
    border-bottom: none;
}

/* Submenu links */
.tp-main-menu-mobile .tp-submenu li a {
    padding: 12px 25px;
    font-size: 14px;
    color: #555;
}

/* =========================
   HOVER / ACTIVE EFFECT
========================= */
.tp-main-menu-mobile .tp-main-menu-content ul li a:hover {
    background: #ec3331;
    color: #fff;
}

/* Submenu hover */
.tp-main-menu-mobile .tp-submenu li a:hover {
    background: #ec3331;
    color: #fff;
}

/* =========================
   REMOVE DESKTOP STYLES
========================= */
.tp-main-menu-mobile .tp-main-menu-content ul {
    flex-direction: column !important;
}

/* =========================
   ICON SIZE FIX
========================= */
.tp-main-menu-mobile svg {
    width: 18px;
    height: 18px;
}

.xfi_feature_zone{
    width: 100%;
    padding: 60px 20px;
    background: #f8fcfd;
    font-family: Arial, sans-serif;
}

.xfi_feature_wrap{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.xfi_feature_card{
    background: #fff;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 4px solid rgb(7, 85, 107);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.xfi_feature_card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.xfi_feature_card::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(7, 85, 107, 0.06);
    top: -100%;
    left: 0;
    transition: 0.5s;
}

.xfi_feature_card:hover::before{
    top: 0;
}

/* Icon */
.xfi_icon_box{
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    background: rgb(7, 85, 107);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(7, 85, 107, 0.3);
    transition: 0.4s;
}

.xfi_feature_card:hover .xfi_icon_box{
    transform: rotateY(180deg);
}

/* Text */
.xfi_feature_card h3{
    color: rgb(7, 85, 107);
    margin-bottom: 10px;
    font-size: 18px;
}

.xfi_feature_card p{
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px){
    .xfi_feature_wrap{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .xfi_feature_wrap{
        grid-template-columns: 1fr;
    }
}

/* Center image inside category box */
.tp-category-main-thumb {
    width: 100%;
    height: 100%; /* adjust if needed */
    background-position: center center !important;
    background-size: cover !important; /* fills box nicely */
    background-repeat: no-repeat;
}

/* Black overlay on image */
.tp-category-main-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* adjust opacity */
    z-index: 1;
}

/* Make sure parent is relative */
.tp-category-main-thumb {
    position: relative;
}

/* Text in white and above overlay */
.tp-category-main-content {
    position: absolute;
    z-index: 2;
}

.tp-category-main-title a,
.tp-category-main-item {
    color: #fff !important;
}

.tp-contact-info-icon {
    
    height: auto; 
   
}
.ck-content img {
    max-width: 100%;
    width: 40px;
}

/* ===================================================
   CONTACT PAGE FULL CSS - TOP BORDER DESIGN
   Contact page only / no effect on other pages
=================================================== */

/* Section */
.tp-contact-area{
    padding:70px 0;
    background:linear-gradient(135deg,#f8fafb,#ffffff);
}

/* Container */
.tp-contact-area .container{
    max-width:1320px;
    margin:auto;
    padding-left:15px;
    padding-right:15px;
}

/* Row */
.tp-contact-area .row{
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
    row-gap:25px;
}

/* Columns */
.tp-contact-area .col-xl-9.col-lg-8{
    width:70%;
    flex:0 0 70%;
    max-width:70%;
}

.tp-contact-area .col-xl-3.col-lg-4{
    width:30%;
    flex:0 0 30%;
    max-width:30%;
}

/* Main Wrapper */
.tp-contact-inner{
    background:#ffffff;
    border-radius:26px;
    padding:40px;
    box-shadow:0 20px 45px rgba(0,0,0,0.06);
    position:relative;
    overflow:hidden;
}

/* Top Border */
.tp-contact-inner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,rgb(7,85,107),rgb(14,125,155));
}

/* Left Area */
.tp-contact-wrapper{
    font-size:15px;
    line-height:1.7;
}

/* Title */
.tp-contact-title{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:28px;
    line-height:1.4;
}

/* Form Rows */
.tp-contact-form .row{
    display:flex;
    flex-wrap:wrap;
    margin-left:-10px;
    margin-right:-10px;
}

/* 2 Columns */
.tp-contact-form [class*="contact-column-6"]{
    width:50%;
    flex:0 0 50%;
    max-width:50%;
    padding-left:10px;
    padding-right:10px;
}

/* Full Width */
.tp-contact-form [class*="contact-column-12"]{
    width:100%;
    flex:0 0 100%;
    max-width:100%;
    padding-left:10px;
    padding-right:10px;
}

/* Group */
.contact-form-group{
    margin-bottom:18px;
}

/* Labels */
.form-label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#222;
    margin-bottom:8px;
}

/* Inputs */
.contact-form-input{
    width:100%;
    height:54px;
    border:1px solid #dfe6ea;
    border-radius:14px;
    padding:0 16px;
    background:#fff;
    font-size:15px;
    color:#111;
    transition:all 0.3s ease;
}

.contact-form-input::placeholder{
    color:#9aa4ab;
}

textarea.contact-form-input{
    height:150px;
    padding-top:15px;
    resize:none;
}

/* Focus */
.contact-form-input:focus{
    outline:none;
    border-color:rgb(7,85,107);
    box-shadow:0 0 0 4px rgba(7,85,107,0.08);
}

/* Checkbox */
.form-check{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin:10px 0 22px;
}

.form-check-input{
    width:16px;
    height:16px;
    margin-top:4px;
    accent-color:rgb(7,85,107);
}

.form-check-label{
    font-size:13px;
    color:#555;
    line-height:1.6;
}

.form-check-label a{
    color:rgb(7,85,107);
    font-weight:600;
    text-decoration:none;
}

/* Button */
.contact-button{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,rgb(7,85,107),rgb(10,118,145));
    color:#fff;
    font-size:16px;
    font-weight:700;
    letter-spacing:0.2px;
    cursor:pointer;
    transition:all 0.3s ease;
}

.contact-button:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(7,85,107,0.22);
}

/* Success/Error */
.contact-message{
    font-size:14px;
    margin-top:12px;
}

/* Right Contact Info */
.tp-contact-info-wrapper{
    background:#ffffff;
    border-radius:24px;
    padding:28px;
    box-shadow:0 18px 40px rgba(0,0,0,0.05);
    height:100%;
}

/* Items */
.tp-contact-info-item{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding:16px;
    border:1px solid #edf2f5;
    border-radius:18px;
    margin-bottom:16px;
    transition:0.3s ease;
}

.tp-contact-info-item:last-child{
    margin-bottom:0;
}

.tp-contact-info-item:hover{
    transform:translateY(-3px);
    border-color:rgb(7,85,107);
    box-shadow:0 12px 20px rgba(0,0,0,0.04);
}

/* Icon */
/* PHONE ICON FIX ONLY */

/* PHONE ICON FIX - VERSION 2 */

.tp-contact-info-icon{
    flex-shrink:0;
}

.tp-contact-info-icon span{
    width:50px !important;
    height:50px !important;
    border-radius:50% !important;
    background:#ffffff !important;
    border:2px solid rgb(7,85,107) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.tp-contact-info-icon img{
    width:22px !important;
    height:22px !important;
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    object-fit:contain !important;
    filter:none !important;
}
/* Text */
.tp-contact-info-content p{
    margin:0;
    color:#222;
    font-size:14px;
    line-height:1.7;
    font-weight:500;
}

/* Map Section */
.tp-map-area{
    padding-bottom:80px;
}

.tp-map-wrapper{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
}

.tp-map-iframe iframe{
    width:100%;
    border:0;
    min-height:320px;
}

/* Tablet */
@media(max-width:991px){

.tp-contact-area .col-xl-9.col-lg-8,
.tp-contact-area .col-xl-3.col-lg-4{
    width:100%;
    flex:0 0 100%;
    max-width:100%;
}

.tp-contact-info-wrapper{
    margin-top:10px;
}

}

/* Mobile */
@media(max-width:576px){

.tp-contact-area{
    padding:50px 0;
}

.tp-contact-inner{
    padding:22px;
    border-radius:20px;
}

.tp-contact-title{
    font-size:18px;
    margin-bottom:20px;
}

.tp-contact-wrapper{
    font-size:14px;
}

/* Stack Form */
.tp-contact-form [class*="contact-column-6"],
.tp-contact-form [class*="contact-column-12"]{
    width:100%;
    flex:0 0 100%;
    max-width:100%;
}

/* Inputs */
.contact-form-input,
.contact-button{
    height:50px;
    font-size:14px;
}

textarea.contact-form-input{
    height:130px;
}

.tp-contact-info-wrapper{
    padding:20px;
    border-radius:20px;
}

.tp-contact-info-item{
    padding:14px;
}

.tp-map-wrapper{
    border-radius:18px;
}

.tp-map-iframe iframe{
    min-height:260px;
}

}

/* ===== Men Banner New Design ===== */

.vrxMenHeroWrapX9{
    position:relative;
    min-height:500px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

/* Background Image */
.vrxMenHeroBgLayerX9{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.vrxMenHeroBgLayerX9 img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Overlay */
.vrxMenHeroOverlayX9{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.35)
    );
    z-index:2;
}

/* Container */
.vrxMenHeroContainerX9{
    position:relative;
    z-index:3;
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* Content */
.vrxMenHeroContentX9{
    max-width:560px;
    color:#fff;
    padding:20px 0;
}

.vrxMenHeroTagX9{
    display:inline-block;
    padding:7px 16px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:14px;
}

h1.vrxMenHeroTitleX9{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin:0 0 12px;
    color:#fff;
}

.vrxMenHeroTextX9{
    margin:0 0 36px;
    font-size:21px;
    line-height:1.7;
    color:rgba(255,255,255,0.92);
}

.vrxMenHeroBreadX9{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.vrxMenHeroBreadX9 a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
  font-size:16px;
}

.vrxMenHeroBreadX9 span{
    color:#fff;
    font-size:16px;
}

/* Tablet */
@media(max-width:991px){

    .vrxMenHeroWrapX9{
        min-height:320px;
    }

    .vrxMenHeroTitleX9{
        font-size:42px;
    }

    .vrxMenHeroTextX9{
        font-size:15px;
    }
}

/* Mobile */
@media(max-width:576px){

    .vrxMenHeroWrapX9{
        min-height:280px;
    }

    .vrxMenHeroContentX9{
        max-width:100%;
        padding:10px 0;
    }

    .vrxMenHeroTagX9{
        font-size:10px;
        padding:6px 12px;
    }

    .vrxMenHeroTitleX9{
        font-size:30px;
    }

    .vrxMenHeroTextX9{
        font-size:13px;
        line-height:1.6;
    }

    .vrxMenHeroBreadX9 span,
    .vrxMenHeroBreadX9 a{
        font-size:12px;
    }
}

.main-menu>nav>ul>li>.tp-submenu li a {
   
    padding: 1px 0;
   
}