.elementor-17342 .elementor-element.elementor-element-e8a9460{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-30ed662 *//* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f6f2ea;
    color:#111;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================================================
   CONTAINER
========================================================= */

.vs-container{
    width:92%;
    max-width:1300px;
    margin:auto;
}

/* =========================================================
   HEADER
========================================================= */

.vs-topbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(2,14,35,0.92);
    backdrop-filter:blur(10px);
}

.vs-topbar-wrap{
    width:92%;
    max-width:1400px;
    margin:auto;
    padding:18px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.vs-brand img{
    width:120px;
}

.vs-nav{
    display:flex;
    gap:35px;
}

.vs-nav a{
    color:#ddd;
    font-size:15px;
}

.vs-head-btn{
    background:#d4a14a;
    color:#081225;
    padding:14px 30px;
    border-radius:60px;
    font-weight:700;
}

/* =========================================================
   HERO
========================================================= */

.vs-hero{
    min-height:100vh;
    background:url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    padding-top:120px;
}

.vs-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(3,10,25,0.95),rgba(3,10,25,0.6));
}

.vs-hero-wrap{
    position:relative;
    z-index:2;

    width:92%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr .75fr;
    gap:80px;
    align-items:center;
}

.vs-tag{
    color:#d4a14a;
    letter-spacing:3px;
    font-size:12px;
    text-transform:uppercase;
}

.vs-hero-left h1{
    font-size:40px;
    line-height:.95;
    color:#fff;
    margin:25px 0;
    font-family:'Cormorant Garamond',serif;
}

.vs-hero-left h1 span{
    color:#d4a14a;
}

.vs-hero-left p{
    color:#d7d7d7;
    font-size:16px;
    line-height:2;
    margin-bottom:35px;
    max-width:700px;
}

.vs-btn-group{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* GRID */
.vs-structure-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:40px;
}

/* CARD */
.vs-structure-card{
    position:relative;
    background:#fff;
    border:1px solid #e5e5e5;
    padding:42px 28px 32px;
    transition:0.3s ease;
    min-height:260px;
    overflow:visible;
}

.vs-structure-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}




.vs-doc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

/* CARD */
.vs-doc-card{
    background:#fff;
    border-radius:12px;
    padding:14px 16px;
    box-shadow:0 4px 10px rgba(0,0,0,0.06);
    border-top:4px solid #ffb300;
    transition:0.25s ease;

    /* IMPORTANT: removes extra bottom space feel */
    display:flex;
    flex-direction:column;
}

/* Hover */
.vs-doc-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 18px rgba(0,0,0,0.12);
}

/* TITLE */
.vs-doc-card h3{
    font-size:16px;
    margin:0 0 8px 0;   /* 🔥 reduced bottom space */
    color:#222;
    display:flex;
    align-items:center;
    gap:6px;
}

.vs-doc-card h3::before{
    content:"📄";
    font-size:14px;
}

/* LIST */
.vs-doc-card ul{
    list-style:none;
    padding:0;
    margin:0;   /* 🔥 removes default spacing */
}

.vs-doc-card ul li{
    padding:6px 0;   /* tight spacing */
    font-size:13px;
    color:#555;
    position:relative;
    padding-left:16px;
    border-bottom:1px dashed #eee;
    line-height:1.3;
}

.vs-doc-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#ff9800;
    font-size:12px;
}

.vs-doc-card ul li:last-child{
    border-bottom:none;
    padding-bottom:0; /* 🔥 removes last gap */
}

/* RESPONSIVE */
@media(max-width:992px){
    .vs-doc-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .vs-doc-grid{
        grid-template-columns:1fr;
    }
}


/* ACTIVE CARD */
.vs-structure-card.active{
    background:#071a3d;
    color:#fff;
    border-color:#071a3d;
}

.vs-structure-card.active p,
.vs-structure-card.active li{
    color:#d8dceb;
}

/* BADGE */
.vs-badge{
    position:absolute;
    top:0;
    right:18px;
    transform:translateY(-50%);
    background:#d8a84d;
    color:#000;
    font-size:11px;
    font-weight:700;
    padding:8px 18px;
    letter-spacing:1px;
    line-height:1;
    border-radius:2px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:32px;
    box-shadow:0 4px 12px rgba(0,0,0,0.12);
}

/* HEADING */
.vs-structure-card h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.2;
}

