
       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body,
html {
    margin: 0;
    padding: 0;
    
}
       .voc-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .voc-header {
            background: linear-gradient(135deg, #ff9933 0%, #ffffff 50%, #138808 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .voc-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .voc-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .voc-logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }

        .voc-logo h1 {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: bold;
        }

        .voc-nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .voc-nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .voc-nav-links a:hover {
            color: #e74c3c;
        }

        /* Hero Section */
        .voc-hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1200&h=800&fit=crop') center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .voc-hero-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .voc-hero-tagline {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #ffd700;
            font-weight: 600;
        }

        .voc-hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .voc-quick-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 3rem;
        }

        .voc-quick-link-btn {
            background: rgba(255,255,255,0.9);
            color: #2c3e50;
            padding: 15px 25px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .voc-quick-link-btn:hover {
            background: #e74c3c;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* About Section */
        .voc-about {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .voc-section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 3rem;
            position: relative;
        }

        .voc-section-title::after {
            content: '';
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #ff9933, #138808);
            display: block;
            margin: 20px auto;
            border-radius: 2px;
        }

        .voc-about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 50px;
        }

        .voc-about-text h3 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .voc-about-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #555;
        }

        .voc-about-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .voc-about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .voc-about-image:hover img {
            transform: scale(1.05);
        }

        /* Core Values */
        .voc-core-values {
            padding: 80px 0;
            background: white;
        }

        .voc-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .voc-value-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .voc-value-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .voc-value-card:hover::before {
            animation: voc-shine 0.6s ease-in-out;
        }

        @keyframes voc-shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
        }

        .voc-value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .voc-value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .voc-value-card h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        /* Mission & Vision */
        .voc-mission-vision {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .voc-mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 50px;
        }

        .voc-mv-card {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .voc-mv-card h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ffd700;
        }

        .voc-mv-card p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Call to Action */
        .voc-cta {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            text-align: center;
            color: white;
        }

        .voc-cta h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .voc-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .voc-cta-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .voc-cta-btn {
            background: white;
            color: #2c3e50;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .voc-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            background: #f8f9fa;
        }

        /* Footer */
        .voc-footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 30px;
        }

        .voc-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .voc-footer-section h3 {
            margin-bottom: 20px;
            color: #ffd700;
        }

        .voc-footer-section p, .voc-footer-section a {
            color: #ecf0f1;
            text-decoration: none;
            line-height: 1.8;
        }

        .voc-footer-section a:hover {
            color: #ffd700;
        }

        .voc-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
        }

        /* Mobile Menu */
        .voc-mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }

        .voc-mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: 0.3s;
        }

        .voc-nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.98);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
        }

        .voc-nav-mobile.voc-active {
            display: block;
        }

        .voc-nav-mobile ul {
            list-style: none;
            padding: 20px;
            margin: 0;
        }

        .voc-nav-mobile li {
            margin: 15px 0;
        }

        .voc-nav-mobile a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 10px 0;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* Responsive Design */
        
        /* Extra Large Devices (1400px and up) */
        @media (min-width: 1400px) {
            .voc-container {
                max-width: 1400px;
            }
            
            .voc-hero-content h2 {
                font-size: 4rem;
            }
            
            .voc-hero-tagline {
                font-size: 2rem;
            }
            
            .voc-values-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Large Devices (1200px to 1399px) */
        @media (max-width: 1399px) and (min-width: 1200px) {
            .voc-values-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Medium Large Devices (992px to 1199px) */
        @media (max-width: 1199px) and (min-width: 992px) {
            .voc-container {
                padding: 0 30px;
            }
            
            .voc-hero-content h2 {
                font-size: 3.2rem;
            }
            
            .voc-about-grid, .voc-mv-grid {
                gap: 50px;
            }
            
            .voc-values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        /* Medium Devices (768px to 991px) */
        @media (max-width: 991px) and (min-width: 768px) {
            .voc-container {
                padding: 0 25px;
            }
            
            .voc-nav-links {
                gap: 20px;
            }
            
            .voc-nav-links a {
                font-size: 0.9rem;
            }
            
            .voc-hero-content h2 {
                font-size: 2.8rem;
            }
            
            .voc-hero-tagline {
                font-size: 1.6rem;
            }
            
            .voc-hero-content p {
                font-size: 1.1rem;
            }
            
            .voc-about-grid, .voc-mv-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .voc-about-image img {
                height: 350px;
            }
            
            .voc-values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .voc-value-card {
                padding: 30px 20px;
            }
            
            .voc-section-title {
                font-size: 2.4rem;
            }
        }

        /* Small Devices (576px to 767px) */
        @media (max-width: 767px) and (min-width: 576px) {
            .voc-container {
                padding: 0 20px;
            }
            
            .voc-nav-links {
                display: none;
            }
            
            .voc-mobile-menu-toggle {
                display: flex;
            }
            
            .voc-logo h1 {
                font-size: 1.5rem;
            }
            
            .voc-hero {
                height: 70vh;
                padding: 40px 0;
            }
            
            .voc-hero-content h2 {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }
            
            .voc-hero-tagline {
                font-size: 1.4rem;
                margin-bottom: 1.5rem;
            }
            
            .voc-hero-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }
            
            .voc-quick-links {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
                margin-top: 2rem;
            }
            
            .voc-quick-link-btn {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .voc-about, .voc-core-values, .voc-mission-vision, .voc-cta {
                padding: 60px 0;
            }
            
            .voc-section-title {
                font-size: 2.2rem;
                margin-bottom: 2rem;
            }
            
            .voc-about-grid, .voc-mv-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .voc-about-text h3 {
                font-size: 1.8rem;
            }
            
            .voc-about-text p {
                font-size: 1.1rem;
            }
            
            .voc-about-image img {
                height: 300px;
            }
            
            .voc-values-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .voc-value-card {
                padding: 25px 15px;
            }
            
            .voc-value-icon {
                font-size: 2.5rem;
            }
            
            .voc-value-card h4 {
                font-size: 1.3rem;
            }
            
            .voc-value-card p {
                font-size: 0.9rem;
            }
            
            .voc-mv-card {
                padding: 30px 25px;
            }
            
            .voc-mv-card h3 {
                font-size: 1.6rem;
            }
            
            .voc-mv-card p {
                font-size: 1rem;
            }
            
            .voc-cta h2 {
                font-size: 2.2rem;
            }
            
            .voc-cta p {
                font-size: 1.1rem;
            }
            
            .voc-cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .voc-cta-btn {
                padding: 12px 25px;
                font-size: 1rem;
                width: 200px;
            }
        }

        /* Extra Small Devices (up to 575px) */
        @media (max-width: 575px) {
            .voc-container {
                padding: 0 15px;
            }
            
            .voc-nav-links {
                display: none;
            }
            
            .voc-mobile-menu-toggle {
                display: flex;
            }
            
            .voc-logo {
                gap: 10px;
            }
            
            .voc-logo img {
                width: 40px;
                height: 40px;
            }
            
            .voc-logo h1 {
                font-size: 1.3rem;
            }
            
            .voc-hero {
                height: 60vh;
                padding: 30px 0;
            }
            
            .voc-hero-content h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
                line-height: 1.2;
            }
            
            .voc-hero-tagline {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
            }
            
            .voc-hero-content p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }
            
            .voc-quick-links {
                grid-template-columns: 1fr;
                gap: 12px;
                margin-top: 1.5rem;
            }
            
            .voc-quick-link-btn {
                padding: 10px 15px;
                font-size: 0.95rem;
                border-radius: 25px;
            }
            
            .voc-about, .voc-core-values, .voc-mission-vision, .voc-cta {
                padding: 50px 0;
            }
            
            .voc-section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
            
            .voc-section-title::after {
                width: 60px;
                height: 3px;
                margin: 15px auto;
            }
            
            .voc-about-grid, .voc-mv-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 30px;
            }
            
            .voc-about-text h3 {
                font-size: 1.6rem;
                margin-bottom: 15px;
            }
            
            .voc-about-text p {
                font-size: 1rem;
                margin-bottom: 20px;
                line-height: 1.7;
            }
            
            .voc-about-image img {
                height: 250px;
            }
            
            .voc-values-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-top: 30px;
            }
            
            .voc-value-card {
                padding: 20px 15px;
                border-radius: 10px;
            }
            
            .voc-value-icon {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }
            
            .voc-value-card h4 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }
            
            .voc-value-card p {
                font-size: 0.85rem;
                line-height: 1.5;
            }
            
            .voc-mv-grid {
                margin-top: 30px;
            }
            
            .voc-mv-card {
                padding: 25px 20px;
                border-radius: 10px;
            }
            
            .voc-mv-card h3 {
                font-size: 1.4rem;
                margin-bottom: 15px;
            }
            
            .voc-mv-card p {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            .voc-cta h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }
            
            .voc-cta p {
                font-size: 1rem;
                margin-bottom: 30px;
                line-height: 1.6;
            }
            
            .voc-cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .voc-cta-btn {
                padding: 10px 20px;
                font-size: 0.95rem;
                width: 180px;
                border-radius: 25px;
            }
            
            .voc-footer {
                padding: 40px 0 20px;
            }
            
            .voc-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 20px;
            }
            
            .voc-footer-section h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .voc-footer-section p {
                font-size: 0.9rem;
                line-height: 1.6;
            }
            
            .voc-footer-bottom {
                padding-top: 20px;
                font-size: 0.85rem;
            }
        }

        /* Ultra Small Devices (up to 320px) */
        @media (max-width: 320px) {
            .voc-container {
                padding: 0 10px;
            }
            
            .voc-hero-content h2 {
                font-size: 1.8rem;
            }
            
            .voc-hero-tagline {
                font-size: 1.1rem;
            }
            
            .voc-section-title {
                font-size: 1.6rem;
            }
            
            .voc-value-icon {
                font-size: 2rem;
            }
            
            .voc-quick-link-btn, .voc-cta-btn {
                width: 100%;
            }
        }