/* CSS Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A2845;
    --accent: #AF4D58;
    --orange: #D68F41;
    --cream: #F4EFE9;
    --header-bg: #eaeaea;
    --pure-white: #FFFFFF;
    --grey: #666666;
    --light-grey: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #0A2845 0%, #AF4D58 100%);
    --gradient-2: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    --gradient-3: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
    --gradient-soft: linear-gradient(135deg, rgba(10, 40, 69, 0.05) 0%, rgba(175, 77, 88, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--primary);
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

/* Cursor Trail Effect - Hide on mobile */
.vd-pu-cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(175, 77, 88, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.1s ease;
    display: none;
}

@media (min-width: 1024px) {
    .vd-pu-cursor-trail {
        display: block;
    }
}

/* Noise Texture */
.vd-pu-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.02;
    z-index: 1;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
}

/* Gandhi Quote Marquee */
.vd-pu-quote-marquee {
    background: var(--gradient-1);
    color: var(--pure-white);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.vd-pu-quote-text {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Hero Section */
.vd-pu-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 40, 69, 0.9) 0%, rgba(175, 77, 88, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1562774053-701939374585?w=1200') center/cover;
    width: 100%;
    max-width: 100vw;
}

.vd-pu-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: min(1200px, 90vw);
    width: 100%;
    padding: 0 20px;
    margin-top: 40px;
    box-sizing: border-box;
}

.vd-pu-hero-tag {
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--orange);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.vd-pu-hero-title {
    font-size: clamp(28px, 6vw, 120px);
    font-weight: 100;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--pure-white);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-hero-title strong {
    font-weight: 700;
    color: var(--orange);
}

.vd-pu-hero-subtitle {
    font-size: clamp(14px, 2.5vw, 28px);
    font-weight: 200;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    max-width: 100%;
}

.vd-pu-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: max-content;
    text-align: center;
}

.vd-pu-hero-btn-primary {
    background: var(--gradient-2);
    color: var(--pure-white);
    border: 2px solid transparent;
}

.vd-pu-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(175, 77, 88, 0.4);
}