.vs-structure-card p{
    font-size:15px;
    color:#777;
    margin-bottom:30px;
}

/* LIST */
.vs-structure-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.vs-structure-card ul li{
    position:relative;
    padding:14px 0 14px 18px;
    border-top:1px solid rgba(0,0,0,0.08);
    color:#222;
    font-size:15px;
}

.vs-structure-card.active ul li{
    border-color:rgba(255,255,255,0.12);
}

.vs-structure-card ul li::before{
    content:"—";
    position:absolute;
    left:0;
    color:#d8a84d;
}

/* RESPONSIVE */
@media(max-width:991px){

    .vs-structure-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .vs-structure-grid{
        grid-template-columns:1fr;
    }

    .vs-structure-card{
        padding:38px 22px 28px;
    }

    .vs-structure-card h3{
        font-size:26px;
    }

}

.vs-main-btn{
    background:#d4a14a;
    color:#081225;
    padding:18px 34px;
    border-radius:60px;
    font-weight:700;
}

.vs-outline-btn{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:18px 34px;
    border-radius:60px;
}

.vs-stat-wrap{
    display:flex;
    gap:50px;
    margin-top:50px;
    flex-wrap:wrap;
}

.vs-stat h3{
    color:#d4a14a;
    font-size:42px;
}

.vs-stat p{
    color:#ddd;
}

/* =========================================================
   FORM
========================================================= */

.vs-form-card{
    background:#fff;
    padding:45px;
    border-radius:30px;
    margin-bottom: 30px;
}

.vs-form-card h3{
    font-size:42px;
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;
}

.vs-form-card p{
    margin-bottom:25px;
    color:#666;
}

.vs-field{
    width:100%;
    height:58px;
    border:none;
    background:#f4f4f4;
    padding:0 18px;
    border-radius:14px;
    margin-bottom:18px;
}

.vs-submit{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:#081225;
    color:#fff;
    font-weight:700;
}
.elementor-widget-form .elementor-button[type="submit"] {
    background-color: #d4a14a;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.vs-title{
    text-align:center;
    margin-bottom:70px;
}

.vs-title span{
    color:#d4a14a;
    letter-spacing:3px;
    font-size:12px;
    text-transform:uppercase;
}

.vs-title h2{
    font-size:50px;
    margin-top:18px;
    color:#081225;
    font-family:'Cormorant Garamond',serif;
}

/* =========================================================
   REGISTER SECTION
========================================================= */

.vs-register-section{
    padding:120px 0;
}

.vs-register-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.vs-register-card{
    background:#fff;
    padding:40px;
    border-radius:26px;
}

.vs-register-icon{
    font-size:38px;
    margin-bottom:20px;
}

