/* =========================================
   V DANCE PREMIUM FEATURES SECTION
========================================= */

.vd-premium-features{
    position: relative;
    background: #070707;
    overflow: hidden;
    z-index: 1;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* Background Glow */

.vd-premium-features::before{
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle,
    rgba(212,175,55,0.16) 0%,
    transparent 70%);
    top: -300px;
    left: -250px;
    z-index: -1;
}

.vd-premium-features::after{
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
    rgba(255,215,0,0.10) 0%,
    transparent 70%);
    bottom: -300px;
    right: -250px;
    z-index: -1;
}

/* Heading */

.vd-premium-heading{
    max-width: 850px;
    margin-inline: auto;
}

.vd-tagline{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.vd-heading{
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}

.vd-heading span{
    background: linear-gradient(
        90deg,
        #c89b2b,
        #ffd86f,
        #b8860b
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-premium-heading p{
    color: #bfbfbf;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* Card */

.vd-glass-card{
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(22,22,22,0.95),
        rgba(10,10,10,0.95)
    );
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 30px;
    padding: 45px 30px;
    overflow: hidden;
    transition: all 0.45s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* Golden Border Glow */

.vd-glass-card::before{
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(255,215,0,0.4),
        transparent,
        rgba(255,215,0,0.15)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Shimmer Animation */

.vd-shimmer{
    position: absolute;
    top: -120%;
    left: -40%;
    width: 70%;
    height: 300%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.12),
        transparent
    );
    transform: rotate(25deg);
    animation: shimmerMove 5s linear infinite;
}

@keyframes shimmerMove{
    0%{
        left: -60%;
    }
    100%{
        left: 160%;
    }
}

/* Hover */

.vd-glass-card:hover{
    transform: translateY(-12px);
    border-color: rgba(255,215,0,0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.65);
}

/* Icon */

.vd-icon-box{
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #1a1a1a,
        #0b0b0b
    );
    border: 1px solid rgba(255,215,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.vd-icon-box::after{
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 18px;
    border: 1px solid rgba(255,215,0,0.08);
}

.vd-icon-box i{
    font-size: 38px;
    background: linear-gradient(
        180deg,
        #ffe082,
        #d4af37,
        #b8860b
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Number */

.vd-number{
    display: inline-block;
    color: #d4af37;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Title */

.vd-glass-card h3{
    color: #ffffff;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Description */

.vd-glass-card p{
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1399px){

    .vd-heading{
        font-size: 50px;
    }

    .vd-glass-card{
        padding: 40px 25px;
    }

    .vd-glass-card h3{
        font-size: 24px;
    }
}

@media (max-width: 991px){

    .vd-heading{
        font-size: 40px;
    }
}

@media (max-width: 767px){

    .vd-premium-features{
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .vd-heading{
        font-size: 32px;
    }

    .vd-premium-heading p{
        font-size: 15px;
    }

    .vd-glass-card{
        border-radius: 24px;
        padding: 35px 24px;
    }

    .vd-icon-box{
        width: 78px;
        height: 78px;
    }

    .vd-icon-box i{
        font-size: 32px;
    }

    .vd-glass-card h3{
        font-size: 22px;
    }
}
/* =========================================
   V DANCE ABOUT SECTION
========================================= */

.vd-about-section{
    position: relative;
    background: #f6f1e8;
    overflow: hidden;
    z-index: 1;
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

/* Background Metallic Glow */

.vd-about-section::before{
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle,
    rgba(212,175,55,0.15) 0%,
    transparent 70%);
    top: -250px;
    right: -250px;
    z-index: -1;
}

.vd-about-section::after{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
    rgba(0,0,0,0.05) 0%,
    transparent 70%);
    bottom: -250px;
    left: -200px;
    z-index: -1;
}

/* Image Area */

.vd-about-image-wrap{
    position: relative;
}

.vd-image-glow{
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle,
    rgba(212,175,55,0.25) 0%,
    transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vd-about-image{
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.vd-about-image img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: 0.5s ease;
}

.vd-about-image:hover img{
    transform: scale(1.05);
}

/* Floating Badge */

.vd-floating-badge{
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #111111,
        #2a2a2a
    );
    border: 2px solid rgba(255,215,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.vd-floating-badge span{
    color: #d4af37;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vd-floating-badge h4{
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    margin: 0;
}

/* Content */

.vd-about-content{
    padding-left: 35px;
}

.vd-about-tag{
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    border-radius: 100px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(212,175,55,0.18);
    color: #b8860b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Title */

.vd-about-title{
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    color: #111111;
    margin-bottom: 28px;
}

.vd-about-title span{
    background: linear-gradient(
        90deg,
        #b8860b,
        #ffd86f,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */

.vd-about-text{
    color: #555555;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Highlight Boxes */

.vd-highlight-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 24px;
    padding: 25px;
    transition: 0.4s ease;
    height: 100%;
    backdrop-filter: blur(12px);
}

.vd-highlight-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* Icon */

.vd-highlight-icon{
    min-width: 65px;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        #111111,
        #2b2b2b
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-highlight-icon i{
    font-size: 24px;
    background: linear-gradient(
        180deg,
        #ffe082,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight Text */

.vd-highlight-content h5{
    color: #111111;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vd-highlight-content p{
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Button */

.vd-about-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 34px;
    border-radius: 100px;
    background: linear-gradient(
        90deg,
        #111111,
        #242424
    );
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: 0.4s ease;
    z-index: 1;
}

.vd-about-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #b8860b,
        #ffd86f,
        #b8860b
    );
    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
}

.vd-about-btn:hover{
    color: #111111;
    transform: translateY(-4px);
}

.vd-about-btn:hover::before{
    opacity: 1;
}

.vd-about-btn i{
    transition: 0.4s ease;
}

.vd-about-btn:hover i{
    transform: translateX(5px);
}

/* Responsive */

@media (max-width: 1399px){

    .vd-about-title{
        font-size: 50px;
    }

    .vd-about-image img{
        height: 620px;
    }
}

@media (max-width: 991px){

    .vd-about-content{
        padding-left: 0;
    }

    .vd-about-title{
        font-size: 42px;
    }

    .vd-about-image img{
        height: 520px;
    }
}

@media (max-width: 767px){

    .vd-about-section{
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .vd-about-title{
        font-size: 32px;
    }

    .vd-about-text{
        font-size: 15px;
        line-height: 1.9;
    }

    .vd-about-image img{
        height: 420px;
    }

    .vd-floating-badge{
        width: 100px;
        height: 100px;
    }

    .vd-floating-badge h4{
        font-size: 28px;
    }

    .vd-highlight-box{
        padding: 20px;
    }
}
/* =========================================
   V DANCE MODERN STATS SECTION
========================================= */

.vd-stats-section{
    position: relative;
    background:
    linear-gradient(
        180deg,
        #0a0a0a 0%,
        #121212 100%
    );
    overflow: hidden;
    padding: 110px 0;
}

/* Background Effect */

.vd-stats-section::before{
    content: "";
    position: absolute;
    top: -250px;
    left: -250px;
    width: 550px;
    height: 550px;
    background: radial-gradient(
        circle,
        rgba(212,175,55,0.12),
        transparent 70%
    );
}

.vd-stats-section::after{
    content: "";
    position: absolute;
    bottom: -250px;
    right: -250px;
    width: 550px;
    height: 550px;
    background: radial-gradient(
        circle,
        rgba(255,215,0,0.08),
        transparent 70%
    );
}

/* Heading */

.vd-stats-heading{
    position: relative;
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
    z-index: 2;
}

.vd-stats-subtitle{
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
}

.vd-stats-subtitle::before,
.vd-stats-subtitle::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 55px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af37
    );
}

.vd-stats-subtitle::before{
    right: calc(100% + 15px);
}

.vd-stats-subtitle::after{
    left: calc(100% + 15px);
    transform: rotate(180deg);
}

.vd-stats-heading h2{
    color: #ffffff;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-stats-heading h2 span{
    background: linear-gradient(
        90deg,
        #ffe082,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-stats-heading p{
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.9;
}

/* Stats Layout */

.vd-stats-wrapper{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    z-index: 2;
}

/* Card */

.vd-stat-item{
    position: relative;
    padding: 40px 30px;
    border-radius: 32px;
    background:
    linear-gradient(
        145deg,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,215,0,0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: 0.45s ease;
}

/* Metallic Shine */

.vd-stat-item::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 60%;
    height: 300%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transform: rotate(25deg);
    animation: vdMetallic 6s linear infinite;
}

@keyframes vdMetallic{
    0%{
        left: -50%;
    }
    100%{
        left: 160%;
    }
}

/* Hover */

.vd-stat-item:hover{
    transform: translateY(-14px);
    border-color: rgba(255,215,0,0.25);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.vd-stat-item.active{
    background:
    linear-gradient(
        180deg,
        rgba(212,175,55,0.12),
        rgba(255,255,255,0.02)
    );
}

/* Top */

.vd-stat-top{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.vd-line{
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(212,175,55,0.6),
        transparent
    );
}

/* Icon */

.vd-stat-icon{
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background:
    linear-gradient(
        145deg,
        #1c1c1c,
        #0b0b0b
    );
    border: 1px solid rgba(255,215,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vd-stat-icon i{
    font-size: 34px;
    background: linear-gradient(
        180deg,
        #fff5cc,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Number */

.vd-stat-item h3{
    color: #ffffff;
    font-size: 70px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 18px;
}

.vd-stat-item h3 span{
    background: linear-gradient(
        180deg,
        #ffffff,
        #ffd86f,
        #b8860b
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Title */

.vd-stat-item h4{
    color: #ffffff;
    font-size: 25px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Text */

.vd-stat-item p{
    color: #bcbcbc;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 1399px){

    .vd-stats-wrapper{
        grid-template-columns: repeat(2,1fr);
    }

    .vd-stats-heading h2{
        font-size: 50px;
    }
}

@media (max-width: 991px){

    .vd-stats-heading h2{
        font-size: 40px;
    }
}

@media (max-width: 767px){

    .vd-stats-section{
        padding: 70px 0;
    }

    .vd-stats-wrapper{
        grid-template-columns: 1fr;
    }

    .vd-stats-heading{
        margin-bottom: 50px;
    }

    .vd-stats-heading h2{
        font-size: 32px;
    }

    .vd-stats-heading p{
        font-size: 15px;
    }

    .vd-stat-item{
        padding: 35px 24px;
        border-radius: 24px;
    }

    .vd-stat-item h3{
        font-size: 52px;
    }

    .vd-stat-item h4{
        font-size: 22px;
    }

    .vd-stat-icon{
        width: 74px;
        height: 74px;
    }

    .vd-stat-icon i{
        font-size: 30px;
    }
}
/* =========================================
   V DANCE FULL SERVICES SECTION
========================================= */

.vd-full-services-section{
    position: relative;
    background: #f7f2e8;
    overflow: hidden;
    padding: 110px 0;
}

/* Background Effects */

.vd-full-services-section::before{
    content: "";
    position: absolute;
    top: -250px;
    left: -250px;
    width: 550px;
    height: 550px;
    background: radial-gradient(
        circle,
        rgba(212,175,55,0.15),
        transparent 70%
    );
}

.vd-full-services-section::after{
    content: "";
    position: absolute;
    bottom: -250px;
    right: -250px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0,0,0,0.04),
        transparent 70%
    );
}

/* Heading */

.vd-full-services-heading{
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-bottom: 70px;
    z-index: 2;
}

.vd-services-mini-title{
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(212,175,55,0.18);
    color: #b8860b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vd-full-services-heading h2{
    color: #111111;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-full-services-heading h2 span{
    background: linear-gradient(
        90deg,
        #b8860b,
        #ffd86f,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-full-services-heading p{
    color: #666666;
    font-size: 17px;
    line-height: 1.9;
}

/* Card */

.vd-service-box{
    position: relative;
    background: rgba(255,255,255,0.72);
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.12);
    transition: 0.45s ease;
    height: 100%;
    backdrop-filter: blur(14px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* Metallic Border Shine */

.vd-service-box::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.30),
        transparent
    );
    transform: rotate(25deg);
    animation: vdServiceShine 6s linear infinite;
    z-index: 2;
}

@keyframes vdServiceShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

/* Hover */

.vd-service-box:hover{
    transform: translateY(-14px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Image */

.vd-service-image{
    position: relative;
    
    overflow: hidden;
}

.vd-service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.vd-service-box:hover .vd-service-image img{
    transform: scale(1.08);
}

/* Overlay */

.vd-service-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.08),
        rgba(0,0,0,0.55)
    );
}

/* Badge */

.vd-service-badge{
    position: absolute;
    bottom: -35px;
    left: 30px;
    width: 82px;
    height: 82px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #111111,
        #292929
    );
    border: 3px solid #f7f2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.22);
    z-index: 3;
}

.vd-service-badge i{
    font-size: 32px;
    background: linear-gradient(
        180deg,
        #fff5cc,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content */

.vd-service-content{
    padding: 15px 32px 35px;
}

/* Number */

.vd-service-count{
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* Title */

.vd-service-content h3{
    color: #111111;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Description */

.vd-service-content p{
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* List */

.vd-service-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.vd-service-content ul li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #222222;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 16px;
}

.vd-service-content ul li i{
    min-width: 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-top: 2px;
}

/* Responsive */

@media (max-width: 1399px){

    .vd-full-services-heading h2{
        font-size: 50px;
    }
}

@media (max-width: 991px){

    .vd-full-services-heading h2{
        font-size: 40px;
    }
}

@media (max-width: 767px){

    .vd-full-services-section{
        padding: 70px 0;
    }

    .vd-full-services-heading{
        margin-bottom: 50px;
    }

    .vd-full-services-heading h2{
        font-size: 32px;
    }

    .vd-full-services-heading p{
        font-size: 15px;
    }

    .vd-service-image{
        height: 240px;
    }

    .vd-service-content{
        padding: 58px 24px 30px;
    }

    .vd-service-content h3{
        font-size: 24px;
    }

    .vd-service-box{
        border-radius: 26px;
    }

    .vd-service-badge{
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .vd-service-badge i{
        font-size: 28px;
    }
}
/* =========================================
   WHY CHOOSE SECTION
========================================= */

.vd-why-section{
    position: relative;
    background: #090909;
    overflow: hidden;
    padding: 110px 0;
    z-index: 1;
}

/* Animated Circles */

.vd-circle{
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.12);
    animation: vdRotate 18s linear infinite;
}

.vd-circle::before{
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px dashed rgba(255,215,0,0.15);
}

.vd-circle-one{
    width: 420px;
    height: 420px;
    top: -180px;
    left: -150px;
}

.vd-circle-two{
    width: 280px;
    height: 280px;
    bottom: 80px;
    right: -80px;
    animation-direction: reverse;
}

.vd-circle-three{
    width: 180px;
    height: 180px;
    top: 50%;
    left: 45%;
    opacity: 0.15;
}

@keyframes vdRotate{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

/* Heading */

.vd-why-heading{
    position: relative;
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
    z-index: 2;
}

.vd-why-tag{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vd-why-heading h2{
    color: #ffffff;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-why-heading h2 span{
    background: linear-gradient(
        90deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-why-heading p{
    color: #bcbcbc;
    font-size: 17px;
    line-height: 1.9;
}

/* Left Side */

.vd-main-content-box{
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 34px;
    padding: 45px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.vd-main-content-box::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 300%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.10),
        transparent
    );
    transform: rotate(25deg);
    animation: vdShine 6s linear infinite;
}

@keyframes vdShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

.vd-main-content-box h3{
    color: #ffffff;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 22px;
}

.vd-main-content-box p{
    color: #bdbdbd;
    font-size: 16px;
    line-height: 2;
    margin: 0;
}

/* Image */

.vd-why-image{
    position: relative;
    border-radius: 34px;
    overflow: hidden;
}

.vd-why-image img{
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.vd-image-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.55)
    );
}

/* Floating Box */

.vd-floating-experience{
    position: absolute;
    bottom: 30px;
    left: 30px;
    max-width: 240px;
    padding: 24px;
    border-radius: 26px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,215,0,0.12);
}

.vd-floating-experience h4{
    color: #d4af37;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.vd-floating-experience span{
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}

/* Right Grid */

.vd-why-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

/* Card */

.vd-why-card{
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 28px;
    padding: 30px;
    transition: 0.45s ease;
    overflow: hidden;
}

/* Hover */

.vd-why-card:hover{
    transform: translateY(-10px);
    border-color: rgba(255,215,0,0.18);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Icon */

.vd-why-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #1c1c1c,
        #0b0b0b
    );
    border: 1px solid rgba(255,215,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-why-icon i{
    font-size: 28px;
    background: linear-gradient(
        180deg,
        #fff5cc,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content */

.vd-why-content h4{
    color: #ffffff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 12px;
}

.vd-why-content p{
    color: #bcbcbc;
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

/* Responsive */

@media (max-width: 1399px){

    .vd-why-heading h2{
        font-size: 50px;
    }
}

@media (max-width: 1199px){

    .vd-why-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px){

    .vd-why-heading h2{
        font-size: 40px;
    }

    .vd-main-content-box h3{
        font-size: 32px;
    }

    .vd-why-image img{
        height: 450px;
    }
}

@media (max-width: 767px){

    .vd-why-section{
        padding: 70px 0;
    }

    .vd-why-heading{
        margin-bottom: 50px;
    }

    .vd-why-heading h2{
        font-size: 32px;
    }

    .vd-why-heading p{
        font-size: 15px;
    }

    .vd-main-content-box{
        padding: 30px 24px;
        border-radius: 24px;
    }

    .vd-main-content-box h3{
        font-size: 26px;
    }

    .vd-main-content-box p{
        font-size: 15px;
    }

    .vd-why-image img{
        height: 380px;
    }

    .vd-floating-experience{
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: 100%;
    }

    .vd-floating-experience h4{
        font-size: 40px;
    }

    .vd-why-card{
        padding: 24px;
        border-radius: 22px;
        flex-direction: column;
    }

    .vd-why-content h4{
        font-size: 20px;
    }
}
/* =========================================
   DANCE SPECIALIZATION SECTION
========================================= */

.vd-dance-specialization-section{
    position: relative;
    background: #f9f5ed;
    overflow: hidden;
    padding: 120px 0;
}

/* Background Glow */

.vd-ds-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.vd-ds-glow-1{
    width: 420px;
    height: 420px;
    background: rgba(212,175,55,0.12);
    top: -120px;
    left: -120px;
}

.vd-ds-glow-2{
    width: 380px;
    height: 380px;
    background: rgba(0,0,0,0.05);
    bottom: -100px;
    right: -100px;
}

/* Heading */

.vd-ds-heading{
    position: relative;
    max-width: 950px;
    margin: auto;
    margin-bottom: 90px;
    z-index: 2;
}

.vd-ds-tag{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 100px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(212,175,55,0.18);
    color: #b8860b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vd-ds-heading h2{
    color: #111111;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-ds-heading h2 span{
    background: linear-gradient(
        90deg,
        #b8860b,
        #ffd86f,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-ds-heading p{
    color: #666666;
    font-size: 17px;
    line-height: 1.9;
}

/* Side List */

.vd-ds-list-wrapper{
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Item */

.vd-ds-item{
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.7);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(212,175,55,0.10);
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
}

/* Golden Shine */

.vd-ds-item::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.28),
        transparent
    );
    transform: rotate(25deg);
    animation: vdDsShine 6s linear infinite;
}

@keyframes vdDsShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

/* Hover */

.vd-ds-item:hover{
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.10);
}

/* Icon */

.vd-ds-icon{
    min-width: 72px;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #111111,
        #2b2b2b
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.vd-ds-icon i{
    font-size: 28px;
    background: linear-gradient(
        180deg,
        #fff5cc,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content */

.vd-ds-content h3{
    color: #111111;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 10px;
}

.vd-ds-content p{
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* CENTER */

.vd-ds-center{
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rings */

.vd-ring{
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.20);
}

.vd-ring-1{
    width: 420px;
    height: 420px;
    animation: vdRotate 16s linear infinite;
}

.vd-ring-2{
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: vdRotateReverse 14s linear infinite;
}

.vd-ring-3{
    width: 220px;
    height: 220px;
    animation: vdPulse 4s ease-in-out infinite;
}

/* Main Circle */

.vd-dancer-circle{
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #111111,
        #232323
    );
    padding: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    z-index: 5;
}

.vd-dancer-inner{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #fff5cc,
        #d4af37,
        #8b6508
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vd-dancer-inner img{
    width: 72%;
    animation: vdBounce 3s ease-in-out infinite;
}

/* Floating Icons */

.vd-floating-icon{
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(212,175,55,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.vd-floating-icon i{
    font-size: 28px;
    color: #b8860b;
}

.vd-fi-1{
    top: 20%;
    left: 12%;
    animation: vdFloat 4s ease-in-out infinite;
}

.vd-fi-2{
    top: 18%;
    right: 14%;
    animation: vdFloat 5s ease-in-out infinite;
}

.vd-fi-3{
    bottom: 20%;
    left: 16%;
    animation: vdFloat 6s ease-in-out infinite;
}

.vd-fi-4{
    bottom: 18%;
    right: 14%;
    animation: vdFloat 4.5s ease-in-out infinite;
}

/* Animations */

@keyframes vdRotate{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

@keyframes vdRotateReverse{

    from{
        transform: rotate(360deg);
    }

    to{
        transform: rotate(0deg);
    }
}

@keyframes vdBounce{

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }
}

@keyframes vdFloat{

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-14px);
    }
}

@keyframes vdPulse{

    0%,100%{
        transform: scale(1);
        opacity: 1;
    }

    50%{
        transform: scale(1.08);
        opacity: 0.75;
    }
}

/* Responsive */

@media (max-width: 1399px){

    .vd-ds-heading h2{
        font-size: 50px;
    }
}

@media (max-width: 1199px){

    .vd-ds-center{
        min-height: 700px;
    }

    .vd-ring-1{
        width: 340px;
        height: 340px;
    }

    .vd-ring-2{
        width: 260px;
        height: 260px;
    }

    .vd-ring-3{
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 991px){

    .vd-ds-heading h2{
        font-size: 40px;
    }

    .vd-ds-list-wrapper{
        gap: 20px;
    }
}

@media (max-width: 767px){

    .vd-dance-specialization-section{
        padding: 70px 0;
    }

    .vd-ds-heading{
        margin-bottom: 50px;
    }

    .vd-ds-heading h2{
        font-size: 32px;
    }

    .vd-ds-heading p{
        font-size: 15px;
    }

    .vd-ds-item{
        padding: 24px;
        border-radius: 22px;
        flex-direction: column;
    }

    .vd-ds-icon{
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .vd-ds-icon i{
        font-size: 24px;
    }

    .vd-ds-content h3{
        font-size: 22px;
    }
}
/* =========================================
   INSTRUCTORS SECTION
========================================= */

.vd-instructors-section{
    position: relative;
    background: #080808;
    overflow: hidden;
    padding: 120px 0;
}

/* Background Glow */

.vd-ins-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.vd-ins-glow-1{
    width: 420px;
    height: 420px;
    background: rgba(212,175,55,0.14);
    top: -120px;
    left: -120px;
}

.vd-ins-glow-2{
    width: 350px;
    height: 350px;
    background: rgba(255,215,0,0.08);
    bottom: -100px;
    right: -100px;
}

/* Heading */

.vd-ins-heading{
    position: relative;
    max-width: 950px;
    margin: auto;
    margin-bottom: 80px;
    z-index: 2;
}

.vd-ins-tag{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vd-ins-heading h2{
    color: #ffffff;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-ins-heading h2 span{
    background: linear-gradient(
        90deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-ins-heading p{
    color: #bcbcbc;
    font-size: 17px;
    line-height: 1.9;
}

/* Card */

.vd-instructor-card{
    position: relative;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.01)
    );
    border: 1px solid rgba(255,215,0,0.10);
    border-radius: 36px;
    overflow: hidden;
    transition: 0.45s ease;
    height: 100%;
}

/* Shine Effect */

.vd-instructor-card::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -35%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.10),
        transparent
    );
    transform: rotate(25deg);
    animation: vdInstructorShine 7s linear infinite;
}

@keyframes vdInstructorShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

/* Hover */

.vd-instructor-card:hover{
    transform: translateY(-14px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* Image */

.vd-instructor-image{
    position: relative;
   
    overflow: hidden;
}

.vd-instructor-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.vd-instructor-card:hover .vd-instructor-image img{
    transform: scale(1.08);
}

/* Overlay */

.vd-image-shade{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.60)
    );
}

/* Badge */

.vd-exp-badge{
    position: absolute;
    left: 30px;
    bottom: 30px;
    padding: 20px 24px;
    border-radius: 24px;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,215,0,0.12);
    backdrop-filter: blur(12px);
}

.vd-exp-badge h4{
    color: #d4af37;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 6px;
}

.vd-exp-badge span{
    color: #ffffff;
    font-size: 14px;
}

/* Content */

.vd-instructor-content{
    padding: 40px;
}

/* Role */

.vd-ins-role{
    display: inline-block;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Name */

.vd-instructor-content h3{
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

/* Paragraph */

.vd-instructor-content p{
    color: #bcbcbc;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 18px;
}

/* Skills */

.vd-specialization-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.vd-specialization-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.08);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.vd-specialization-item i{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Responsive */

@media (max-width: 1399px){

    .vd-ins-heading h2{
        font-size: 50px;
    }
}

@media (max-width: 991px){

    .vd-ins-heading h2{
        font-size: 40px;
    }

    .vd-instructor-content h3{
        font-size: 34px;
    }

    .vd-instructor-image{
        height: 500px;
    }
}

@media (max-width: 767px){

    .vd-instructors-section{
        padding: 70px 0;
    }

    .vd-ins-heading{
        margin-bottom: 50px;
    }

    .vd-ins-heading h2{
        font-size: 32px;
    }

    .vd-ins-heading p{
        font-size: 15px;
    }

    .vd-instructor-card{
        border-radius: 26px;
    }

    .vd-instructor-image{
        height: 500px;
    }

    .vd-instructor-content{
        padding: 28px 24px;
    }

    .vd-instructor-content h3{
        font-size: 30px;
    }

    .vd-specialization-wrap{
        gap: 10px;
    }

    .vd-specialization-item{
        width: 100%;
        justify-content: flex-start;
    }

    .vd-exp-badge{
        left: 20px;
        bottom: 20px;
    }
}

/* =========================================
   DANCE WORKSHOP SECTION
========================================= */

.vd-workshop-section{
    position: relative;
    background: linear-gradient(
        135deg,
        #060606,
        #111111,
        #0b0b0b
    );
    overflow: hidden;
    padding: 120px 0;
}

/* Animated Lines */

.vd-workshop-line{
    position: absolute;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(212,175,55,0.20),
        transparent
    );
    width: 1px;
    height: 100%;
    top: 0;
    animation: vdLineMove 8s linear infinite;
}

.vd-line-1{
    left: 12%;
}

.vd-line-2{
    right: 14%;
    animation-delay: 2s;
}

@keyframes vdLineMove{

    0%{
        transform: translateY(-100%);
    }

    100%{
        transform: translateY(100%);
    }
}

/* Glow */

.vd-workshop-blur{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.vd-blur-1{
    width: 420px;
    height: 420px;
    background: rgba(212,175,55,0.12);
    top: -120px;
    left: -120px;
}

.vd-blur-2{
    width: 350px;
    height: 350px;
    background: rgba(255,215,0,0.08);
    bottom: -100px;
    right: -100px;
}

/* LEFT SIDE */

.vd-workshop-left{
    position: relative;
    z-index: 2;
}

/* Tag */

.vd-workshop-tag{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.15);
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Heading */

.vd-workshop-left h2{
    color: #ffffff;
    font-size: 60px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 30px;
}

.vd-workshop-left h2 span{
    display: block;
    background: linear-gradient(
        90deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */

.vd-workshop-text{
    color: #bcbcbc;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Features */

.vd-workshop-features{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Feature Box */

.vd-workshop-feature{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 26px;
    padding: 24px;
    transition: 0.45s ease;
}

.vd-workshop-feature:hover{
    transform: translateX(10px);
    border-color: rgba(255,215,0,0.18);
}

/* Icon */

.vd-feature-icon{
    min-width: 72px;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #1c1c1c,
        #090909
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-feature-icon i{
    font-size: 28px;
    background: linear-gradient(
        180deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Content */

.vd-feature-content h4{
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.vd-feature-content p{
    color: #bcbcbc;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Button */

.vd-workshop-btn{
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
    padding: 18px 34px;
    border-radius: 100px;
    background: linear-gradient(
        90deg,
        #d4af37,
        #f0c14b
    );
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.45s ease;
}

.vd-workshop-btn span{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-workshop-btn:hover{
    transform: translateY(-8px);
    color: #111111;
    box-shadow: 0 20px 40px rgba(212,175,55,0.25);
}

/* RIGHT SIDE */

.vd-workshop-right{
    position: relative;
    padding: 60px;
}

/* Main Image */

.vd-workshop-main-image{
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid rgba(255,215,0,0.12);
    transform: rotate(-3deg);
}

.vd-workshop-main-image img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: 0.6s ease;
}

.vd-workshop-main-image:hover img{
    transform: scale(1.08);
}

/* Overlay */

.vd-workshop-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.55)
    );
}

/* Floating Cards */

.vd-floating-workshop-card{
    position: absolute;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,215,0,0.12);
    animation: vdWorkshopFloat 5s ease-in-out infinite;
    z-index: 5;
}

.vd-floating-workshop-card i{
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.vd-floating-workshop-card h5{
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.vd-floating-workshop-card span{
    color: #c7c7c7;
    font-size: 14px;
}

.vd-card-1{
    top: 80px;
    left: -10px;
}

.vd-card-2{
    bottom: 100px;
    right: 0;
    animation-delay: 2s;
}

/* Center Circle */

.vd-center-circle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,215,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 4;
    animation: vdPulseCircle 3s ease-in-out infinite;
}

.vd-circle-inner{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-circle-inner i{
    color: #ffffff;
    font-size: 26px;
}

/* Animations */

@keyframes vdWorkshopFloat{

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-14px);
    }
}

@keyframes vdPulseCircle{

    0%,100%{
        transform: translate(-50%,-50%) scale(1);
    }

    50%{
        transform: translate(-50%,-50%) scale(1.08);
    }
}

/* Responsive */

@media (max-width: 1399px){

    .vd-workshop-left h2{
        font-size: 52px;
    }
}

@media (max-width: 991px){

    .vd-workshop-left h2{
        font-size: 40px;
    }

    .vd-workshop-right{
        padding: 20px;
    }

    .vd-workshop-main-image img{
        height: 550px;
    }
}

@media (max-width: 767px){

    .vd-workshop-section{
        padding: 70px 0;
    }

    .vd-workshop-left h2{
        font-size: 32px;
    }

    .vd-workshop-text{
        font-size: 15px;
    }

    .vd-workshop-feature{
        flex-direction: column;
    }

    .vd-feature-content h4{
        font-size: 20px;
    }

    .vd-workshop-main-image{
        transform: rotate(0deg);
        border-radius: 26px;
    }

    .vd-workshop-main-image img{
        height: 420px;
    }

    .vd-floating-workshop-card{
        position: relative;
        margin-top: 20px;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }

    .vd-center-circle{
        width: 90px;
        height: 90px;
    }

    .vd-circle-inner{
        width: 60px;
        height: 60px;
    }
}
/* =========================================
   WHAT YOU WILL LEARN SECTION
========================================= */

.vd-learn-section{
    position: relative;
    background: linear-gradient(
        135deg,
        #f8f4ea,
        #ffffff,
        #f5efe1
    );
    overflow: hidden;
    padding: 120px 0;
}

/* Animated Grid */

.vd-learn-grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);

    background-size: 70px 70px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        transparent
    );
}

/* Glow */

.vd-learn-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.vd-learn-glow-1{
    width: 380px;
    height: 380px;
    background: rgba(212,175,55,0.12);
    top: -100px;
    left: -100px;
}

.vd-learn-glow-2{
    width: 320px;
    height: 320px;
    background: rgba(0,0,0,0.05);
    bottom: -100px;
    right: -100px;
}

/* Heading */

.vd-learn-heading{
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-bottom: 90px;
    z-index: 2;
}

.vd-learn-tag{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(212,175,55,0.16);
    color: #b8860b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vd-learn-heading h2{
    color: #111111;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-learn-heading h2 span{
    display: block;
    background: linear-gradient(
        90deg,
        #b8860b,
        #ffd86f,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-learn-heading p{
    color: #666666;
    font-size: 17px;
    line-height: 1.9;
}

/* Wrapper */

.vd-learn-wrapper{
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    z-index: 2;
}

/* Center Line */

.vd-learn-line{
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        rgba(212,175,55,0.1),
        #d4af37,
        rgba(212,175,55,0.1)
    );
    border-radius: 100px;
}

/* Card */

.vd-learn-card{
    position: relative;
    width: 48%;
}

/* Left */

.vd-left-card{
    align-self: flex-start;
}

/* Right */

.vd-right-card{
    align-self: flex-end;
}

/* Number */

.vd-learn-number{
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(212,175,55,0.25);
}

.vd-right-card .vd-learn-number{
    left: -90px;
    right: auto;
}

/* Card Content */

.vd-learn-content{
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius: 34px;
    padding: 40px;
    border: 1px solid rgba(212,175,55,0.10);
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

/* Shine */

.vd-learn-content::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.45),
        transparent
    );
    transform: rotate(25deg);
    animation: vdLearnShine 7s linear infinite;
}

@keyframes vdLearnShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

/* Hover */

.vd-learn-content:hover{
    transform: translateY(-12px);
    box-shadow: 0 28px 55px rgba(0,0,0,0.10);
}

/* Icon */

.vd-learn-icon{
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: linear-gradient(
        145deg,
        #111111,
        #2a2a2a
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
}

.vd-learn-icon::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 30px;
    border: 1px dashed rgba(212,175,55,0.30);
    animation: vdRotate 10s linear infinite;
}

.vd-learn-icon i{
    font-size: 30px;
    background: linear-gradient(
        180deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */

.vd-learn-content h3{
    color: #111111;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 18px;
}

.vd-learn-content p{
    color: #666666;
    font-size: 16px;
    line-height: 2;
    margin: 0;
}

/* Animation */

@keyframes vdRotate{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

/* Responsive */

@media (max-width: 1199px){

    .vd-learn-heading h2{
        font-size: 50px;
    }
}

@media (max-width: 991px){

    .vd-learn-heading h2{
        font-size: 40px;
    }

    .vd-learn-wrapper{
        gap: 40px;
    }

    .vd-learn-card{
        width: 100%;
        padding-left: 90px;
    }

    .vd-right-card{
        align-self: flex-start;
    }

    .vd-learn-line{
        left: 35px;
    }

    .vd-learn-number{
        left: 0 !important;
        right: auto;
    }
}

@media (max-width: 767px){

    .vd-learn-section{
        padding: 70px 0;
    }

    .vd-learn-heading{
        margin-bottom: 55px;
    }

    .vd-learn-heading h2{
        font-size: 32px;
    }

    .vd-learn-heading p{
        font-size: 15px;
    }

    .vd-learn-card{
        padding-left: 75px;
    }

    .vd-learn-line{
        left: 28px;
    }

    .vd-learn-number{
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .vd-learn-content{
        padding: 28px 24px;
        border-radius: 24px;
    }

    .vd-learn-icon{
        width: 70px;
        height: 70px;
        border-radius: 22px;
    }

    .vd-learn-icon i{
        font-size: 26px;
    }

    .vd-learn-content h3{
        font-size: 24px;
    }

    .vd-learn-content p{
        font-size: 15px;
    }
}
/* =========================================
   WORKSHOP REGISTER SECTION
========================================= */

.vd-workshop-register-section{
    position: relative;
    background: linear-gradient(
        135deg,
        #070707,
        #111111,
        #080808
    );
    overflow: hidden;
    padding: 120px 0;
}

/* Background Circles */

.vd-wr-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.vd-wr-circle-1{
    width: 420px;
    height: 420px;
    background: rgba(212,175,55,0.12);
    top: -120px;
    left: -120px;
}

.vd-wr-circle-2{
    width: 350px;
    height: 350px;
    background: rgba(255,215,0,0.08);
    bottom: -120px;
    right: -120px;
}

/* Heading */

.vd-wr-heading{
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    z-index: 2;
}

.vd-wr-tag{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.14);
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vd-wr-heading h2{
    color: #ffffff;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-wr-heading h2 span{
    display: block;
    background: linear-gradient(
        90deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-wr-heading p{
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.9;
}

/* Highlight Card */

.vd-highlight-card{
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.08);
    border-radius: 30px;
    padding: 34px 30px;
    overflow: hidden;
    transition: 0.45s ease;
    height: 100%;
}

/* Shine */

.vd-highlight-card::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.10),
        transparent
    );
    transform: rotate(25deg);
    animation: vdWrShine 7s linear infinite;
}

@keyframes vdWrShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

.vd-highlight-card:hover{
    transform: translateY(-12px);
    border-color: rgba(255,215,0,0.18);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* Icon */

.vd-highlight-icon{
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #1a1a1a,
        #090909
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
}

.vd-highlight-icon::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 28px;
    border: 1px dashed rgba(255,215,0,0.30);
    animation: vdRotateWr 12s linear infinite;
}

@keyframes vdRotateWr{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

.vd-highlight-icon i{
    font-size: 30px;
    background: linear-gradient(
        180deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */

.vd-highlight-card h3{
    color: #ffffff;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 16px;
}

.vd-highlight-card p{
    color: #bcbcbc;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* Why Join */

.vd-why-join-box{
    margin-top: 50px;
    padding: 40px;
    border-radius: 34px;
    background: linear-gradient(
        135deg,
        rgba(255,215,0,0.08),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,215,0,0.12);
}

.vd-why-join-box h3{
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.vd-why-join-box p{
    color: #c7c7c7;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 18px;
}

/* Register Box */

.vd-workshop-register-box{
    position: sticky;
    top: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.10);
    border-radius: 38px;
    overflow: hidden;
}

/* Image */

.vd-register-image{
    position: relative;
    height: 340px;
    overflow: hidden;
}

.vd-register-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.vd-workshop-register-box:hover .vd-register-image img{
    transform: scale(1.08);
}

.vd-register-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.10),
        rgba(0,0,0,0.60)
    );
}

/* Badge */

.vd-register-badge{
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    border-radius: 100px;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(255,215,0,0.12);
    backdrop-filter: blur(12px);
}

.vd-register-badge i{
    color: #d4af37;
}

.vd-register-badge span{
    color: #ffffff;
    font-weight: 600;
}

/* Content */

.vd-register-content{
    padding: 40px;
}

.vd-register-mini{
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.vd-register-content h3{
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    margin: 18px 0 22px;
}

.vd-register-content p{
    color: #bcbcbc;
    font-size: 15px;
    line-height: 2;
}

/* Includes */

.vd-register-includes{
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vd-include-item{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.vd-include-item i{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
}

/* Contact */

.vd-contact-box{
    margin-top: 40px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.08);
}

.vd-contact-box h4{
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

/* Contact Item */

.vd-contact-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 24px;
}

.vd-contact-item i{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-contact-item div{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vd-contact-item span{
    color: #d9d9d9;
    font-size: 15px;
    line-height: 1.8;
}

/* Button */

.vd-register-btn{
    width: 100%;
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
    border-radius: 100px;
    background: linear-gradient(
        90deg,
        #d4af37,
        #f0c14b
    );
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.45s ease;
}

.vd-register-btn span{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-register-btn:hover{
    transform: translateY(-6px);
    color: #111111;
    box-shadow: 0 20px 40px rgba(212,175,55,0.25);
}

/* Responsive */

@media (max-width: 1399px){

    .vd-wr-heading h2{
        font-size: 50px;
    }
}

@media (max-width: 991px){

    .vd-wr-heading h2{
        font-size: 40px;
    }

    .vd-workshop-register-box{
        position: relative;
        top: 0;
    }

    .vd-register-content h3{
        font-size: 34px;
    }
}

@media (max-width: 767px){

    .vd-workshop-register-section{
        padding: 70px 0;
    }

    .vd-wr-heading{
        margin-bottom: 55px;
    }

    .vd-wr-heading h2{
        font-size: 32px;
    }

    .vd-wr-heading p{
        font-size: 15px;
    }

    .vd-highlight-card{
        padding: 28px 24px;
        border-radius: 24px;
    }

    .vd-highlight-card h3{
        font-size: 22px;
    }

    .vd-why-join-box{
        padding: 28px 24px;
        border-radius: 24px;
    }

    .vd-why-join-box h3{
        font-size: 28px;
    }

    .vd-register-content{
        padding: 28px 24px;
    }

    .vd-register-content h3{
        font-size: 28px;
    }

    .vd-contact-box{
        padding: 24px;
    }

    .vd-contact-box h4{
        font-size: 24px;
    }

    .vd-contact-item{
        flex-direction: column;
    }
}
/* =========================================
   OUR STORY SECTION
========================================= */

.vd-story-section{
    position: relative;
    background: linear-gradient(
        135deg,
        #f7f4eb,
        #ffffff,
        #f5efe2
    );
    overflow: hidden;
    padding: 120px 0;
}

/* Background Texture */

.vd-story-noise{
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(#000 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Glow */

.vd-story-light{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.vd-story-light-1{
    width: 420px;
    height: 420px;
    background: rgba(212,175,55,0.14);
    top: -120px;
    left: -120px;
}

.vd-story-light-2{
    width: 350px;
    height: 350px;
    background: rgba(0,0,0,0.05);
    bottom: -100px;
    right: -100px;
}

/* Floating Rings */

.vd-floating-ring{
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(212,175,55,0.22);
    animation: vdRingRotate 14s linear infinite;
}

.vd-ring-1{
    width: 220px;
    height: 220px;
    top: 12%;
    right: 10%;
}

.vd-ring-2{
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 8%;
    animation-direction: reverse;
}

@keyframes vdRingRotate{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

/* Images Wrap */

.vd-story-images-wrap{
    position: relative;
    padding-right: 70px;
    z-index: 2;
}

/* Main Image */

.vd-story-main-image{
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    transform: rotate(-3deg);
    border: 1px solid rgba(212,175,55,0.14);
    box-shadow: 0 30px 70px rgba(0,0,0,0.10);
}

.vd-story-main-image img{
    width: 100%;
    height: 720px;
    object-fit: cover;
    transition: 0.7s ease;
}

.vd-story-main-image:hover img{
    transform: scale(1.08);
}

/* Overlay */

.vd-story-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.45)
    );
}

/* Year Box */

.vd-story-year{
    position: absolute;
    left: 35px;
    bottom: 35px;
    padding: 24px 30px;
    border-radius: 30px;
    background: rgba(0,0,0,0.70);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,215,0,0.14);
}

.vd-story-year h3{
    color: #d4af37;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 6px;
}

.vd-story-year span{
    color: #ffffff;
    font-size: 15px;
}

/* Small Image */

.vd-story-small-image{
    position: absolute;
    width: 280px;
    height: 320px;
    overflow: hidden;
    border-radius: 30px;
    right: 0;
    bottom: 60px;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    animation: vdStoryFloat 5s ease-in-out infinite;
}

.vd-story-small-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience Box */

.vd-story-exp-box{
    position: absolute;
    top: 50px;
    right: 20px;
    width: 220px;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        #111111,
        #1e1e1e
    );
    box-shadow: 0 20px 50px rgba(0,0,0,0.20);
    animation: vdStoryFloat 4s ease-in-out infinite;
}

.vd-story-exp-box h4{
    color: #d4af37;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 10px;
}

.vd-story-exp-box p{
    color: #d9d9d9;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Float */

@keyframes vdStoryFloat{

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-14px);
    }
}

/* Content */

.vd-story-content{
    position: relative;
    z-index: 2;
}

/* Tag */

.vd-story-tag{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(212,175,55,0.16);
    color: #b8860b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Heading */

.vd-story-content h2{
    color: #111111;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 30px;
}

.vd-story-content h2 span{
    display: block;
    background: linear-gradient(
        90deg,
        #b8860b,
        #ffd86f,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */

.vd-story-content p{
    color: #555555;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Highlight Cards */

.vd-story-highlights{
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 35px;
}

/* Card */

.vd-story-highlight-card{
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(212,175,55,0.10);
    backdrop-filter: blur(10px);
    transition: 0.45s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.vd-story-highlight-card:hover{
    transform: translateX(10px);
}

/* Icon */

.vd-story-icon{
    min-width: 74px;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #111111,
        #252525
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vd-story-icon::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 28px;
    border: 1px dashed rgba(212,175,55,0.30);
    animation: vdRingRotate 12s linear infinite;
}

.vd-story-icon i{
    font-size: 28px;
    background: linear-gradient(
        180deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Text */

.vd-story-highlight-card h4{
    color: #111111;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vd-story-highlight-card p{
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* Bottom Box */

.vd-story-bottom-box{
    margin-top: 40px;
    padding: 35px;
    border-radius: 34px;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.10),
        rgba(255,255,255,0.50)
    );
    border: 1px solid rgba(212,175,55,0.12);
}

/* Button */

.vd-story-btn{
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 34px;
    border-radius: 100px;
    background: linear-gradient(
        90deg,
        #d4af37,
        #f0c14b
    );
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.45s ease;
}

.vd-story-btn span{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vd-story-btn:hover{
    transform: translateY(-6px);
    color: #111111;
    box-shadow: 0 20px 40px rgba(212,175,55,0.25);
}

/* Responsive */

@media (max-width: 1399px){

    .vd-story-content h2{
        font-size: 50px;
    }
}

@media (max-width: 1199px){

    .vd-story-images-wrap{
        padding-right: 0;
    }

    .vd-story-small-image{
        width: 220px;
        height: 250px;
    }

    .vd-story-exp-box{
        right: 10px;
    }
}

@media (max-width: 991px){

    .vd-story-content h2{
        font-size: 40px;
    }

    .vd-story-main-image img{
        height: 550px;
    }

    .vd-story-small-image{
        display: none;
    }

    .vd-story-exp-box{
        top: auto;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 767px){

    .vd-story-section{
        padding: 70px 0;
    }

    .vd-story-content h2{
        font-size: 32px;
    }

    .vd-story-content p{
        font-size: 15px;
    }

    .vd-story-main-image{
        border-radius: 26px;
        transform: rotate(0deg);
    }

    .vd-story-main-image img{
        height: 420px;
    }

    .vd-story-year{
        left: 20px;
        bottom: 20px;
        padding: 18px 22px;
        border-radius: 22px;
    }

    .vd-story-year h3{
        font-size: 36px;
    }

    .vd-story-exp-box{
        width: 180px;
        padding: 22px;
    }

    .vd-story-exp-box h4{
        font-size: 42px;
    }

    .vd-story-highlight-card{
        flex-direction: column;
        padding: 24px;
    }

    .vd-story-highlight-card h4{
        font-size: 22px;
    }

    .vd-story-bottom-box{
        padding: 24px;
        border-radius: 24px;
    }
}
/* =========================================
   MISSION & VISION SECTION
========================================= */

.vd-mission-vision-section{
    position: relative;
    background: linear-gradient(
        135deg,
        #050505,
        #101010,
        #080808
    );
    overflow: hidden;
    padding: 120px 0;
}

/* Background Lines */

.vd-mv-bg-lines{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,215,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,215,0,0.05) 1px, transparent 1px);

    background-size: 80px 80px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        transparent
    );
}

/* Glow */

.vd-mv-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.vd-mv-glow-1{
    width: 450px;
    height: 450px;
    background: rgba(212,175,55,0.12);
    top: -120px;
    left: -120px;
}

.vd-mv-glow-2{
    width: 360px;
    height: 360px;
    background: rgba(255,215,0,0.08);
    bottom: -120px;
    right: -120px;
}

/* Rings */

.vd-mv-ring{
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,215,0,0.18);
    animation: vdMvRotate 14s linear infinite;
}

.vd-mv-ring-1{
    width: 220px;
    height: 220px;
    top: 10%;
    right: 8%;
}

.vd-mv-ring-2{
    width: 160px;
    height: 160px;
    bottom: 10%;
    left: 6%;
    animation-direction: reverse;
}

@keyframes vdMvRotate{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

/* Heading */

.vd-mv-heading{
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    z-index: 2;
}

.vd-mv-tag{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.14);
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.vd-mv-heading h2{
    color: #ffffff;
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.vd-mv-heading h2 span{
    display: block;
    background: linear-gradient(
        90deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-mv-heading p{
    color: #c2c2c2;
    font-size: 17px;
    line-height: 1.9;
}

/* Cards */

.vd-mv-card{
    position: relative;
    height: 100%;
    padding: 50px;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.08);
    backdrop-filter: blur(16px);
    transition: 0.45s ease;
}

/* Hover */

.vd-mv-card:hover{
    transform: translateY(-14px);
    border-color: rgba(255,215,0,0.18);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* Glow */

.vd-mv-card-glow{
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(212,175,55,0.10);
    filter: blur(80px);
    top: -80px;
    right: -80px;
}

/* Shine */

.vd-mv-card::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.08),
        transparent
    );
    transform: rotate(25deg);
    animation: vdMvShine 8s linear infinite;
}

@keyframes vdMvShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

/* Icon */

.vd-mv-icon{
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        #1b1b1b,
        #090909
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}

.vd-mv-icon::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 34px;
    border: 1px dashed rgba(255,215,0,0.28);
    animation: vdMvRotate 12s linear infinite;
}

.vd-mv-icon i{
    font-size: 34px;
    background: linear-gradient(
        180deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mini */

.vd-mv-mini{
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Title */

.vd-mv-card h3{
    color: #ffffff;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 28px;
}

/* Text */

.vd-mv-card p{
    color: #c8c8c8;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Points */

.vd-mv-points{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Point */

.vd-mv-point{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.06);
}

.vd-mv-point i{
    min-width: 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.vd-mv-point span{
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 600;
}

/* Bottom Strip */

.vd-mv-bottom-strip{
    margin-top: 70px;
    padding: 24px 30px;
    border-radius: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

/* Strip Item */

.vd-strip-item{
    display: flex;
    align-items: center;
    gap: 12px;
}

.vd-strip-item i{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.vd-strip-item span{
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive */

@media (max-width: 1399px){

    .vd-mv-heading h2{
        font-size: 50px;
    }

    .vd-mv-card h3{
        font-size: 36px;
    }
}

@media (max-width: 991px){

    .vd-mission-vision-section{
        padding: 90px 0;
    }

    .vd-mv-heading h2{
        font-size: 40px;
    }

    .vd-mv-card{
        padding: 40px;
    }

    .vd-mv-card h3{
        font-size: 32px;
    }
}

@media (max-width: 767px){

    .vd-mission-vision-section{
        padding: 70px 0;
    }

    .vd-mv-heading{
        margin-bottom: 55px;
    }

    .vd-mv-heading h2{
        font-size: 32px;
    }

    .vd-mv-heading p{
        font-size: 15px;
    }

    .vd-mv-card{
        padding: 28px 24px;
        border-radius: 26px;
    }

    .vd-mv-icon{
        width: 74px;
        height: 74px;
        border-radius: 22px;
    }

    .vd-mv-icon i{
        font-size: 28px;
    }

    .vd-mv-card h3{
        font-size: 26px;
    }

    .vd-mv-card p{
        font-size: 15px;
    }

    .vd-mv-point{
        padding: 16px 18px;
    }

    .vd-mv-bottom-strip{
        border-radius: 30px;
        gap: 20px;
        justify-content: flex-start;
    }
}
/* =========================================
   WHY CHOOSE US MODERN SECTION
========================================= */

.vd-why-choose-modern-section{
    position: relative;
    background: linear-gradient(
        135deg,
        #f7f4ea,
        #ffffff,
        #f3ede0
    );
    overflow: hidden;
    padding: 120px 0;
}

/* Grid */

.vd-wcm-grid{
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);

    background-size: 70px 70px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        transparent
    );
}

/* Glow */

.vd-wcm-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.vd-wcm-glow-1{
    width: 420px;
    height: 420px;
    background: rgba(212,175,55,0.12);
    top: -120px;
    left: -120px;
}

.vd-wcm-glow-2{
    width: 360px;
    height: 360px;
    background: rgba(0,0,0,0.05);
    bottom: -120px;
    right: -120px;
}

/* Floating Circle */

.vd-wcm-circle{
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(212,175,55,0.22);
    animation: vdRotateCircle 14s linear infinite;
}

.vd-wcm-circle-1{
    width: 220px;
    height: 220px;
    top: 8%;
    right: 8%;
}

.vd-wcm-circle-2{
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 6%;
    animation-direction: reverse;
}

@keyframes vdRotateCircle{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

/* Top Area */

.vd-wcm-top-area{
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
    z-index: 2;
}

/* Tag */

.vd-wcm-tag{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(212,175,55,0.16);
    color: #b8860b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* Heading */

.vd-wcm-left h2{
    color: #111111;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
}

.vd-wcm-left h2 span{
    display: block;
    background: linear-gradient(
        90deg,
        #b8860b,
        #ffd86f,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Right Text */

.vd-wcm-right p{
    color: #5f5f5f;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Showcase */

.vd-wcm-showcase{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
    gap: 35px;
    align-items: center;
    z-index: 2;
}

/* Side */

.vd-wcm-side{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card */

.vd-wcm-card{
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(212,175,55,0.10);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: 0.45s ease;
    box-shadow: 0 18px 45px rgba(0,0,0,0.05);
}

/* Shine */

.vd-wcm-card::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.12),
        transparent
    );
    transform: rotate(25deg);
    animation: vdWcmShine 8s linear infinite;
}

@keyframes vdWcmShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

/* Hover */

.vd-wcm-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.10);
}

/* Icon */

.vd-wcm-icon{
    min-width: 76px;
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        #111111,
        #252525
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vd-wcm-icon::after{
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 28px;
    border: 1px dashed rgba(212,175,55,0.28);
    animation: vdRotateCircle 10s linear infinite;
}

.vd-wcm-icon i{
    font-size: 28px;
    background: linear-gradient(
        180deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content */

.vd-wcm-content h3{
    color: #111111;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 12px;
}

.vd-wcm-content p{
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* Center */

.vd-wcm-center{
    display: flex;
    justify-content: center;
}

/* Main Circle */

.vd-wcm-main-circle{
    position: relative;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ring */

.vd-wcm-rotate-ring{
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 2px dashed rgba(212,175,55,0.28);
    animation: vdRotateCircle 18s linear infinite;
}

/* Image */

.vd-wcm-image{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid rgba(255,255,255,0.7);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.vd-wcm-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vd-wcm-image-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.40)
    );
}

/* Badge */

.vd-wcm-badge{
    position: absolute;
    bottom: 15px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #111111,
        #242424
    );
    border: 8px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    animation: vdFloatBadge 4s ease-in-out infinite;
}

.vd-wcm-badge h4{
    color: #d4af37;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 6px;
}

.vd-wcm-badge span{
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    max-width: 100px;
}

/* Dots */

.vd-wcm-dot{
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    animation: vdPulseDot 2s infinite;
}

.vd-dot-1{
    width: 22px;
    height: 22px;
    top: 18%;
    left: 0;
}

.vd-dot-2{
    width: 16px;
    height: 16px;
    top: 70%;
    left: -10px;
}

.vd-dot-3{
    width: 28px;
    height: 28px;
    top: 14%;
    right: 6%;
}

@keyframes vdPulseDot{

    0%,100%{
        transform: scale(1);
        opacity: 1;
    }

    50%{
        transform: scale(1.4);
        opacity: 0.6;
    }
}

@keyframes vdFloatBadge{

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-14px);
    }
}

/* Bottom Strip */

.vd-wcm-bottom-strip{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
}

/* Strip Item */

.vd-wcm-strip-item{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 100px;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(212,175,55,0.12);
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.vd-wcm-strip-item i{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Responsive */

@media (max-width: 1399px){

    .vd-wcm-left h2{
        font-size: 52px;
    }

    .vd-wcm-showcase{
        grid-template-columns: 1fr 400px 1fr;
    }

    .vd-wcm-main-circle{
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 1199px){

    .vd-wcm-showcase{
        grid-template-columns: 1fr;
    }

    .vd-wcm-center{
        order: -1;
        margin-bottom: 30px;
    }

    .vd-wcm-side{
        gap: 20px;
    }
}

@media (max-width: 991px){

    .vd-wcm-top-area{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vd-wcm-left h2{
        font-size: 42px;
    }
}

@media (max-width: 767px){

    .vd-why-choose-modern-section{
        padding: 70px 0;
    }

    .vd-wcm-top-area{
        margin-bottom: 60px;
    }

    .vd-wcm-left h2{
        font-size: 32px;
    }

    .vd-wcm-right p{
        font-size: 15px;
    }

    .vd-wcm-main-circle{
        width: 290px;
        height: 290px;
    }

    .vd-wcm-badge{
        width: 120px;
        height: 120px;
        right: -10px;
    }

    .vd-wcm-badge h4{
        font-size: 34px;
    }

    .vd-wcm-badge span{
        font-size: 11px;
        max-width: 70px;
    }

    .vd-wcm-card{
        padding: 22px;
        border-radius: 24px;
        flex-direction: column;
    }

    .vd-wcm-content h3{
        font-size: 22px;
    }

    .vd-wcm-content p{
        font-size: 14px;
    }

    .vd-wcm-strip-item{
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
   SERVICES INTRO SECTION
========================================= */

.vd-services-intro-section{
    position: relative;
    background: linear-gradient(
        135deg,
        #050505,
        #101010,
        #070707
    );
    overflow: hidden;
    padding: 110px 0;
}

/* Glow */

.vd-si-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.vd-si-glow-1{
    width: 380px;
    height: 380px;
    background: rgba(212,175,55,0.12);
    top: -100px;
    left: -100px;
}

.vd-si-glow-2{
    width: 300px;
    height: 300px;
    background: rgba(255,215,0,0.08);
    bottom: -100px;
    right: -100px;
}

/* Circles */

.vd-si-circle{
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,215,0,0.18);
    animation: vdSiRotate 15s linear infinite;
}

.vd-si-circle-1{
    width: 220px;
    height: 220px;
    top: 8%;
    right: 6%;
}

.vd-si-circle-2{
    width: 140px;
    height: 140px;
    bottom: 10%;
    left: 5%;
    animation-direction: reverse;
}

@keyframes vdSiRotate{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}

/* Main Wrap */

.vd-services-intro-wrap{
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 45px;
    align-items: center;
    z-index: 2;
}

/* Content */

.vd-services-intro-content{
    position: relative;
    padding: 55px;
    border-radius: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,215,0,0.10);
    overflow: hidden;
    backdrop-filter: blur(16px);
}

/* Shine */

.vd-services-intro-content::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 320%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,215,0,0.08),
        transparent
    );
    transform: rotate(25deg);
    animation: vdSiShine 8s linear infinite;
}

@keyframes vdSiShine{

    0%{
        left: -60%;
    }

    100%{
        left: 160%;
    }
}

/* Tag */

.vd-si-tag{
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.14);
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Heading */

.vd-services-intro-content h2{
    color: #ffffff;
    font-size: 58px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 30px;
}

.vd-services-intro-content h2 span{
    display: block;
    background: linear-gradient(
        90deg,
        #fff0b3,
        #d4af37,
        #8b6508
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */

.vd-services-intro-content p{
    color: #c6c6c6;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Right Box */

.vd-services-intro-box{
    position: relative;
    padding: 45px 35px;
    border-radius: 35px;
    background: linear-gradient(
        145deg,
        #151515,
        #070707
    );
    border: 1px solid rgba(255,215,0,0.12);
    text-align: center;
    overflow: hidden;
}

/* Glow Border */

.vd-services-intro-box::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 35px;
    padding: 1px;
    background: linear-gradient(
        180deg,
        rgba(255,215,0,0.45),
        transparent,
        rgba(255,215,0,0.20)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* Icon */

.vd-si-icon{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 28px;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vdSiFloat 4s ease-in-out infinite;
}

.vd-si-icon i{
    color: #ffffff;
    font-size: 44px;
}

@keyframes vdSiFloat{

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }
}

/* Right Text */

.vd-services-intro-box h3{
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
}

.vd-services-intro-box p{
    color: #c5c5c5;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* Responsive */

@media (max-width: 1199px){

    .vd-services-intro-content h2{
        font-size: 48px;
    }
}

@media (max-width: 991px){

    .vd-services-intro-wrap{
        grid-template-columns: 1fr;
    }

    .vd-services-intro-content h2{
        font-size: 40px;
    }
}

@media (max-width: 767px){

    .vd-services-intro-section{
        padding: 70px 0;
    }

    .vd-services-intro-content{
        padding: 32px 24px;
        border-radius: 26px;
    }

    .vd-services-intro-content h2{
        font-size: 30px;
    }

    .vd-services-intro-content p{
        font-size: 15px;
    }

    .vd-services-intro-box{
        padding: 35px 24px;
        border-radius: 26px;
    }

    .vd-si-icon{
        width: 85px;
        height: 85px;
    }

    .vd-si-icon i{
        font-size: 34px;
    }

    .vd-services-intro-box h3{
        font-size: 26px;
    }
}
/* =========================================
   DANCE SERVICES ROWS
========================================= */

.vd-dance-services-rows{
    background: #f8f6f1;
    position: relative;
    overflow: hidden;
}

/* Box */

.vd-dsr-box{
    margin-bottom: 70px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

/* Light */

.vd-dsr-light{
    background: linear-gradient(
        135deg,
        #fffdf8,
        #f5f1e7
    );
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Dark */

.vd-dsr-dark{
    background: linear-gradient(
        135deg,
        #0c0c0c,
        #171717
    );
    box-shadow: 0 30px 70px rgba(0,0,0,0.30);
}

/* Image */

.vd-dsr-image{
    position: relative;
    height: 100%;
    overflow: hidden;
}

.vd-dsr-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
    transition: 0.6s ease;
}

.vd-dsr-box:hover .vd-dsr-image img{
    transform: scale(1.08);
}

/* Content */

.vd-dsr-content{
    padding: 65px;
    position: relative;
}

/* Tag */

.vd-dsr-tag{
    display: inline-block;
    padding: 12px 26px;
    border-radius: 100px;
    background: rgba(212,175,55,0.12);
    color: #b8860b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Heading */

.vd-dsr-content h2{
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
}

/* Light Text */

.vd-dsr-light h2{
    color: #111111;
}

/* Dark Text */

.vd-dsr-dark h2{
    color: #ffffff;
}

/* Paragraph */

.vd-dsr-content p{
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

/* Light Paragraph */

.vd-dsr-light p{
    color: #444444;
}

/* Dark Paragraph */

.vd-dsr-dark p{
    color: #cfcfcf;
}

/* Learn */

.vd-dsr-content h4{
    font-size: 26px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 28px;
}

.vd-dsr-light h4{
    color: #111111;
}

.vd-dsr-dark h4{
    color: #ffffff;
}

/* Points */

.vd-dsr-points{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

/* Point */

.vd-dsr-point{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
}

/* Light Point */

.vd-dsr-light .vd-dsr-point{
    background: #ffffff;
    color: #222222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Dark Point */

.vd-dsr-dark .vd-dsr-point{
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    border: 1px solid rgba(255,215,0,0.08);
}

/* Hover */

.vd-dsr-point:hover{
    transform: translateY(-5px);
}

/* Icon */

.vd-dsr-point i{
    min-width: 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #d4af37,
        #8b6508
    );
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Responsive */

@media (max-width: 1199px){

    .vd-dsr-content{
        padding: 50px;
    }

    .vd-dsr-content h2{
        font-size: 40px;
    }
}

@media (max-width: 991px){

    .vd-dsr-image img{
        min-height: 400px;
    }

    .vd-dsr-content h2{
        font-size: 34px;
    }
}

@media (max-width: 767px){

    .vd-dsr-box{
        border-radius: 25px;
        margin-bottom: 45px;
    }

    .vd-dsr-content{
        padding: 35px 24px;
    }

    .vd-dsr-content h2{
        font-size: 28px;
    }

    .vd-dsr-content p{
        font-size: 15px;
    }

    .vd-dsr-content h4{
        font-size: 22px;
    }

    .vd-dsr-points{
        grid-template-columns: 1fr;
    }

    .vd-dsr-image img{
        min-height: 280px;
    }

    .vd-dsr-point{
        font-size: 14px;
    }
}