.vd-pu-hero-btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.vd-pu-hero-btn-outline:hover {
    background: var(--pure-white);
    color: var(--primary);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.vd-pu-about-section {
    padding: 120px 0;
    background: var(--pure-white);
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.vd-pu-section-header {
    text-align: center;
    max-width: min(800px, 90vw);
    margin: 0 auto 80px;
    padding: 0 20px;
}

.vd-pu-section-title {
    font-size: clamp(24px, 4vw, 56px);
    font-weight: 200;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-section-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    color: var(--grey);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-about-container {
    max-width: min(1400px, 90vw);
    margin-bottom: 0 !important;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
}

.vd-pu-about-content {
    padding: 20px;
    box-sizing: border-box;
}

.vd-pu-about-text {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Result Badge */
.vd-pu-badge-container {
    display: flex;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.vd-pu-result-badge {
    display: inline-block;
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    color: #FFFFFF;
    padding: 20px 30px;
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    transform: perspective(500px) rotateX(20deg) rotateY(-10deg);
    box-shadow: 
        0 20px 40px rgba(175, 77, 88, 0.3),
        -10px 10px 0 rgba(10, 40, 69, 0.8),
        -20px 20px 0 rgba(10, 40, 69, 0.6);
    animation: isometricFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.vd-pu-result-badge::before {
    content: '🏆';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: clamp(20px, 4vw, 30px);
    animation: trophySpin 3s linear infinite;
}

.vd-pu-result-badge:hover {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.1);
    box-shadow: 
        0 30px 60px rgba(175, 77, 88, 0.5),
        0 0 0 rgba(10, 40, 69, 0.8),
        0 0 0 rgba(10, 40, 69, 0.6);
}

@keyframes isometricFloat {
    0%, 100% { 
        transform: perspective(500px) rotateX(20deg) rotateY(-10deg) translateZ(0px); 
    }
    50% { 
        transform: perspective(500px) rotateX(20deg) rotateY(-10deg) translateZ(20px); 
    }
}

@keyframes trophySpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vd-pu-about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    max-width: 100%;
}

.vd-pu-about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Contact Section Styles */
.vd-pu-contact-section {
    padding: 20px 0;
    background: linear-gradient(180deg, var(--pure-white) 0%, var(--light-grey) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.vd-pu-contact-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.vd-pu-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.vd-pu-bg-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.vd-pu-bg-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-2);
    bottom: -150px;
    left: -50px;
    animation: float 25s ease-in-out infinite reverse;
}

.vd-pu-bg-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(0) rotate(180deg); }
    75% { transform: translateY(30px) rotate(270deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.03; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.06; }
}

.vd-pu-contact-container {
    max-width: 1400px;
    margin-top:0 !important;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;

}

/* Section Header */
.vd-pu-contact-header {
    text-align: center;
    margin-top: 0!important;
    margin-bottom: 80px;
    animation: fadeInDown 0.8s ease;
}

.vd-pu-contact-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--pure-white);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.vd-pu-contact-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.vd-pu-contact-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 200;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.vd-pu-contact-title strong {
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vd-pu-contact-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--grey);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Cards Grid */
.vd-pu-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.vd-pu-contact-card {
    background: var(--pure-white);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease backwards;
}

.vd-pu-contact-card:nth-child(1) { animation-delay: 0.2s; }
.vd-pu-contact-card:nth-child(2) { animation-delay: 0.3s; }
.vd-pu-contact-card:nth-child(3) { animation-delay: 0.4s; }

.vd-pu-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.vd-pu-contact-card:hover::before {
    transform: translateY(0);
}

.vd-pu-contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vd-pu-contact-card-content {
    position: relative;
    z-index: 1;
}

.vd-pu-contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    position: relative;
}

.vd-pu-contact-icon-bg {
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vd-pu-contact-card:hover .vd-pu-contact-icon-bg {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(175, 77, 88, 0.3);
}

.vd-pu-contact-icon {
    font-size: 36px;
    color: var(--pure-white);
    z-index: 2;
    position: relative;
}

.vd-pu-contact-icon-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: -100%;
    transition: left 0.5s ease;
}

.vd-pu-contact-card:hover .vd-pu-contact-icon-bg::after {
    left: 100%;
}

.vd-pu-contact-designation {
    font-size: 14px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.vd-pu-contact-designation::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.vd-pu-contact-card:hover .vd-pu-contact-designation::after {
    width: 100%;
}

.vd-pu-contact-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.vd-pu-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vd-pu-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-grey);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.vd-pu-contact-item:hover {
    background: var(--gradient-2);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(175, 77, 88, 0.2);
}

.vd-pu-contact-item:hover .vd-pu-contact-item-icon,
.vd-pu-contact-item:hover .vd-pu-contact-item-text {
    color: var(--pure-white);
}

.vd-pu-contact-item-icon {
    font-size: 20px;
    color: var(--accent);
    transition: all 0.3s ease;
    width: 30px;
    text-align: center;
}

.vd-pu-contact-item-text {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Special Principal Card Styling */
.vd-pu-contact-card.vd-pu-principal-card {
    background: linear-gradient(135deg, var(--pure-white) 0%, rgba(175, 77, 88, 0.05) 100%);
    border: 2px solid rgba(175, 77, 88, 0.1);
}

.vd-pu-principal-card .vd-pu-contact-icon-bg {
    background: var(--gradient-3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlights Section */
.vd-pu-highlights-section {
    padding: 60px 0;
    background: var(--gradient-soft);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.vd-pu-highlights-grid {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    box-sizing: border-box;
}

.vd-pu-highlight-item {
    background: var(--pure-white);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    max-width: 100%;
}

.vd-pu-highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vd-pu-highlight-item i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

.vd-pu-highlight-item h3 {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--primary);
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-highlight-item p {
    color: var(--grey);
    line-height: 1.6;
    font-size: clamp(12px, 2vw, 14px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Investment Quote Section */
.vd-pu-investment-quote {
    padding: 80px 0;
    background: var(--gradient-3);
    color: var(--pure-white);
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.vd-pu-quote-content {
    max-width: min(800px, 90vw);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.vd-pu-quote-text {
    font-size: clamp(18px, 3vw, 48px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-quote-author {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    opacity: 0.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Floating Icons Background */
.vd-pu-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.vd-pu-floating-icon {
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.1);
    opacity: 0.3;
    animation: vdPuFloat 15s infinite ease-in-out;
}

.vd-pu-floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.vd-pu-floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.vd-pu-floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.vd-pu-floating-icon:nth-child(4) { bottom: 10%; right: 25%; animation-delay: 6s; }
.vd-pu-floating-icon:nth-child(5) { top: 50%; left: 50%; animation-delay: 8s; }

@keyframes vdPuFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(-5deg); }
    75% { transform: translateY(20px) rotate(3deg); }
}

.vd-pu-resources-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Section Header */
.vd-pu-resources-header {
    text-align: center;
    margin-bottom: 80px;
}

.vd-pu-resources-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--pure-white);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.vd-pu-resources-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 200;
    color: var(--pure-white);
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-resources-title strong {
    font-weight: 700;
    color: var(--orange);
}

.vd-pu-resources-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Resource Cards Grid */
.vd-pu-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.vd-pu-resource-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: fadeInUp 0.8s ease backwards;
    max-width: 100%;
    box-sizing: border-box;
}

.vd-pu-resource-card:nth-child(1) { animation-delay: 0.3s; }
.vd-pu-resource-card:nth-child(2) { animation-delay: 0.4s; }
.vd-pu-resource-card:nth-child(3) { animation-delay: 0.5s; }

.vd-pu-resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.vd-pu-resource-card:hover::before {
    transform: scaleX(1);
}

.vd-pu-resource-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vd-pu-resource-card-header {
    padding: 40px 30px 30px;
    background: var(--gradient-soft);
    position: relative;
    box-sizing: border-box;
}

.vd-pu-resource-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.vd-pu-resource-card:hover .vd-pu-resource-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(175, 77, 88, 0.3);
}

.vd-pu-resource-icon {
    font-size: 36px;
    color: var(--pure-white);
}

.vd-pu-resource-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--pure-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vd-pu-resource-card-body {
    padding: 0 30px 40px;
    box-sizing: border-box;
}

.vd-pu-resource-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-resource-description {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: clamp(14px, 2vw, 16px);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-resource-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.vd-pu-resource-features li {
    padding: 10px 0;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: clamp(13px, 2vw, 15px);
    transition: all 0.3s ease;
}

.vd-pu-resource-features li:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.vd-pu-resource-features i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.vd-pu-resource-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-2);
    color: var(--pure-white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(13px, 2vw, 15px);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: max-content;
}

.vd-pu-resource-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.vd-pu-resource-btn:hover::before {
    left: 100%;
}

.vd-pu-resource-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(175, 77, 88, 0.4);
}

.vd-pu-resource-btn i {
    transition: transform 0.3s ease;
}

.vd-pu-resource-btn:hover i {
    transform: translateX(5px);
}

/* Gallery Section */
.vd-pu-gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
    color: #FFFFFF;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.vd-pu-gallery-container {
    max-width: min(1400px, 90vw);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.vd-pu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vd-pu-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
}

.vd-pu-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vd-pu-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
    max-width: 100%;
}

.vd-pu-gallery-item:hover img {
    transform: scale(1.1);
}

.vd-pu-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.vd-pu-gallery-item:hover .vd-pu-gallery-overlay {
    transform: translateY(0);
}

.vd-pu-gallery-title {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.vd-pu-gallery-description {
    font-size: clamp(12px, 2vw, 14px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .vd-pu-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 30px;
    }
    
    .vd-pu-highlights-grid,
    .vd-pu-gallery-container {
        padding: 0 30px;
    }

    .vd-pu-contact-container {
        padding: 0 40px;
    }

    .vd-pu-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vd-pu-resources-container {
        padding: 0 30px;
    }

    .vd-pu-resources-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vd-pu-hero-content {
        padding: 0 15px;
        max-width: 95vw;
    }

    .vd-pu-hero-title {
        font-size: clamp(24px, 8vw, 42px);
        margin-bottom: 20px;
    }

    .vd-pu-hero-subtitle {
        font-size: clamp(14px, 4vw, 18px);
        margin-bottom: 30px;
        letter-spacing: 1px;
    }

    .vd-pu-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .vd-pu-hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 30px;
        font-size: 14px;
        gap: 8px;
    }

    .vd-pu-about-section,
    .vd-pu-highlights-section,
    .vd-pu-gallery-section,
    .vd-pu-investment-quote,
    .vd-pu-contact-section {
        padding: 60px 0;
    }

    .vd-pu-section-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .vd-pu-about-container,
    .vd-pu-highlights-grid,
    .vd-pu-gallery-container {
        padding: 0 15px;
        max-width: 95vw;
    }

    .vd-pu-about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vd-pu-about-content {
        padding: 15px;
    }

    .vd-pu-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vd-pu-highlight-item {
        padding: 25px 20px;
    }

    .vd-pu-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vd-pu-quote-marquee {
        padding: 10px 0;
    }

    .vd-pu-quote-text {
        font-size: 14px;
    }

    .vd-pu-result-badge {
        font-size: 16px;
        padding: 18px 25px;
        letter-spacing: 1px;
        transform: perspective(400px) rotateX(15deg) rotateY(-8deg);
        box-shadow: 
            0 15px 30px rgba(175, 77, 88, 0.3),
            -8px 8px 0 rgba(10, 40, 69, 0.8),
            -15px 15px 0 rgba(10, 40, 69, 0.6);
    }

    .vd-pu-contact-container {
        padding: 0 20px;
    }

    .vd-pu-contact-header {
        margin-bottom: 60px;
    }

    .vd-pu-contact-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .vd-pu-contact-subtitle {
        font-size: clamp(14px, 3vw, 18px);
    }

    .vd-pu-contact-card {
        padding: 30px;
    }

    .vd-pu-contact-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .vd-pu-contact-icon {
        font-size: 30px;
    }

    .vd-pu-contact-name {
        font-size: 20px;
    }

    .vd-pu-contact-item {
        padding: 12px;
    }

    .vd-pu-contact-item-text {
        font-size: 14px;
    }

    .vd-pu-resources-container {
        padding: 0 20px;
    }

    .vd-pu-resources-header {
        margin-bottom: 60px;
    }

    .vd-pu-resources-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .vd-pu-resources-subtitle {
        font-size: clamp(14px, 3vw, 18px);
    }

    .vd-pu-resource-card-header {
        padding: 30px 25px 20px;
    }

    .vd-pu-resource-card-body {
        padding: 0 25px 30px;
    }

    .vd-pu-resource-title {
        font-size: clamp(18px, 4vw, 24px);
    }

    .vd-pu-resource-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .vd-pu-resource-icon {
        font-size: 30px;
    }

    .vd-pu-resource-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .vd-pu-hero-content {
        padding: 0 10px;
        max-width: 98vw;
    }

    .vd-pu-hero-title {
        font-size: clamp(22px, 7vw, 36px);
        letter-spacing: -1px;
    }

    .vd-pu-hero-tag {
        letter-spacing: 3px;
        font-size: 14px;
    }

    .vd-pu-hero-buttons {
        gap: 12px;
    }

    .vd-pu-hero-btn {
        padding: 14px 25px;
        font-size: 13px;
        max-width: 260px;
    }

    .vd-pu-highlights-grid {
        grid-template-columns: 1fr;
    }

    .vd-pu-highlight-item {
        padding: 20px 15px;
    }

    .vd-pu-result-badge {
        font-size: 14px;
        padding: 15px 20px;
        letter-spacing: 1px;
        transform: perspective(350px) rotateX(12deg) rotateY(-6deg);
        box-shadow: 
            0 12px 25px rgba(175, 77, 88, 0.3),
            -6px 6px 0 rgba(10, 40, 69, 0.8),
            -12px 12px 0 rgba(10, 40, 69, 0.6);
    }

    .vd-pu-about-container,
    .vd-pu-highlights-grid,
    .vd-pu-gallery-container {
        padding: 0 10px;
        max-width: 98vw;
    }

    .vd-pu-investment-quote {
        padding: 60px 0;
    }

    .vd-pu-contact-container,
    .vd-pu-resources-container {
        padding: 0 15px;
    }

    .vd-pu-contact-badge,
    .vd-pu-resources-badge {
        font-size: 10px;
        padding: 8px 20px;
        letter-spacing: 2px;
    }

    .vd-pu-contact-item:hover {
        transform: translateX(5px);
    }

    .vd-pu-resource-card-header {
        padding: 25px 20px 15px;
    }

    .vd-pu-resource-card-body {
        padding: 0 20px 25px;
    }

    .vd-pu-resource-btn {
        padding: 15px 25px;
        font-size: 12px;
        gap: 10px;
    }

    .vd-pu-floating-icon {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .vd-pu-hero-content {
        padding: 0 8px;
        max-width: 99vw;
    }

    .vd-pu-hero-btn {
        max-width: 240px;
        padding: 12px 20px;
        font-size: 12px;
    }

    .vd-pu-result-badge {
        font-size: 13px;
        padding: 12px 18px;
        max-width: 85%;
    }

    .vd-pu-about-container,
    .vd-pu-highlights-grid,
    .vd-pu-gallery-container,
    .vd-pu-contact-container,
    .vd-pu-resources-container {
        padding: 0 8px;
        max-width: 99vw;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--pure-white);
}

/* Fix for preventing extra spacing at bottom */
.vd-pu-investment-quote::after {
    content: '';
    display: block;
    clear: both;
    height: 0;
}

/* Ensure no margin/padding spillover */
.vd-pu-investment-quote > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}