.vs-register-card h3{
    font-size:28px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.vs-register-card p{
    color:#555;
    line-height:1.8;
}


@media (max-width: 768px) {
    .vs-main-btn,
    .vs-outline-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}


@media (max-width: 768px) {
    .vs-stat-wrap {
        justify-content: center;
        gap: 0px;
        flex-wrap: wrap;
        margin-top: 15px;
    }
}
@media (max-width: 768px) {
    .vs-hero-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
@media (max-width: 768px) {
    .vs-register-section {
        padding: 50px 0 0 0; /* top right bottom left */
    }
}


@media (max-width: 768px){
  .vs-btn-wrap{
    display: flex;
    flex-wrap: nowrap;
  }
  

  .vs-stat{
    flex: 1;
  }
   .vs-stat h3{
    font-size: 30px;
  }
  
  
}


/* =========================================================
   IMAGE BLOCK
========================================================= */

.vs-section{
    padding:50px 0;
}

.vs-image-block{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.vs-image-block img{
    height:620px;
    width:100%;
    object-fit:cover;
    border-radius:30px;
}

.vs-image-content h2{
    font-size:64px;
    margin:20px 0;
    line-height:1.1;
    font-family:'Cormorant Garamond',serif;
}

.vs-image-content p{
    line-height:2;
    margin-bottom:35px;
}

/* =========================================================
   STRUCTURE
========================================================= */

.vs-structure-section{
    padding:120px 0;
    background:#fff;
}

.vs-structure-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vs-structure-card{
    background:#f8f8f8;
    padding:35px;
    border-radius:24px;
}

.vs-structure-card.active{
    background:#081225;
    color:#fff;
}

.vs-badge{
    background:#d4a14a;
    color:#081225;
    padding:7px 14px;
    border-radius:30px;
    display:inline-block;
    font-size:11px;
    font-weight:700;
    margin-bottom:18px;
}

.vs-structure-card h3{
    font-size:28px;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
}

.vs-structure-card li{
    margin-bottom:14px;
}

/* =========================================================
   PACKAGE
========================================================= */

.vs-package-section{
    padding:120px 0;
    background:#081225;
}

.vs-package-section .vs-title h2{
    color:#fff;
}

.vs-package-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.vs-package-item{
    background:rgba(255,255,255,.05);
    color:#fff;
    padding:30px;
    border-radius:18px;
}

/* =========================================================
   DOCUMENTS
========================================================= */

.vs-doc-section{
    padding:120px 0;
}

.vs-doc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.vs-doc-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
}

.vs-doc-card h3{
    font-size:30px;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
}

.vs-doc-card li{
    margin-bottom:14px;
}

/* =========================================================
   PROCESS
========================================================= */

.vs-process{
    background:#081225;
}

.vs-process .vs-title h2{
    color:#fff;
}

.vs-process-wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vs-step{
    background:rgba(255,255,255,.04);
    padding:35px;
    border-radius:24px;
}

.vs-step-number{
    font-size:55px;
    opacity:.2;
    color:#fff;
    font-weight:700;
    margin-bottom:18px;
}

.vs-step h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.vs-step p{
    color:#ccc;
    line-height:1.8;
}

/* =========================================================
   CTA
========================================================= */

.vs-cta{
    background:#081225;
    text-align:center;
    padding:120px 20px;
}

.vs-cta h2{
    color:#fff;
    font-size:68px;
    line-height:1.1;
    margin-bottom:25px;
    font-family:'Cormorant Garamond',serif;
}

.vs-cta h2 span{
    color:#d4a14a;
}

.vs-cta p{
    color:#ddd;
    max-width:800px;
    margin:auto auto 35px;
    line-height:1.9;
}

/* =========================================================
   FOOTER
========================================================= */

.vs-footer{
    background:#050b14;
    padding:30px 0;
}

.vs-footer-wrap{
    width:92%;
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.vs-footer p,
.vs-footer a{
    color:#bbb;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .vs-hero-wrap,
    .vs-image-block{
        grid-template-columns:1fr;
    }

    .vs-register-grid,
    .vs-doc-grid{
        grid-template-columns:1fr 1fr;
    }

    .vs-process-wrap{
        grid-template-columns:1fr 1fr;
    }

    .vs-structure-grid{
        grid-template-columns:1fr 1fr;
    }

    .vs-hero-left h1{
        font-size:62px;
    }

}

@media(max-width:768px){

    html,
    body{
        overflow-x:hidden;
    }

    .vs-nav{
        display:none;
    }

    .vs-topbar-wrap{
        padding:14px 0;
    }

    .vs-brand img{
        width:90px;
    }

    .vs-head-btn{
        padding:12px 18px;
        font-size:13px;
    }

    .vs-hero{
        min-height:auto;
        padding:140px 0 80px;
    }

    .vs-hero-wrap,
    .vs-register-grid,
    .vs-doc-grid,
    .vs-process-wrap,
    .vs-image-block,
    .vs-structure-grid,
    .vs-package-grid{
        grid-template-columns:1fr;
    }

    .vs-hero-left{
        text-align:center;
    }

    .vs-btn-group{
        flex-direction:column;
    }

    .vs-main-btn,
    .vs-outline-btn{
        width:100%;
        text-align:center;
    }

    .vs-stat-wrap{
        justify-content:center;
        gap:0px;
    }

    .vs-hero-left h1{
        font-size:44px;
        line-height:1.1;
    }

    .vs-title h2,
    .vs-image-content h2,
    .vs-cta h2{
        font-size:38px;
        line-height:1.2;
    }

    .vs-form-card{
        padding:30px 22px;
    }

    .vs-form-card h3{
        font-size:32px;
    }

    .vs-image-block img{
        height:360px;
    }

    .vs-image-content{
        text-align:center;
    }

    .vs-footer-wrap{
        flex-direction:column;
        gap:18px;
        text-align:center;
    }

}
/* ================= TRUST BAR ================= */

.vs-trustbar{
    background:#07152b;
    padding:40px 20px;
}

.vs-trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.vs-trust-item{
    background:#0d1f3d;
    padding:35px 20px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
}

.vs-trust-item h3{
    font-size:34px;
    color:#d4af37;
    margin-bottom:10px;
    font-family:'Cormorant Garamond',serif;
}

.vs-trust-item p{
    color:#d8d8d8;
    font-size:15px;
}

/* ================= TIMELINE ================= */

.vs-timeline-section{
    padding:110px 20px;
    background:#f8f5ef;
}

.vs-timeline-wrap{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.vs-timeline-item{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    position:relative;
    border:1px solid #eee;
    transition:0.3s;
}

.vs-timeline-item:hover{
    transform:translateY(-8px);
}

.vs-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0b1830;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.vs-timeline-item h3{
    margin-bottom:12px;
    font-size:24px;
}

.vs-timeline-item p{
    color:#666;
    line-height:1.7;
}

/* ================= FEATURE SECTION ================= */

.vs-feature-section{
    padding:120px 20px;
    background:#081527;
}

.vs-feature-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.vs-feature-left h2{
    font-size:56px;
    color:#fff;
    line-height:1.2;
    margin:20px 0;
    font-family:'Cormorant Garamond',serif;
}

.vs-feature-left p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:30px;
}

.vs-feature-list{
    list-style:none;
    padding:0;
}

.vs-feature-list li{
    color:#fff;
    margin-bottom:18px;
    font-size:16px;
}

.vs-feature-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.vs-feature-box{
    background:#10233f;
    padding:35px;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
}

.vs-feature-box:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.vs-feature-box h3{
    color:#fff;
    margin-bottom:15px;
    font-size:24px;
}

.vs-feature-box p{
    color:#d6d6d6;
    line-height:1.7;
}

/* ================= TESTIMONIAL ================= */


/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .vs-trust-grid,
    .vs-timeline-wrap,
    .vs-testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vs-feature-wrap{
        grid-template-columns:1fr;
    }

    .vs-feature-left h2{
        font-size:44px;
    }
}

@media(max-width:768px){

    .vs-trust-grid,
    .vs-timeline-wrap,
    .vs-testimonial-grid,
    .vs-feature-right{
        grid-template-columns:1fr;
    }

    .vs-feature-left h2{
        font-size:36px;
    }

    .vs-timeline-item,
    .vs-feature-box,
    .vs-testimonial-card{
        padding:30px 22px;
    }

    .vs-trust-item h3{
        font-size:28px;
    }
}



/* ================= WHY IPR + FAQ ================= */

.vs-why-ipr-section{
    background:#07152b;
    padding:120px 20px;
}

.vs-why-ipr-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.vs-mini-title{
    color:#c8a54d;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:20px;
}

.vs-why-ipr-left h2,
.vs-faq-box h2{
    font-size:52px;
    line-height:1.2;
    color:#fff;
    margin-bottom:40px;
    font-family:'Cormorant Garamond',serif;
}

.vs-why-list{
    display:flex;
    flex-direction:column;
    gap:28px;
}
.vs-compliance-text {
    max-width: 760px;
    color: #5f6672;
    font-size: 18px;
    line-height: 1.9;
    margin: auto;
}
.vs-why-item{
    display:flex;
    gap:22px;
    align-items:flex-start;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.vs-why-item span{
    color:#c8a54d;
    font-size:22px;
    font-weight:700;
    min-width:40px;
}

.vs-why-item h3{
    color:#fff;
    margin-bottom:10px;
    font-size:22px;
}

.vs-why-item p{
    color:#c8c8c8;
    line-height:1.8;
    font-size:15px;
}

/* ================= FAQ ================= */

.vs-faq-box{
    background:#0d1f3d;
    padding:50px 45px;
}

.vs-faq-item{
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:22px 0;
}

.vs-faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    gap:20px;
}

.vs-faq-question h3{
    color:#fff;
    font-size:18px;
    font-weight:500;
    line-height:1.5;
}

.vs-faq-question span{
    color:#c8a54d;
    font-size:24px;
    font-weight:600;
}

.vs-faq-answer{
    padding-top:18px;
}

.vs-faq-answer p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:15px;
}

/* ================= FINAL CTA ================= */

.vs-big-cta{
    background:#07152b;
    padding:120px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.08);
}

