body {
    font-family: 'Outfit', sans-serif;
    background-image: linear-gradient(to right, #ffcb5b26, #ffeded, #ffcb5b26);
}
h1, h2. h3, h4, h5{font-family: 'Oswald', sans-serif;}
img{max-width: 100%;}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p {
    color: #000000;
    font-size: 18px;
}
a{text-decoration: none;}
.m-auto{
    margin: 0 auto;
}

/**/
.zoom-in-zoom-out { 
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fa-spin {
    -webkit-animation: fa-spin 9s linear infinite !important;
    animation: fa-spin 15s linear infinite !important;
}
/**/
.call-part ul li {
    position: fixed;
    z-index: 999;
    right: -166px;
    width: 220px;
    list-style: none;
    transition: 1.4s;
    bottom: 30px;
}
.call-part ul li a {
   background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    padding: 0 0 6px 0;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border: solid 1px #ffffff;
    box-shadow: 0 0 1px 2px #08080838;
}
.call-part ul li a i {
    width: 45px;
    height: 50px;
        background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    padding: 12px 11px;
    font-size: 25px;
    margin-top: 5px;
    margin-left: 5px;
    color: #000000;
    margin-right: 10px;
}
.call-part ul li.whats {
    margin-top: 79px;
}
.call-part ul li.whats {
    bottom: 100px;
}
.call-part ul li.whats i {
    background: #129122;
    color: #fff;
}
.call-part ul li:hover {
    right: 0;
}
/**/


/* =========================================
   ASTRO VIVEK BHARGAV - TOP HEADER
========================================= */

.vb-top-header {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    border-bottom: 1px solid rgba(212, 160, 55, 0.45);
    overflow: hidden;
    z-index: 99;
}

/* Subtle Golden Background Glow */
.vb-top-header::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 100px;
    top: -60px;
    left: 20%;
    background: rgba(255, 190, 60, 0.15);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.vb-top-header .row {
    min-height: 43px;
}

/* =========================
   LEFT INFO
========================= */

.vb-top-info {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
}

.vb-top-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.35s ease;
}

/* First Item No Left Padding */
.vb-top-item:first-child {
    padding-left: 0;
}

/* Separator */
.vb-top-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-50%);
}

/* Icon */
.vb-top-icon {
    color: #ffbb28;
    font-size: 12px;
    transition: all 0.35s ease;
}

/* Hover */
.vb-top-item:hover {
    color: #f5c85b;
    transform: translateY(-1px);
}

.vb-top-item:hover .vb-top-icon {
    color: #ffd875;
    transform: scale(1.15);
}


/* =========================
   RIGHT CONTACT
========================= */

.vb-top-contact {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.vb-top-contact a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.vb-top-contact strong {
    color: #ffbb28;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.35s ease;
}
.vb-call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffbb28;
    font-size: 13px;
    animation: vbPhoneRing 2.5s ease-in-out infinite;
}

.vb-top-contact a:hover strong {
    color: #ffffff;
}

.vb-top-contact a:hover .vb-call-icon {
    color: #ffd875;
}


/* =========================
   PHONE ANIMATION
========================= */

@keyframes vbPhoneRing {

    0%,
    80%,
    100% {
        transform: rotate(0deg);
    }

    84% {
        transform: rotate(12deg);
    }

    88% {
        transform: rotate(-12deg);
    }

    92% {
        transform: rotate(8deg);
    }

    96% {
        transform: rotate(-8deg);
    }
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .vb-top-item {
        padding: 9px 7px;
        font-size: 11px;
        gap: 5px;
    }

    .vb-top-contact a {
        font-size: 11px;
        gap: 5px;
    }

    .vb-top-contact strong {
        font-size: 12px;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .vb-top-header {
        padding: 6px 0;
    }

    .vb-top-info {
        justify-content: center;
        flex-wrap: wrap;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 5px;
    }

    .vb-top-item {
        padding: 5px 8px;
        font-size: 10px;
    }

    .vb-top-item:first-child {
        padding-left: 8px;
    }

    .vb-top-item::after {
        display: none;
    }

    .vb-top-contact {
        justify-content: center;
        padding-top: 6px;
    }

    .vb-top-contact a {
        justify-content: center;
        font-size: 11px;
    }

    .vb-top-contact strong {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) { 
  .vb-top-info {
    gap: 0;
    border-bottom: 0;
    padding-bottom: 0px;
}
   .vb-top-item {
    font-size: 14px;
    padding: 4px 5px;
} 
    .vb-top-icon {
        font-size: 10px;
    } 
    .vb-call-text {
        display: none;
    } 
    .vb-top-contact strong {
        font-size: 13px;
    }
.vb-top-contact {
    display: none;
} 
}

/**/
.vb-main-header{
    background:#fff;
    padding:8px 0;
    position:relative;
    z-index:999;
    box-shadow:0 4px 20px rgba(61,0,11,.08);
}
.vb-menu-toggle i {
    background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    width: 40px;
    height: 40px;
    border: solid 1px #ac712d;
    border-radius: 4px;
    text-align: center;
    padding: 7px 0;
}
.vb-main-header .row{
    align-items:center;
}

.vb-logo img {
    width: 290px;
    max-width: 100%;
}

.vb-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
}

.vb-menu a {
    color: #1e1e1e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    transition: .3s;
}

.vb-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#d4a037;
    transition:.3s;
}