.vs-big-cta h2{
    font-size:64px;
    line-height:1.2;
    color:#fff;
    max-width:950px;
    margin:auto;
    margin-bottom:25px;
    font-family:'Cormorant Garamond',serif;
}

.vs-big-cta h2 span{
    color:#d4af37;
}

.vs-big-cta p{
    color:#d4d4d4;
    font-size:18px;
    margin-bottom:40px;
}

.vs-contact-row{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:45px;
    flex-wrap:wrap;
}

.vs-contact-row span{
    color:#d7d7d7;
    font-size:15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .vs-why-ipr-grid{
        grid-template-columns:1fr;
    }

    .vs-why-ipr-left h2,
    .vs-faq-box h2{
        font-size:42px;
    }

    .vs-big-cta h2{
        font-size:48px;
    }
}

@media(max-width:768px){

    .vs-why-ipr-section,
    .vs-big-cta{
        padding:80px 20px;
    }

    .vs-faq-box{
        padding:35px 25px;
    }

    .vs-why-ipr-left h2,
    .vs-faq-box h2{
        font-size:34px;
    }

    .vs-big-cta h2{
        font-size:34px;
    }

    .vs-contact-row{
        flex-direction:column;
        gap:14px;
    }

    .vs-why-item{
        gap:16px;
    }

    .vs-why-item h3{
        font-size:19px;
    }

    .vs-faq-question h3{
        font-size:16px;
    }
}


@media (max-width: 768px) {
    .vs-doc-section {
        padding: 40px 0;
    }
}
@media (max-width: 768px) {
    .vs-structure-section {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .vs-section {
        padding: 50px 0;
    }
}
/* ================= COMPLIANCE SECTION ================= */

.vs-compliance-section{
    padding:120px 20px;
    background:#f8f6f1;
}

.vs-compliance-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:60px;
}



.vs-compliance-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#d4af37;
    transform:scaleX(0);
    transition:0.4s;
}

.vs-compliance-card:hover::before{
    transform:scaleX(1);
}

.vs-compliance-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.vs-compliance-icon{
    width:75px;
    height:75px;
    margin:auto;
    margin-bottom:22px;
    background:#07152b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:30px;
}

.vs-compliance-card h3{
    font-size:22px;
    color:#07152b;
    font-weight:600;
    line-height:1.4;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .vs-compliance-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .vs-compliance-section{
        padding:20px 20px;
    }

    .vs-compliance-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .vs-compliance-card{
        padding:30px 20px;
    }

    .vs-compliance-card h3{
        font-size:18px;
    }

    .vs-compliance-icon{
        width:65px;
        height:65px;
        font-size:26px;
    }
}

@media(max-width:520px){

    .vs-compliance-grid{
        grid-template-columns:1fr;
    }

    .vs-compliance-card{
        padding:28px 20px;
    }
}

/* ================= BEYOND SECTION ================= */

.vs-beyond-section{
    padding:0px 0px 50px 0px;
    background:#f7f5f1;
}

.vs-beyond-section .vs-title{
    margin-bottom:60px;
}

.vs-beyond-section .vs-title span{
    color:#caa74b;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:0px;
}

.vs-beyond-section .vs-title h2{
    font-size:60px;
    line-height:1.1;
    color:#07152b;
    margin-bottom:25px;
    font-family:'Cormorant Garamond',serif;
}

.vs-beyond-text{
    max-width:700px;
    color:#5f6672;
    font-size:18px;
    line-height:1.9;
    margin: auto;
}

.vs-beyond-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vs-beyond-card{
    background:#efebe5;
    padding:38px 28px;
    transition:0.4s ease;
    border-bottom:3px solid transparent;
}

.vs-beyond-card:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    background:#fff;
}

.vs-beyond-icon{
    font-size:42px;
    margin-bottom:24px;
}

.vs-beyond-card h3{
    font-size:28px;
    margin-bottom:16px;
    color:#07152b;
    font-family:'Cormorant Garamond',serif;
}

.vs-beyond-card p{
    color:#606874;
    line-height:1.9;
    font-size:15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .vs-beyond-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .vs-beyond-section{
        padding:20px 20px;
    }

    .vs-beyond-section .vs-title h2{
        font-size:42px;
    }

    .vs-beyond-text{
        font-size:15px;
    }

    .vs-beyond-grid{
        grid-template-columns:1fr;
    }

    .vs-beyond-card{
        padding:30px 22px;
    }

    .vs-beyond-card h3{
        font-size:24px;
    }

    .vs-beyond-icon{
        font-size:36px;
    }
}