.vb-menu a:hover{
    color:#d4a037;
}

.vb-menu a:hover::after{
    width:100%;
}

.vb-header-btn{
    text-align:right;
}
.vb-header-btn a {
    display: inline-block;
    padding: 11px 18px;
    background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    color: #141414;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    border-radius: 60px;
    border: solid 1px #ac712d;
    width: 100%;
    text-align: center;
}
.vb-header-btn a i {
    margin-right: 2px;
}
.vb-header-btn a:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(212,160,55,.35);
}

.vb-menu-toggle{
    display:none;
    text-align:right;
    font-size:25px;
    color:#5b0011;
    cursor:pointer;
}
.vb-menu-toggle i{
    transition: transform .3s ease;
}

.vb-menu-toggle:hover i{
    transform: scale(1.1);
}
/* Responsive */
@media(max-width:991px){

    .vb-main-header{
        padding:10px 0;
    }

  
    .vb-menu-toggle{
        display:block;
    }

    .vb-menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
        padding:15px 20px;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        box-shadow:0 10px 20px rgba(0,0,0,.15);
    }

    .vb-menu.active{
        display:flex;
    }

    .vb-menu a{
        width:100%;
        color:#fff;
        padding:12px 5px;
        border-bottom:1px solid rgba(255,255,255,.1);
    }

    .vb-menu a:hover{
        color:#f6cf69;
        padding-left:12px;
    }

    .vb-header-btn{
        display:none;
    }
}

/*marquee css*/
.marquee-bar { 
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
    font-style: italic;
}
.marquee-back {
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    border-bottom: solid 1px #c70a45;
}
  .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
  }

  .marquee-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
.dot {
    width: 8px;
    height: 8px;
    background: #e6bc23;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Duplicate content for seamless loop */
  .marquee-inner {
    display: flex;
  }

/*marquee css End*/


/* =========================================
   TOP SERVICES SECTION
========================================= */
#awards {
    border-top: solid 1px #ffd884;
}
.vb-services-section {
    padding: 40px 0;
    background: #fffaf5;
    overflow: hidden;
    border-bottom: solid 1px #ffd884;
}
.vb-services-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}
.vb-services-heading span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #b50a3f;
    letter-spacing: 1px;
}

.vb-services-heading h2 {
    margin: 0 0 12px;
    font-size: 35px;
    line-height: 1.2;
    color: #550311;
    font-weight: 700;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vb-services-heading p {
    margin: 0;
    font-size: 16px;
    color: #1b1b36;
    line-height: 1.4;
}


/* Service Box */

.vb-service-box {
    position: relative;
    background: #ffffff;
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(85, 3, 17, 0.10);
    transition: all 0.4s ease;
}

.vb-service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(85, 3, 17, 0.18);
}


/* Image */

.vb-service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vb-service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(85, 3, 17, 0.45),
        transparent 65%
    );
}

.vb-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vb-service-box:hover .vb-service-img img {
    transform: scale(1.08);
}


/* Content */

.vb-service-content {
    position: relative;
    padding: 32px 22px 25px;
}

.vb-service-icon {
    position: absolute;
    top: -30px;
    left: 22px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    color: #550311;
    font-size: 22px;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 18px rgba(172, 113, 45, 0.30);
    transition: all 0.4s ease;
}

.vb-service-box:hover .vb-service-icon {
    transform: rotateY(360deg);
}

.vb-service-content h3 {
    margin: 8px 0 8px;
    font-size: 22px;
    color: #550311;
    font-weight: 700;
}
.vb-service-content p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #1b1b36;
    line-height: 1.4;
}
.vb-service-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #550311;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.vb-service-content a i {
    transition: transform 0.3s ease;
}

.vb-service-content a:hover {
    color: #ac712d;
}

.vb-service-content a:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .vb-services-section {
        padding: 40px 0;
    }

    .vb-services-heading h2 {
        font-size:28px;
    }

    .vb-service-img {
        height: 240px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .vb-services-section {
        padding: 35px 0;
    }

    .vb-services-heading {
        margin-bottom: 30px;
    }

    .vb-services-heading span {
        font-size: 14px;
    }

    .vb-services-heading h2 {
        font-size: 22px;
    }

    .vb-services-heading p {
        font-size: 16px;
    }

    .vb-service-img {
        height: 230px;
    }

    .vb-service-content {
        padding: 32px 20px 22px;
    }

    .vb-service-content p {
        min-height: auto;
    }
    .vb-service-content p { 
    font-size: 16px; 
}
.vb-service-content a { 
    font-size: 16px; 
    letter-spacing: 0.2px;
}

}

/*About Us Css*/

.vb-about-simple{
    padding:50px 0;
    background:#fff;
}

.vb-about-simple .row{
    align-items:center;
}

.vb-about-simple-img{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.vb-about-simple-img img{
    width:100%;
    display:block;
    transition:.5s ease;
}

.vb-about-simple-img:hover img{
    transform:scale(1.04);
}

.vb-about-simple-content{
    padding-left:45px;
}

.vb-about-simple-content > span{
    display:inline-block;
    margin-bottom:10px;
    color:#b50a3f;
    font-size:15px;
    font-weight:700;
}

.vb-about-simple-content h2 {
    margin: 0 0 12px;
    color: #550311;
    font-size: 34px;
    line-height: 1.2;
}

.vb-about-simple-content h2 strong{
    display:block;
    color:#b50a3f;
}

.vb-about-simple-content > p {
    margin-bottom: 8px;
    color: #1b1b36;
    font-size: 16px;
    line-height: 1.8;
}
.card-text {
    background: #b50a3f0d;
    padding: 10px 18px;
    border-left: solid 2px #b50a3f;
}
 
.vb-about-simple-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 25px;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: .3s ease;
    margin-top: 10px;
    border: solid 2px #b50a3f;
}

.vb-about-simple-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(181,10,63,.25);
}