/* ================= FAQ ACTIVE ================= */

.vs-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
}

.vs-faq-item.active .vs-faq-answer{
    max-height:300px;
}

.vs-faq-item.active .vs-faq-question span{
    transform:rotate(45deg);
}



/* ================= COMPLIANCE SECTION ================= */

.vs-compliance-section{
    padding:120px 20px;
    background:#f8f6f1;
}

.vs-compliance-section .vs-title{
    margin-bottom:60px;
}

.vs-compliance-section .vs-title span{
    color:#caa74b;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:18px;
}

.vs-compliance-section .vs-title h2{
    font-size:50px;
    line-height:1.1;
    color:#07152b;
    margin-bottom:24px;
    font-family:'Cormorant Garamond',serif;
}

.vs-compliance-text{
    max-width:760px;
    color:#5f6672;
    font-size:18px;
    line-height:1.9;
}

/* ================= GRID ================= */

.vs-compliance-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

/* ================= CARD ================= */

.vs-compliance-card{
    background:#fff;
    padding:10px 26px;
    border:1px solid #ece7de;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.vs-compliance-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#d4af37;
    transform:scaleX(0);
    transform-origin:left;
    transition:0.4s ease;
}

.vs-compliance-card:hover::before{
    transform:scaleX(1);
}

.vs-compliance-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
    background:#fff;
}

.vs-compliance-icon{
    width:78px;
    height:78px;
    border-radius:18px;
    background:#07152b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:24px;
}

.vs-compliance-card h3{
    font-size:28px;
    line-height:1.3;
    margin-bottom:16px;
    color:#07152b;
    font-family:'Cormorant Garamond',serif;
}

.vs-compliance-card p{
    color:#606874;
    line-height:1.9;
    font-size:15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .vs-compliance-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .vs-compliance-section{
        padding:20px 20px;
    }

    .vs-compliance-section .vs-title h2{
        font-size:42px;
    }

    .vs-compliance-text{
        font-size:15px;
    }

    .vs-compliance-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .vs-compliance-card{
        padding:30px 22px;
    }

    .vs-compliance-card h3{
        font-size:24px;
    }

    .vs-compliance-icon{
        width:68px;
        height:68px;
        font-size:28px;
    }
}

@media(max-width:520px){

    .vs-compliance-grid{
        grid-template-columns:1fr;
    }

    .vs-compliance-section .vs-title h2{
        font-size:34px;
    }

    .vs-compliance-card{
        padding:28px 20px;
    }

    .vs-compliance-card h3{
        font-size:22px;
    }
}

.vs-faq-item.active .vs-faq-answer {
    display: block;
}







/* ===== CONTACT INFO PREMIUM DESIGN ===== */

.vs-contact-info{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;
    margin-top:18px;
}

.vs-contact-info a{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 22px;
    border-radius:60px;
    text-decoration:none;
    color:#ffffff;
    font-size:16px;
    font-weight:500;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    overflow:hidden;
    transition:all .35s ease;
    backdrop-filter:blur(10px);
}

/* GOLD SHINE EFFECT */

.vs-contact-info a::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
    transition:.6s;
}

.vs-contact-info a:hover::before{
    left:100%;
}

/* ICON STYLE */

.vs-contact-info a i{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#cfa94b,#f4d67a);
    color:#07101d;
    font-size:18px;
    box-shadow:
        0 8px 20px rgba(207,169,75,0.35),
        inset 0 2px 5px rgba(255,255,255,0.3);
    transition:.35s ease;
}

/* HOVER EFFECT */

.vs-contact-info a:hover{
    transform:translateY(-5px);
    border-color:#cfa94b;
    background:rgba(255,255,255,0.09);
    box-shadow:0 12px 35px rgba(0,0,0,0.25);
}

.vs-contact-info a:hover i{
    background:#fff;
    color:#cfa94b;
    transform:rotate(-8deg) scale(1.08);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    .vs-contact-info{
        flex-direction:column;
        align-items:center;
    }

    .vs-contact-info a{
        width:100%;
        max-width:340px;
        justify-content:flex-start;
    }
}/* End custom CSS */