@media(max-width:991px){

    .vb-about-simple{
        padding:40px 0;
    }

    .vb-about-simple-content{
        padding-left:25px;
    }

    .vb-about-simple-content h2{
        font-size:28px;
    }

    .vb-about-simple-list{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){

    .vb-about-simple{
        padding:35px 0;
    }

    .vb-about-simple-img{
        margin-bottom:28px;
    }

    .vb-about-simple-content{
        padding-left:0;
    }

    .vb-about-simple-content h2{
        font-size:24px;
    }

    .vb-about-simple-content > p{
        font-size:16px;
    }
}

/*video css */
.vb-local-video-section {
    padding: 40px 0;
    background-image: url(../images/back-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.vb-local-video-heading{
    max-width:750px;
    margin:0 auto 25px;
    text-align:center;
}

.vb-local-video-heading span{
    display:inline-block;
    margin-bottom:8px;
    color:#fff;
    font-size:18px;
    font-weight:600;
}
.vb-local-video-box video{
    display:block;
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;
    background:#000;
}
.vb-local-video-heading h2 {
    margin: 0 0 8px;
    font-size: 35px;
    font-weight: 700;
       background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vb-local-video-heading p{
    margin:0;
    color:#fff;
    font-size:18px;
}

.vb-local-video-box {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 14px;
    background: #000;
    box-shadow: 0 10px 30px rgba(85,3,17,.15);
    transition: .35s ease;
    border: solid 2px #ffbb28;
}

.vb-local-video-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(181,10,63,.22);
}

 

/* Tablet */

@media(max-width:991px){

    .vb-local-video-section{
        padding:60px 0;
    }

    .vb-local-video-heading h2{
        font-size:32px;
    }
}

/* Mobile */

@media(max-width:767px){

    .vb-local-video-section{
        padding:45px 0;
    }

    .vb-local-video-heading{
        margin-bottom:28px;
    }

    .vb-local-video-heading h2{
        font-size:27px;
    }

    .vb-local-video-heading p{
        font-size:14px;
    }
}

/*video css End*/


/*About Us Css End*/
.vb-header-btn.btn-center a {
    margin: 0 auto;
    width: fit-content;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 3px !important;
}

/*services*/
/* =====================================
   OUR SERVICES SECTION
===================================== */

.vb-all-services {
    padding: 40px 0 20px;
    background: #fff8f5;
}

.vb-all-services-heading {
    max-width: 700px;
    margin: 0 auto 20px;
    text-align: center;
}

.vb-all-services-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #b50a3f;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.vb-all-services-heading h2 {
    margin: 0 0 12px;
    color: #550311;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vb-all-services-heading p {
    margin: 0;
    color: #1b1b36;
    font-size: 18px;
    line-height: 1.4;
}


/* Service Card */

.vb-all-service-card {
    position: relative;
    height: calc(100% - 25px);
    margin-bottom: 25px;
    padding: 30px 18px;
    background: #ffffff;
    border: 1px solid rgba(172, 113, 45, 0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.vb-all-service-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.vb-all-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(181, 10, 63, 0.30);
    box-shadow: 0 16px 35px rgba(85, 3, 17, 0.12);
}

.vb-all-service-card:hover::before {
    transform: scaleX(1);
}


/* Icon */

.vb-all-service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    color: #550311;
    font-size: 30px;
    transition: all 0.35s ease;
    border: solid 1px #ac712d;
}
.vb-all-service-card:hover .vb-all-service-icon {
    transform: rotate(-6deg) scale(1.08);
}


/* Content */

.vb-all-service-card h3 {
    margin: 0 0 10px;
    color: #550311;
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vb-all-service-card p {
    margin: 0 0 18px;
    color: #1b1b36;
    font-size: 16px;
    line-height: 1.4;
}
.vb-all-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b50a3f;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vb-all-service-card a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.vb-all-service-card a:hover {
    color: #ac712d;
}

.vb-all-service-card a:hover i {
    transform: translateX(5px);
}


/* Tablet */

@media (max-width: 991px) {

    .vb-all-services {
        padding: 60px 0 35px;
    }

    .vb-all-services-heading h2 {
        font-size: 32px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .vb-all-services {
        padding: 45px 0 25px;
    }

    .vb-all-services-heading {
        margin-bottom: 28px;
    }

    .vb-all-services-heading h2 {
        font-size: 27px;
    }

 

    .vb-all-service-card {
        height: auto;
        padding: 25px 21px;
    }

    .vb-all-service-card h3 {
        font-size: 19px;
    }
}

/*services End*/

/*awards*/
.awards{
    background: #fff !important;
}
.aw-card img {
    border: solid 2px #ffb400;
    border-radius: 12px;
}
.aw-card {
    padding: 8px;
}
.owl-theme .owl-controls .owl-page span {
    background: #b50a3f !important;
}
.certificate{
    margin-top: 25px;
}
.certificate img {
    border: solid 2px #ffb400;
    border-radius: 12px;
}
/*awards End*/

/* =====================================
   WHY CHOOSE US
===================================== */

.vb-why-section {
    padding: 40px 0;
    background-image: url(../images/back-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.vb-why-section .row {
    align-items: center;
}


/* Left Content */

.vb-why-content {
    padding-right: 45px;
}

.vb-why-content > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vb-why-content h2 {
    margin: 0 0 18px;
    color: #550311;
        background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
}
 
.vb-why-content p {
    margin: 0 0 25px;
        color: #fff;
    font-size: 16px;
    line-height: 1.4;
}


/* Button */

.vb-why-btn {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    color: #141414;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    border-radius: 60px;
    border: solid 1px #ac712d;
    width: fit-content;
    text-align: center;
}

.vb-why-btn:hover {
    color: #000;
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(181, 10, 63, .25);
}


/* Right List */

.vb-why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.vb-why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border: 1px solid rgba(172, 113, 45, .22);
    border-radius: 10px;
    background: #fffaf7;
    transition: .35s ease;
}

.vb-why-item:hover {
    transform: translateY(-5px);
    border-color: #b50a3f;
    box-shadow: 0 12px 28px rgba(85, 3, 17, .10);
}


/* Icon */

.vb-why-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #ac712d;
    background: linear-gradient(
        34deg,
        #ac712d,
        #ffd055,
        #ac712d
    );

    color: #550311;
    border-radius: 10px;
    font-size: 20px;
    transition: .35s ease;
}

.vb-why-item:hover .vb-why-icon {
    transform: rotate(-6deg) scale(1.08);
}


/* Text */

.vb-why-item h3 {
    margin: 0 0 6px;
    color: #b50a3f;
    font-size: 18px;
    font-weight: 700;
}

.vb-why-item p {
    margin: 0;
        color: #1b1b36;
    font-size: 16px;
    line-height: 1.4;
}


/* Tablet */

@media (max-width: 991px) {

    .vb-why-section {
        padding: 60px 0;
    }

    .vb-why-content {
        padding-right: 0;
        margin-bottom: 35px;
        text-align: center;
    }

    .vb-why-content h2 {
        font-size: 33px;
    }

    .vb-why-content p {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }
}


/* Mobile */

@media (max-width: 767px) {

    .vb-why-section {
        padding: 45px 0;
    }

    .vb-why-content {
        margin-bottom: 28px;
    }

    .vb-why-content h2 {
        font-size: 24px;
    }

 

    .vb-why-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vb-why-item {
        padding: 17px;
    }

    .vb-why-icon {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .vb-why-item h3 {
        font-size: 16px;
    }
}

/**/
/* =====================================
   HOW IT WORKS SECTION
===================================== */

.vb-how-section{
    padding:40px 0;
    background:#fff8f5;
    overflow:hidden;
}

.vb-how-heading{
    max-width:760px;
    margin:0 auto 25px;
    text-align:center;
}

.vb-how-heading span{
    display:inline-block;
    margin-bottom:8px;
    color:#b50a3f;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
}

.vb-how-heading h2{
    margin:0 0 12px;
    color:#550311;
    font-size:39px;
    line-height:1.2;
    font-weight:700;
        background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vb-how-heading p{
    margin:0;
   color: #1b1b36;
    font-size: 16px;
    line-height: 1.4;
}


/* Step */

.vb-how-step{
    position:relative;
    height:calc(100% - 25px);
    margin-bottom:25px;
    padding:32px 22px 28px;
    text-align:center;
    background:#fff;
    border:1px solid rgba(172,113,45,.22);
    border-radius:14px;
    transition:.35s ease;
    overflow:hidden;
}

.vb-how-step::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:4px;
    background:linear-gradient(34deg,#ac712d,#ffd055,#ac712d);
    transform:scaleX(0);
    transition:.35s ease;
}

.vb-how-step:hover{
    transform:translateY(-7px);
    border-color:#b50a3f;
    box-shadow:0 15px 35px rgba(85,3,17,.12);
}

.vb-how-step:hover::after{
    transform:scaleX(1);
}


/* Number */

.vb-how-number{
    position:absolute;
    top:12px;
    right:15px;
    color:rgba(181,10,63,.10);
    font-size:52px;
    line-height:1;
    font-weight:800;
}


/* Icon */

.vb-how-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;

    background:linear-gradient(
        34deg,
        #ac712d,
        #ffd055,
        #ac712d
    );

    color:#550311;
    font-size:26px;
    transition:.4s ease;
}

.vb-how-step:hover .vb-how-icon{
    transform:rotateY(360deg);
}


/* Content */

.vb-how-step h3{
    margin:0 0 10px;
    color:#b50a3f;
    font-size:20px;
    font-weight:700;
}

.vb-how-step p{
    margin:0;
    color: #1b1b36;
    font-size: 16px;
    line-height: 1.4;
}

 

/* Tablet */

@media(max-width:991px){

    .vb-how-section{
        padding:60px 0;
    }

    .vb-how-heading h2{
        font-size:32px;
    }
}


/* Mobile */

@media(max-width:767px){

    .vb-how-section{
        padding:45px 0;
    }

    .vb-how-heading{
        margin-bottom:28px;
    }

    .vb-how-heading h2{
        font-size:27px;
    }

  

    .vb-how-step{
        height:auto;
        padding:26px 20px 24px;
    }

    .vb-how-number{
        font-size:44px;
    }

    .vb-how-icon{
        width:62px;
        height:62px;
        font-size:23px;
    }

    .vb-how-step h3{
        font-size:18px;
    }
}

.vivek-ji {
    border: solid 2px #ffb400;
    border-radius: 12px;
}
.img-card {
    border: solid 2px #ffb400;
    border-radius: 12px;
}

/**/
/* =====================================
   CLIENT TESTIMONIALS
===================================== */

.vb-testimonial-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
    border-top: solid 1px #ffd884;
}
.vb-testimonial-heading{
    max-width:760px;
    margin:0 auto 22px;
    text-align:center;
}

.vb-testimonial-heading span{
    display:inline-block;
    margin-bottom:8px;
    color:#b50a3f;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
}

.vb-testimonial-heading h2 {
    margin: 0 0 12px;
    color: #550311;
    font-size: 35px;
    font-weight: 700;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vb-testimonial-heading p{
    margin:0;
        color: #1b1b36;
    font-size: 16px;
    line-height: 1.4;
}


/* Slider */

.vb-testimonial-slider{
    position:relative;
    padding:0 50px;
}

.vb-testimonial-track-wrap{
    overflow:hidden;
}

.vb-testimonial-track{
    display:flex;
    transition:transform .55s ease;
}

.vb-testimonial-slide{
    flex:0 0 33.333%;
    padding:10px;
}


/* Card */

.vb-testimonial-card{
    height:100%;
    padding:26px;
    background:#fff;
    border:1px solid rgba(172,113,45,.20);
    border-radius:14px;
    transition:.35s ease;
}

.vb-testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(85,3,17,.12);
    border-color:#b50a3f;
}


/* Top */

.vb-testimonial-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.vb-testimonial-user{
    display:flex;
    align-items:center;
    gap:12px;
}

.vb-testimonial-avatar{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(34deg,#ac712d,#ffd055,#ac712d);
    color:#550311;
    font-size:18px;
}

.vb-testimonial-user h3{
    margin:0 0 3px;
    color:#550311;
    font-size:17px;
    font-weight:700;
}

.vb-testimonial-user span{
    color:#1b1b36;
    font-size:14px;
}

.vb-quote{
    color:rgba(181,10,63,.14);
    font-size:32px;
}


/* Stars */

.vb-testimonial-stars{
    margin:18px 0 12px;
}

.vb-testimonial-stars i{
    color:#d69b31;
    font-size:13px;
}


/* Review */

.vb-testimonial-card > p{
    margin:0 0 20px;
        color: #1b1b36;
    font-size: 16px;
    line-height: 1.4;
}


/* Service Label */

.vb-testimonial-service{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 12px;
    background:#fff3f1;
    color:#b50a3f;
    border-radius:25px;
    font-size:12px;
    font-weight:700;
}


/* Arrows */

.vb-testimonial-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:linear-gradient(
        90deg,
        #550311 7%,
        #b50a3f 34%,
        #b50a3f 71%,
        #550311 101%
    );
    color:#fff;
    cursor:pointer;
    z-index:5;
    transition:.3s ease;
}

.vb-testimonial-arrow:hover{
    transform:translateY(-50%) scale(1.08);
    box-shadow:0 8px 20px rgba(181,10,63,.25);
}

.vb-testimonial-prev{
    left:0;
}

.vb-testimonial-next{
    right:0;
}


/* Tablet */

@media(max-width:991px){

    .vb-testimonial-section{
        padding:60px 0;
    }

    .vb-testimonial-heading h2{
        font-size:32px;
    }

    .vb-testimonial-slide{
        flex:0 0 50%;
    }
}


/* Mobile */

@media(max-width:767px){

    .vb-testimonial-section{
        padding:45px 0;
    }

    .vb-testimonial-heading{
        margin-bottom:28px;
    }

    .vb-testimonial-heading h2{
        font-size:27px;
    }

  

    .vb-testimonial-slider{
        padding:0 35px;
    }

    .vb-testimonial-slide{
        flex:0 0 100%;
        padding:5px;
    }

    .vb-testimonial-card{
        padding:21px;
    }

    .vb-testimonial-arrow{
        width:34px;
        height:34px;
        font-size:12px;
    }
}

/**/

/* ==========================
Contact Us
========================== */
.consultation-luxury {
    padding: 40px 0;
    padding: 40px 0;
    background-image: url(../images/back-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.consultation-box{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.consultation-info {
    height: 100%;
    padding: 25px 20px;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    color: #fff;
    border-radius: 15px;
}

.small-heading {
    color: #fff; 
    font-weight: 700;
    text-transform: uppercase;
}
.consultation-info h2 {
    font-size: 30px;
    margin: 10px 0;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(34deg, #f1a349, #ffd055, #f1a349);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.consultation-info p {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 16px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 1px solid #ffffff47;
    background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b50a3f;
    font-size: 22px;
    background: #ffffff;
}

.contact-card h6{
    margin:0;
    font-size:18px;
    font-weight:600;
    color: #550311;
}

.contact-card span {
    color: #550311;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.aword {
    border: solid 2px #470089;
    border-radius: 14px;
    margin-bottom: 20px;
}
/* RIGHT FORM */
.consultation-form {
    padding: 20px 40px;
    background: #fff;
}
.form-heading {
    margin-bottom: 25px;
}
.form-heading span {
    color: #b50a3f;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}
.form-heading h3 {
    font-size: 30px;
    margin-top: 10px;
    font-weight: 700;
     background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* INPUTS */

.input-box{
    position:relative;
    margin-bottom:22px;
}

.input-box i {
    position: absolute;
    left: 18px;
    top: 20px;
    font-size: 20px;
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.input-box input,
.input-box textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:14px;
    background:#fff;
    padding:16px 18px 16px 50px;
    transition:.3s;
}

.input-box textarea{
    resize:none;
}

.input-box input:focus,
.input-box textarea:focus{
    outline:none;
    border-color:#b50a3f;
    box-shadow:0 0 0 4px rgba(255,146,9,.10);
}

.input-box label{
    position:absolute;
    left:50px;
    top:16px;
    color:#777;
    transition:.3s;
    pointer-events:none;
}

.input-box input:focus + label, 
.input-box input:valid + label,
 .input-box textarea:focus + label,
  .input-box textarea:valid + label {
    top: -10px;
    left: 18px;
    background: #fff;
    padding: 0 8px;
    font-size: 13px;
    color: #b50a3f;
    font-weight: 600;
}

/* BUTTON */
.submit-btn {
    width: 215px;
    height: 55px;
    border: none;
    border-radius: 114px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s; 
    background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    color: #fff;
}
.submit-btn:hover {
  background: linear-gradient(34deg, #ac712d, #ffd055, #ac712d);
    color: #141414;
}

.submit-btn i{
    margin-right:8px;
}

/* MOBILE */


@media(max-width:991px){

    .consultation-info{
        padding:35px 25px;
    }

    .consultation-form{
        padding:35px 25px;
    }

    .consultation-info h2{
        font-size:32px;
    }

    .form-heading h3{
        font-size:25px;
    }
     .form-heading h3 br{
       display: none;
    }
    nav.main-menu {
    background: #fff9ee;
    border: solid 1px #e9e9e9;
    border-radius: 12px;
    margin-top: 6px;
}
.main-menu ul li a {
    color: #000;
    font-size: 17px;
}

}
.review-img {
    border-radius: 12px;
    border: solid 2px #470089;
}
.review {
    padding: 5px;
}

@media(max-width:767px){
.astro-box {
    width: 290px;
    height: 290px;
    margin-bottom: 20px;
}
.faq-content-box h2 {
    font-size: 25px;
}
 #faq {
    text-align: center;
}
#faqAccordion {
    text-align: left !important;
}
.top-header { 
    padding: 4px 0 0 0;
}
.top-contact { 
    margin-bottom: 5px !important;
}
.consultation-info {
    padding: 25px 12px;
}
.consultation-info h2 {
    font-size: 26px;
    font-weight: 700;
}

.consultation-info p { 
    margin-bottom: 20px;
    line-height: 25px;
    font-size: 17px;
}
.contact-card h6 { 
    font-size: 22px; 
}
 
}

/**/

/* =====================================
   FINAL CTA
===================================== */

.vb-final-cta {
    padding: 40px 0;
    background: linear-gradient(
        90deg,
        #550311 7%,
        #b50a3f 34%,
        #b50a3f 71%,
        #550311 101%
    );
}
.vb-final-cta .row{
    align-items:center;
}

.vb-final-cta-content span{
    display:inline-block;
    margin-bottom:6px;
    color:#ffd055;
    font-size:16px;
    font-weight:600;
}

.vb-final-cta-content h2{
    margin:0 0 8px;
    color:#fff;
    font-size:34px;
    font-weight:700;
}

.vb-final-cta-content p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}
.vb-final-cta-buttons{
    display:flex;
    justify-content:flex-end;
    gap:12px;
}

.vb-final-cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .3s ease;
}
.vb-final-call{
    background:linear-gradient(34deg,#ac712d,#ffd055,#ac712d);
    color:#550311;
}

.vb-final-whatsapp{
    border:1px solid #ffd055;
    color:#fff;
}

.vb-final-cta-buttons a:hover{
    transform:translateY(-3px);
}

.vb-final-call:hover{
    color:#550311;
    box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.vb-final-whatsapp:hover{
    background:#fff;
    color:#550311;
}


/* =====================================
   FOOTER
===================================== */
.vb-footer {
    padding: 40px 0 0;
    background: #550311;
    color: #fff;
    border-top: solid 1px #f8c85270;
}
.vb-footer-about img {
    background: #fff;
    border-radius: 50px;
    border: solid 1px #ac712d;
    padding: 12px;
    width: 250px;
    margin-bottom: 15px;
}
.vb-footer-about p {
    max-width: 360px;
    margin: 0 0 18px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}


/* Social */

.vb-footer-social{
    display:flex;
    gap:9px;
}

.vb-footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(34deg,#ac712d,#ffd055,#ac712d);
    color:#550311;
    text-decoration:none;
    transition:.3s ease;
    border: solid 1px #ac712d;
}

.vb-footer-social a:hover{
    transform:translateY(-4px);
}


/* Headings */

.vb-footer h3 {
    margin: 0 0 18px;
    color: #ffd055;
    font-size: 20px;
    font-weight: 700;
}
/* Links */

.vb-footer-links{
    display:flex;
    flex-direction:column;
}

.vb-footer-links a {
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: .3s ease;
}

.vb-footer-links a:hover{
    color:#ffd055;
    padding-left:5px;
} 
/* Contact */
.vb-footer-contact a, .vb-footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
}
.vb-footer-contact i{
    margin-top:3px;
    color:#ffd055;
}

.vb-footer-contact a:hover{
    color:#fff;
}


/* Bottom */

.vb-footer-bottom{
    margin-top:45px;
    padding:18px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-top:1px solid rgba(255,255,255,.12);
}

.vb-footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}
.vb-footer-bottom div{
    display:flex;
    gap:18px;
}

.vb-footer-bottom a{
     color: #ffffff;
    font-size: 14px;
    text-decoration:none;
    transition:.3s ease;
}

.vb-footer-bottom a:hover{
    color:#ffd055;
}


/* =====================================
   TABLET
===================================== */

@media(max-width:991px){

    .vb-final-cta-content h2{
        font-size:28px;
    }

    .vb-final-cta-buttons{
        flex-direction:column;
        align-items:flex-end;
    }

    .vb-final-cta-buttons a{
        min-width:170px;
    }

    .vb-footer{
        padding-top:45px;
    }

    .vb-footer-about,
    .vb-footer-links,
    .vb-footer-contact{
        margin-bottom:30px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media(max-width:767px){

    .vb-final-cta{
        padding:35px 0;
        text-align:center;
    }

    .vb-final-cta-content h2{
        font-size:26px;
    }

  
    .vb-final-cta-buttons{
        margin-top:22px;
        align-items:center;
    }

    .vb-final-cta-buttons a{
        width:70%;
    }

    .vb-footer{
        padding-top:40px;
    }

    .vb-footer-about{
        text-align:center;
    }

    .vb-footer-about p{
        margin-left:auto;
        margin-right:auto;
    }

    .vb-footer-social{
        justify-content:center;
    }

    .vb-footer-bottom{
        margin-top:20px;
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .vb-footer-bottom div{
        flex-wrap:wrap;
        justify-content:center;
        gap:10px 15px;
    }
}

/**/

/* =====================================
   INNER PAGE HERO
===================================== */

.vb-inner-hero {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: #550311;
}

/* subtle astrology effect */
.vb-inner-hero::before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    right:-80px;
    top:50%;
    transform:translateY(-50%);
    border:1px solid rgba(255,208,85,.18);
    border-radius:50%;
}

.vb-inner-hero::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    right:-25px;
    top:50%;
    transform:translateY(-50%);
    border:1px dashed rgba(255,208,85,.18);
    border-radius:50%;
}

.vb-inner-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.vb-inner-hero-content > span{
    display:inline-block;
    margin-bottom:8px;
    color:#ffd055;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
}

.vb-inner-hero-content h1{
    margin:0 0 16px;
    color:#fff;
    font-size:48px;
    line-height:1.15;
    font-weight:700;
}

.vb-inner-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.vb-inner-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: .3s ease;
}
.vb-inner-breadcrumb a:hover{
    color:#ffd055;
}

.vb-inner-breadcrumb i{
    color:#ffd055;
    font-size:11px;
}

.vb-inner-breadcrumb strong{
    color:#ffd055;
    font-size:14px;
    font-weight:600;
}


/* Tablet */

@media(max-width:991px){
 
    .vb-inner-hero-content h1{
        font-size:40px;
    }
}


/* Mobile */

@media(max-width:767px){

    .vb-inner-hero{
        padding:30px 0;
    }

    .vb-inner-hero-content > span{
        font-size:13px;
    }

    .vb-inner-hero-content h1{
        font-size:31px;
    }

    .vb-inner-breadcrumb a,
    .vb-inner-breadcrumb strong{
        font-size:12px;
    }

    .vb-inner-hero::before{
        width:240px;
        height:240px;
        right:-120px;
    }

    .vb-inner-hero::after{
        width:160px;
        height:160px;
        right:-70px;
    }
}


/**/

.vb-policy-section {
    padding: 40px 0;
    background: #fff;
}

.vb-policy-section .row{
    justify-content:center;
}

.vb-policy-content{
    color:#666;
}

.vb-policy-content h2{
    margin:0 0 22px;
    color:#550311;
    font-size:35px;
    font-weight:700;
        background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vb-policy-content h3{
    margin:28px 0 10px;
    color:#550311;
    font-size:25px;
    font-weight:700;
        background: linear-gradient(90deg, #550311 7%, #b50a3f 34%, #b50a3f 71%, #550311 101%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vb-policy-content p{
    margin:0 0 15px;
       font-size: 16px;
    color: #1b1b36;
    line-height: 1.4; 
}

.vb-policy-content a{
    color:#b50a3f;
    font-weight:700;
    text-decoration:none;
}

.vb-policy-content a:hover{
    color:#ac712d;
}


/* Tablet */

@media(max-width:991px){

    .vb-policy-section{
        padding:55px 0;
    }

    .vb-policy-content h2{
        font-size:30px;
    }
}


/* Mobile */

@media(max-width:767px){

    .vb-policy-section{
        padding:40px 0;
    }

    .vb-policy-content h2{
        font-size:27px;
    }

    .vb-policy-content h3{
        margin-top:23px;
        font-size:18px;
    }

    .vb-policy-content p{
        font-size:14px;
        line-height:1.75;
    }
}


/**/





@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px !important;
    }
}
 

@media (max-width:767px) { 
.marquee-item { 
    font-size: 13px;
}
.dot { 
    margin-right: 8px; 
}
 .m-none {
    display: none;
}
.vivek-ji { 
    margin-top: 25px;
}
.vb-footer-links a { 
    font-size: 14px; 
}

}


@media (max-width: 370px) { 
.vb-top-item {
    font-size: 12px; 
}
 .vb-footer-bottom p { 
    font-size: 12px;
}
.vb-footer-bottom a { 
    font-size: 12px; 
}
}