@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&display=swap');

@font-face {
    font-family: FontAwesome;
    src: url(../fonts/fontawesome-webfont.eot?v=4.6.3);
    src: url(../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format('embedded-opentype'), url(../fonts/fontawesome-webfont.woff2?v=4.6.3) format('woff2'), url(../fonts/fontawesome-webfont.woff?v=4.6.3) format('woff'), url(../fonts/fontawesome-webfont.ttf?v=4.6.3) format('truetype'), url(../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal
}



/* OMM PRAKASH */


    
        :root {
            /* Primary Colors - from logo */
            --primary-orange: #FF6B35;
            --primary-pink: #E91E8C;
            --primary-blue: #0096D6;
            --primary-purple: #6B4C9A;
            --primary-yellow: #FFD700;
            --primary-green: #7CB342;
            
            /* Supporting Colors */
            --light-orange: #FFB399;
            --light-pink: #FFB3D9;
            --light-blue: #99D6F5;
            --light-purple: #C4B5E0;
            
            /* Neutral Colors */
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --medium-gray: #E0E0E0;
            --dark-gray: #616161;
            --text-dark: #333333;
            
            /* Semantic Colors */
            --success: #7CB342;
            --error: #E91E8C;
            --warning: #FFD700;
            --info: #0096D6;
            
            /* Shadows & Effects */
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
            --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-pink) 50%, var(--primary-purple) 100%);
            --gradient-warm: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-orange) 100%);
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
           
            background-color: var(--background-color);
            padding-top: 130px; /* Account for fixed header */
        }


       

       /* Header Container */
         /* Header Container */
        .opcswt-header-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
            background: var(--white);
        }

        /* Top Info Bar */
        .opcswt-top-bar {
            background: var(--gradient-primary);
            padding: 14px 40px;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--white);
        }

        .opcswt-top-bar-left {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .opcswt-contact-info {
            display: flex;
            align-items: center;
            gap: 30px;
            font-size: 1.3rem;
        }

        .opcswt-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.2s ease;
        }

        .opcswt-contact-item:hover {
            transform: translateY(-1px);
        }

        .opcswt-contact-item i {
            font-size: 1rem;
        }

        .opcswt-social-links {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .opcswt-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .opcswt-social-link:hover {
            background: var(--white);
            color: var(--primary-purple);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .opcswt-social-link i {
            font-size: 0.95rem;
        }

        .opcswt-address {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        /* Main Navigation */
        .opcswt-navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--white);
            padding: 9px 40px;
            transition: all 0.3s ease;
        }

        .opcswt-navbar.opcswt-sticky {
            padding: 14px 40px;
            box-shadow: var(--shadow-md);
        }

        /* Logo and Brand */
        .opcswt-brand {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .opcswt-logo {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-warm);
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .opcswt-logo:hover {
            transform: scale(1.05);
        }

        .opcswt-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .opcswt-org-name {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
        }

        .opcswt-org-main-name {
            color: var(--primary-purple);
            font-weight: 700;
            font-size: 1.4rem;
            white-space: nowrap;
            letter-spacing: -0.3px;
        }

        .opcswt-org-trust-name {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: 0.2px;
        }

        /* Desktop Navigation Menu */
        .opcswt-nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .opcswt-nav-item {
            position: relative;
        }

        .opcswt-nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            position: relative;
            padding: 12px 0;
            transition: color 0.3s ease;
            display: block;
        }

        .opcswt-nav-link:hover {
            color: var(--primary-purple);
        }

        .opcswt-nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .opcswt-nav-link:hover::after {
            width: 100%;
        }

        /* CTA Button */
        .opcswt-cta-button {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            font-size: 1rem;
            margin-left: 10px;
        }

        .opcswt-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .opcswt-cta-button::after {
            display: none;
        }

        /* Desktop Dropdown Menu */
        .opcswt-submenu {
            list-style: none;
            position: absolute;
            top: calc(100% + 12px);
            left: 0;
            background: var(--white);
            padding: 16px 0;
            min-width: 250px;
            box-shadow: var(--shadow-lg);
            border-radius: 10px;
            display: none;
            z-index: 1000;
            border-top: 3px solid var(--primary-purple);
        }

        .opcswt-submenu .opcswt-nav-item {
            border-bottom: 1px solid var(--light-gray);
            margin: 0;
        }

        .opcswt-submenu .opcswt-nav-item:last-child {
            border-bottom: none;
        }

        .opcswt-submenu .opcswt-nav-link {
            padding: 16px 28px;
            display: block;
            font-size: 0.95rem;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .opcswt-submenu .opcswt-nav-link::after {
            display: none;
        }

        .opcswt-submenu .opcswt-nav-link:hover {
            background: var(--light-gray);
            color: var(--primary-purple);
            padding-left: 36px;
        }

        .opcswt-nav-item:hover > .opcswt-submenu {
            display: block;
            animation: opcswt-fadeInDown 0.3s ease;
        }

        @keyframes opcswt-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Menu Toggle */
        .opcswt-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 32px;
            height: 24px;
            cursor: pointer;
            z-index: 1001;
            padding: 4px 0;
        }

        .opcswt-menu-toggle span {
            height: 3px;
            width: 100%;
            background-color: var(--primary-purple);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .opcswt-menu-toggle.opcswt-active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .opcswt-menu-toggle.opcswt-active span:nth-child(2) {
            opacity: 0;
        }
        .opcswt-menu-toggle.opcswt-active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Mobile Nav */
        .opcswt-mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 85%;
            max-width: 380px;
            height: 100vh;
            background: var(--white);
            z-index: 999;
            padding-top: 20px;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
        }

        .opcswt-mobile-nav.opcswt-active {
            transform: translateX(0);
        }

        .opcswt-mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.55);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .opcswt-mobile-overlay.opcswt-active {
            opacity: 1;
            visibility: visible;
        }

        .opcswt-mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 24px 24px;
            border-bottom: 2px solid var(--medium-gray);
            margin-bottom: 10px;
        }

        .opcswt-mobile-logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .opcswt-mobile-logo img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--gradient-warm);
            object-fit: cover;
        }

        .opcswt-mobile-org-name {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .opcswt-mobile-main-name {
            font-size: 1.1rem;
            color: var(--primary-purple);
            font-weight: 700;
        }

        .opcswt-mobile-trust-name {
            font-size: 0.9rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .opcswt-mobile-close {
            background: none;
            border: none;
            font-size: 1.6rem;
            color: var(--primary-purple);
            cursor: pointer;
            transition: transform 0.2s ease;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .opcswt-mobile-close:hover {
            transform: rotate(90deg);
        }

        .opcswt-mobile-nav-menu {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .opcswt-mobile-nav-item {
            border-bottom: 1px solid var(--medium-gray);
            position: relative;
        }

        .opcswt-mobile-link-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .opcswt-mobile-nav-link {
            text-decoration: none;
            padding: 20px 24px;
            font-weight: 500;
            color: var(--text-dark);
            font-size: 1.05rem;
            transition: all 0.3s ease;
            flex: 1;
            display: block;
        }

        .opcswt-mobile-nav-link:hover {
            background: var(--light-gray);
            color: var(--primary-purple);
        }

        .opcswt-dropdown-arrow {
            padding: 20px 24px;
            font-size: 1rem;
            color: var(--primary-purple);
            transition: transform 0.3s ease;
            cursor: pointer;
            user-select: none;
        }

        .opcswt-mobile-nav-item.opcswt-open .opcswt-dropdown-arrow {
            transform: rotate(90deg);
        }

        .opcswt-mobile-submenu {
            display: none;
            background: var(--light-gray);
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .opcswt-mobile-nav-item.opcswt-open > .opcswt-mobile-submenu {
            display: block;
        }

        .opcswt-mobile-submenu .opcswt-mobile-nav-item {
            border-bottom: 1px solid var(--medium-gray);
        }

        .opcswt-mobile-submenu .opcswt-mobile-nav-item:last-child {
            border-bottom: none;
        }

        .opcswt-mobile-submenu .opcswt-mobile-nav-link {
            padding-left: 44px;
            font-size: 0.95rem;
            padding-top: 16px;
            padding-bottom: 16px;
        }

        .opcswt-mobile-cta-button {
            display: block;
            margin: 24px;
            text-align: center;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 16px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            font-size: 1rem;
        }

        .opcswt-mobile-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .opcswt-mobile-contact-info {
            padding: 24px;
            border-top: 2px solid var(--medium-gray);
            margin-top: 20px;
        }

        .opcswt-mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            font-size: 0.95rem;
        }

        .opcswt-mobile-contact-item i {
            color: var(--primary-purple);
            width: 22px;
            font-size: 1rem;
        }

        .opcswt-mobile-social-links {
            display: flex;
            gap: 14px;
            justify-content: center;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--medium-gray);
        }

        .opcswt-mobile-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: var(--gradient-primary);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .opcswt-mobile-social-link:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Demo Content Styles */
        .demo-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .demo-content h1 {
            color: var(--primary-purple);
            margin-bottom: 20px;
        }

        .demo-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .opcswt-nav-menu {
                gap: 24px;
            }
            
            .opcswt-navbar {
                padding: 18px 30px;
            }
            
            .opcswt-top-bar {
                padding: 14px 30px;
            }
        }

        @media (max-width: 900px) {
            .opcswt-top-bar {
                flex-direction: column;
                gap: 14px;
                display: none;
                padding: 14px 20px;
            }
            
            .opcswt-contact-info {
                gap: 24px;
            }
            
            .opcswt-top-bar-left {
                flex-direction: column;
                gap: 14px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 140px;
            }

            .opcswt-nav-menu {
                display: none;
            }
            
            .opcswt-menu-toggle {
                display: flex;
            }
            
            .opcswt-top-bar {
                font-size: 0.85rem;
            }
            
            .opcswt-contact-info {
                flex-wrap: wrap;
                justify-content: center;
                gap: 18px;
            }
            
            .opcswt-address {
                text-align: center;
            }
            
            .opcswt-org-main-name {
                font-size: 1.15rem;
            }
            
            .opcswt-org-trust-name {
                font-size: 0.95rem;
            }
            
            .opcswt-logo {
                width: 70px;
                height: 70px;
            }
            
            .opcswt-navbar {
                padding: 16px 20px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding-top: 130px;
            }

            .opcswt-mobile-nav {
                width: 90%;
            }
            
            .opcswt-top-bar {
                font-size: 0.8rem;
            }
            
            .opcswt-brand {
                gap: 14px;
            }
            
            .opcswt-org-main-name {
                font-size: 1.05rem;
            }
            
            .opcswt-org-trust-name {
                font-size: 0.85rem;
            }
            
            .opcswt-navbar {
                padding: 14px 15px;
            }
            
            .opcswt-logo {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 85px;
            }

            .opcswt-top-bar {
                padding: 12px;
            }
            
            .opcswt-contact-info {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }
            
            .opcswt-contact-item, .opcswt-address {
                justify-content: center;
                width: 100%;
            }
            
            .opcswt-social-links {
                gap: 12px;
            }
            
            .opcswt-social-link {
                width: 30px;
                height: 30px;
            }
            
            .opcswt-social-link i {
                font-size: 0.85rem;
            }
            
            .opcswt-org-main-name {
                font-size: 0.95rem;
            }
            
            .opcswt-org-trust-name {
                font-size: 0.8rem;
            }
            
            .opcswt-logo {
                width: 55px;
                height: 55px;
            }
        }

       /* Footer section */

 .opcsw-footer {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 60px 0 0;
            margin-top: 80px;
            border-radius: 15px 15px 0 0;
            box-shadow: var(--shadow-lg);
        }

        .opcsw-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .opcsw-footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .opcsw-footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .opcsw-logo-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .opcsw-logo-img {
            width: 70px;
            height: 70px;
            margin-right: 15px;
            border-radius: 8px;
            object-fit: contain;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 5px;
        }

        .opcsw-logo-text {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--white);
        }

        .opcsw-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
            margin-top: 10px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .opcsw-footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .opcsw-footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;

        }

        .opcsw-footer-column ul {
            list-style: none;
        }

        .opcsw-footer-column li {
            margin-bottom: 12px;
        }

        .opcsw-footer-column a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
            display: inline-block;
        }

        .opcsw-footer-column a::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background-color: var(--primary-yellow);
            transition: width 0.3s ease;
        }

        .opcsw-footer-column a:hover {
            color: var(--white);
            padding-left: 10px;
        }

        .opcsw-footer-column a:hover::before {
            width: 100%;
        }

        .opcsw-contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .opcsw-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .opcsw-contact-icon {
            color: var(--primary-yellow);
            font-size: 1.1rem;
            margin-top: 2px;
            flex-shrink: 0;
            width: 20px;
            text-align: center;
        }

        .opcsw-contact-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .opcsw-footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .opcsw-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .opcsw-social-icons {
            display: flex;
            gap: 15px;
        }

        .opcsw-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .opcsw-social-icon:hover {
            transform: translateY(-3px);
            background-color: var(--primary-yellow);
            color: var(--primary-purple);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .opcsw-copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .opcsw-footer-content {
                grid-template-columns: 2fr 1fr 1fr;
            }
            
            .opcsw-footer-logo {
                grid-column: 1 / -1;
                text-align: center;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .opcsw-footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .opcsw-footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .opcsw-footer-logo {
                grid-column: 1 / -1;
            }

            .opcsw-footer-column {
                text-align: center;
            }

            .opcsw-footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 480px) {
            .opcsw-footer {
                padding: 40px 0 0;
            }

            .opcsw-footer-container {
                padding: 0 15px;
            }

            .opcsw-footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .opcsw-logo-text {
                font-size: 1.3rem;
            }

            .opcsw-contact-text {
                font-size: 0.9rem;
            }

            .opcsw-copyright {
                font-size: 0.85rem;
            }
        }

        /* Animation for footer reveal */
        .opcsw-footer {
            opacity: 0;
            transform: translateY(20px);
            animation: opcsw-fadeInUp 0.8s ease forwards;
        }

        @keyframes opcsw-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

  .hero-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            overflow: hidden;
            background: linear-gradient(135deg, var(--light-orange) 0%, var(--light-pink) 50%, var(--light-blue) 100%);
        }

     
    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        overflow: hidden;
    }

    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(107, 76, 154, 0.85) 0%, rgba(233, 30, 140, 0.75) 50%, rgba(0, 150, 214, 0.8) 100%);
    }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(0, 150, 214, 0.15) 0%, transparent 50%);
            z-index: 2;
        }

        .animated-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 3;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: morphShape 20s ease-in-out infinite;
        }

        .shape-1 {
            top: 10%;
            left: 5%;
            width: 200px;
            height: 200px;
            background: var(--gradient-warm);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation-delay: 0s;
        }

        .shape-2 {
            bottom: 15%;
            right: 10%;
            width: 250px;
            height: 250px;
            background: var(--gradient-primary);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            animation-delay: 5s;
        }

        .shape-3 {
            top: 50%;
            left: 50%;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
            animation-delay: 10s;
        }

        @keyframes morphShape {
            0%, 100% {
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
                transform: rotate(0deg) scale(1);
            }
            25% {
                border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
                transform: rotate(90deg) scale(1.1);
            }
            50% {
                border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
                transform: rotate(180deg) scale(0.9);
            }
            75% {
                border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
                transform: rotate(270deg) scale(1.05);
            }
        }

        .leaf {
            position: absolute;
            font-size: 24px;
            opacity: 0.4;
            z-index: 3;
            animation: fall linear infinite;
        }

        @keyframes fall {
            to {
                transform: translateY(100vh) rotate(360deg);
            }
        }

        .floating-icon {
            position: absolute;
            color: rgba(255, 255, 255, 0.8);
            font-size: 48px;
            z-index: 4;
            animation: float 4s ease-in-out infinite, pulse 2s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-25px) rotate(10deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.7;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            width: 100%;
        }

        .left-content {
            text-align: left;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            margin-bottom: 23px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .wheat-icon {
            display: inline-block;
            font-size: 4rem;
            margin-bottom: 16px;
            animation: swing 3s ease-in-out infinite;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
        }

        @keyframes swing {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        .headline {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 24px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.5px;
        }

        .gradient-text-1 {
            background: var(--gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: shimmer 3s ease-in-out infinite;
        }

        .gradient-text-2 {
            background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: shimmer 3s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        @keyframes shimmer {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3); }
        }

        .subheadline {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 600px;
            line-height: 1.8;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.4s forwards;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            font-weight: 400;
        }

        .feature-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.6s forwards;
        }

        .pill {
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: default;
        }

        .pill:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.8s forwards;
        }

        .hero-btn {
            padding: 18px 36px;
            border-radius: 50px;
            font-size: 1.125rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            max-width: 280px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .hero-btn i {
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }

        .hero-btn:hover::before {
            left: 100%;
        }

        .hero-btn:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .primary-btn {
            background: var(--gradient-primary);
            color: white;
        }

        .primary-btn:hover {
            box-shadow: 0 12px 32px rgba(107, 76, 154, 0.5);
            transform: translateY(-4px) scale(1.02);
        }

        .primary-btn:active {
            transform: translateY(-2px) scale(0.98);
        }

        .secondary-btn {
            background: var(--gradient-warm);
            color: var(--text-dark);
        }

        .secondary-btn:hover {
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
            transform: translateY(-4px) scale(1.02);
        }

        .secondary-btn:active {
            transform: translateY(-2px) scale(0.98);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 600px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1s forwards;
            margin-bottom: 60px;
        }

        .stat-item {
            text-align: center;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            margin-bottom: 40px;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            animation: bounce 2s infinite;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.5s forwards, bounce 2s 1.5s infinite;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-15px);
            }
        }

        .scroll-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .scroll-mouse {
            width: 28px;
            height: 45px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 10px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(5px);
        }

        .scroll-wheel {
            width: 4px;
            height: 12px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            animation: scrollWheel 2s ease-in-out infinite;
        }

        @keyframes scrollWheel {
            0%, 100% {
                transform: translateY(0);
                opacity: 1;
            }
            50% {
                transform: translateY(10px);
                opacity: 0.3;
            }
        }

        @media (min-width: 640px) {
            .headline {
                font-size: 3.5rem;
            }
            
            .subheadline {
                font-size: 1.25rem;
            }

            .cta-buttons {
                flex-direction: row;
            }
        }

        @media (min-width: 768px) {
            .headline {
                font-size: 4rem;
            }
            
            .wheat-icon {
                font-size: 5rem;
            }
        }

        @media (min-width: 1024px) {
            .headline {
                font-size: 4.5rem;
            }

            .subheadline {
                font-size: 1.375rem;
            }

            .floating-icon {
                font-size: 56px;
            }
        }

        /* About section */

           .opcsw-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .opcsw-section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .opcsw-section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .opcsw-section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--dark-gray);
            font-size: 1.1rem;
        }

        .opcsw-org-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .opcsw-org-section.reverse {
            flex-direction: row-reverse;
        }

        .opcsw-org-content {
            flex: 1;
            min-width: 300px;
        }

        .opcsw-org-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-blue);
            position: relative;
            padding-bottom: 10px;
        }

        .opcsw-org-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-orange);
        }

        .opcsw-org-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .opcsw-btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gradient-primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            border: none;
            cursor: pointer;
        }

        .opcsw-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .opcsw-highlights {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .opcsw-card {
            background: var(--white);
            border-radius: 10px;
            padding: 25px 20px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .opcsw-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .opcsw-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-blue);
            color: var(--primary-blue);
        }

        .opcsw-card:nth-child(2) .opcsw-icon {
            background: var(--light-pink);
            color: var(--primary-pink);
        }

        .opcsw-card:nth-child(3) .opcsw-icon {
            background: var(--light-orange);
            color: var(--primary-orange);
        }

        .opcsw-card:nth-child(4) .opcsw-icon {
            background: var(--light-purple);
            color: var(--primary-purple);
        }

        .opcsw-card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-purple);
        }

        .opcsw-card-content p {
            color: var(--dark-gray);
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 1024px) {
            .opcsw-container {
                padding: 30px 20px;
            }
            
            .opcsw-section-title h2 {
                font-size: 2.2rem;
            }
            
            .opcsw-org-content h3 {
                font-size: 1.8rem;
            }
            
            .opcsw-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .opcsw-container {
                padding: 25px 15px;
            }
            
            .opcsw-section-title {
                margin-bottom: 30px;
            }
            
            .opcsw-section-title h2 {
                font-size: 1.8rem;
            }
            
            .opcsw-section-title p {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            .opcsw-org-section, .opcsw-org-section.reverse {
                flex-direction: column;
                gap: 30px;
                margin-bottom: 40px;
            }
            
            .opcsw-org-content {
                width: 100%;
            }
            
            .opcsw-org-content h3 {
                font-size: 1.5rem;
                text-align: center;
            }
            
            .opcsw-org-content h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .opcsw-org-content p {
                font-size: 1rem;
                text-align: justify;
            }
            
            .opcsw-btn {
                display: block;
                text-align: center;
                margin: 0 auto;
                width: 80%;
                max-width: 250px;
                padding: 14px 20px;
            }
            
            .opcsw-highlights {
                width: 100%;
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .opcsw-card {
                padding: 20px 15px;
                flex-direction: row;
                text-align: left;
                gap: 15px;
            }
            
            .opcsw-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
                margin-bottom: 0;
                flex-shrink: 0;
            }
            
            .opcsw-card-content h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .opcsw-container {
                padding: 20px 10px;
            }
            
            .opcsw-section-title h2 {
                font-size: 1.6rem;
            }
            
            .opcsw-section-title h2::after {
                width: 80px;
                height: 3px;
            }
            
            .opcsw-org-content h3 {
                font-size: 1.3rem;
            }
            
            .opcsw-org-content p {
                font-size: 0.95rem;
            }
            
            .opcsw-card {
                padding: 15px 12px;
                gap: 12px;
            }
            
            .opcsw-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .opcsw-card-content h3 {
                font-size: 1.1rem;
            }
            
            .opcsw-card-content p {
                font-size: 0.9rem;
            }
            
            .opcsw-btn {
                width: 90%;
                padding: 12px 15px;
                font-size: 0.95rem;
            }
        }

        /* Additional improvements for very small screens */
        @media (max-width: 360px) {
            .opcsw-card {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .opcsw-icon {
                margin-bottom: 10px;
            }
        }

        /* Focus area */

          .opcsw-focus-section {
            padding: 80px 20px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            margin: 0 auto;
            max-width: 1400px;
        }

        .opcsw-focus-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .opcsw-focus-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .opcsw-focus-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-focus-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .opcsw-focus-subtitle {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .opcsw-focus-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .opcsw-focus-card {
            background: var(--white);
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--medium-gray);
        }

        .opcsw-focus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .opcsw-focus-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .opcsw-card-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            border-radius: 50%;
            color: var(--white);
            font-size: 2rem;
            background: var(--gradient-primary);
        }

        /* Different colors for each icon */
        .opcsw-focus-card:nth-child(1) .opcsw-card-icon {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        }
        
        .opcsw-focus-card:nth-child(2) .opcsw-card-icon {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        }
        
        .opcsw-focus-card:nth-child(3) .opcsw-card-icon {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
        }
        
        .opcsw-focus-card:nth-child(4) .opcsw-card-icon {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
        }
        
        .opcsw-focus-card:nth-child(5) .opcsw-card-icon {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
        }
        
        .opcsw-focus-card:nth-child(6) .opcsw-card-icon {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-yellow));
        }

        .opcsw-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-purple);
        }

        .opcsw-card-description {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.7;
        }

        .opcsw-focus-button {
            display: block;
            margin: 0 auto;
            padding: 14px 32px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .opcsw-focus-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
        }

        /* Animation for cards */
        .opcsw-focus-card {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .opcsw-focus-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation delays for staggered effect */
        .opcsw-focus-card:nth-child(1) { transition-delay: 0.1s; }
        .opcsw-focus-card:nth-child(2) { transition-delay: 0.2s; }
        .opcsw-focus-card:nth-child(3) { transition-delay: 0.3s; }
        .opcsw-focus-card:nth-child(4) { transition-delay: 0.4s; }
        .opcsw-focus-card:nth-child(5) { transition-delay: 0.5s; }
        .opcsw-focus-card:nth-child(6) { transition-delay: 0.6s; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .opcsw-focus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .opcsw-focus-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .opcsw-focus-title {
                font-size: 2rem;
            }
            
            .opcsw-focus-section {
                padding: 60px 15px;
            }
            
            .opcsw-card-icon {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
        }


        /* Compliance & Government  */

         .opcsw-compliance-section {
            padding: 80px 20px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            margin: 0 auto;
            max-width: 1400px;
        }

        .opcsw-compliance-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .opcsw-compliance-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .opcsw-compliance-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-compliance-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .opcsw-compliance-subtitle {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .opcsw-compliance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .opcsw-compliance-card {
            background: var(--white);
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--medium-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .opcsw-compliance-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .opcsw-compliance-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .opcsw-compliance-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border-radius: 50%;
            color: var(--white);
            font-size: 2rem;
            background: var(--gradient-primary);
        }

        /* Different colors for each icon */
        .opcsw-compliance-card:nth-child(1) .opcsw-compliance-icon {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        }
        
        .opcsw-compliance-card:nth-child(2) .opcsw-compliance-icon {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        }
        
        .opcsw-compliance-card:nth-child(3) .opcsw-compliance-icon {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
        }
        
        .opcsw-compliance-card:nth-child(4) .opcsw-compliance-icon {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
        }
        
        .opcsw-compliance-card:nth-child(5) .opcsw-compliance-icon {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
        }

        .opcsw-compliance-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-purple);
        }

        .opcsw-compliance-card-description {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.7;
        }

        .opcsw-compliance-button {
            display: block;
            margin: 0 auto;
            padding: 14px 32px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .opcsw-compliance-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
        }

        /* Animation for cards */
        .opcsw-compliance-card {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .opcsw-compliance-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation delays for staggered effect */
        .opcsw-compliance-card:nth-child(1) { transition-delay: 0.1s; }
        .opcsw-compliance-card:nth-child(2) { transition-delay: 0.2s; }
        .opcsw-compliance-card:nth-child(3) { transition-delay: 0.3s; }
        .opcsw-compliance-card:nth-child(4) { transition-delay: 0.4s; }
        .opcsw-compliance-card:nth-child(5) { transition-delay: 0.5s; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .opcsw-compliance-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .opcsw-compliance-title {
                font-size: 2rem;
            }
            
            .opcsw-compliance-section {
                padding: 60px 15px;
            }
            
            .opcsw-compliance-icon {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
        }



        /* Our Project */

         .opcsw-projects-section {
            padding: 80px 20px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            margin: 0 auto;
            max-width: 1400px;
        }

        .opcsw-projects-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .opcsw-projects-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .opcsw-projects-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-projects-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .opcsw-projects-subtitle {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .opcsw-projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .opcsw-project-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            border: 1px solid var(--medium-gray);
        }

        .opcsw-project-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .opcsw-project-icon {
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .opcsw-project-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
        }

        .opcsw-project-icon i {
            position: relative;
            z-index: 1;
        }

        /* Different colors for each project */
        .opcsw-project-card:nth-child(1) .opcsw-project-icon {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        }
        
        .opcsw-project-card:nth-child(2) .opcsw-project-icon {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
        }
        
        .opcsw-project-card:nth-child(3) .opcsw-project-icon {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
        }
        
        .opcsw-project-card:nth-child(4) .opcsw-project-icon {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        }
        
        .opcsw-project-card:nth-child(5) .opcsw-project-icon {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
        }
        
        .opcsw-project-card:nth-child(6) .opcsw-project-icon {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink));
        }

        .opcsw-project-content {
            padding: 25px;
        }

        .opcsw-project-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-purple);
        }

        .opcsw-project-description {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.7;
        }

        .opcsw-projects-button {
            display: block;
            margin: 0 auto;
            padding: 14px 32px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .opcsw-projects-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
        }

        /* Animation for cards */
        .opcsw-project-card {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .opcsw-project-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation delays for staggered effect */
        .opcsw-project-card:nth-child(1) { transition-delay: 0.1s; }
        .opcsw-project-card:nth-child(2) { transition-delay: 0.2s; }
        .opcsw-project-card:nth-child(3) { transition-delay: 0.3s; }
        .opcsw-project-card:nth-child(4) { transition-delay: 0.4s; }
        .opcsw-project-card:nth-child(5) { transition-delay: 0.5s; }
        .opcsw-project-card:nth-child(6) { transition-delay: 0.6s; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .opcsw-projects-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .opcsw-projects-title {
                font-size: 2rem;
            }
            
            .opcsw-projects-section {
                padding: 60px 15px;
            }
            
            .opcsw-project-icon {
                height: 150px;
                font-size: 3rem;
            }
        }


        /* Imapct numbers */


         .opcsw-impact-section {
            padding: 80px 20px;
            background: var(--gradient-primary);
            border-radius: 15px;
            margin: 0 auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
        }

        .opcsw-impact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ffffff" opacity="0.05"><circle cx="50" cy="50" r="2"/></svg>') repeat;
        }

        .opcsw-impact-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .opcsw-impact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .opcsw-impact-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-impact-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--white);
            border-radius: 2px;
            opacity: 0.7;
        }

        .opcsw-impact-subtitle {
            font-size: 1.1rem;
            color: var(--white);
            max-width: 600px;
            margin: 20px auto 0;
            opacity: 0.9;
        }

        .opcsw-impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .opcsw-impact-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 40px 25px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .opcsw-impact-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .opcsw-impact-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border-radius: 50%;
            color: var(--white);
            font-size: 2rem;
            background: rgba(255, 255, 255, 0.2);
        }

        /* Different colors for each icon */
        .opcsw-impact-card:nth-child(1) .opcsw-impact-icon {
            background: rgba(255, 255, 255, 0.25);
        }
        
        .opcsw-impact-card:nth-child(2) .opcsw-impact-icon {
            background: rgba(255, 255, 255, 0.25);
        }
        
        .opcsw-impact-card:nth-child(3) .opcsw-impact-icon {
            background: rgba(255, 255, 255, 0.25);
        }
        
        .opcsw-impact-card:nth-child(4) .opcsw-impact-icon {
            background: rgba(255, 255, 255, 0.25);
        }

        .opcsw-impact-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--white);
            display: block;
        }

        .opcsw-impact-label {
            font-size: 1.2rem;
            color: var(--white);
            font-weight: 500;
        }

        /* Animation for cards */
        .opcsw-impact-card {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .opcsw-impact-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation delays for staggered effect */
        .opcsw-impact-card:nth-child(1) { transition-delay: 0.1s; }
        .opcsw-impact-card:nth-child(2) { transition-delay: 0.2s; }
        .opcsw-impact-card:nth-child(3) { transition-delay: 0.3s; }
        .opcsw-impact-card:nth-child(4) { transition-delay: 0.4s; }

        /* Responsive Design */
        @media (max-width: 768px) {
            .opcsw-impact-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .opcsw-impact-title {
                font-size: 2rem;
            }
            
            .opcsw-impact-section {
                padding: 60px 15px;
            }
            
            .opcsw-impact-icon {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
            
            .opcsw-impact-number {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 480px) {
            .opcsw-impact-grid {
                grid-template-columns: 1fr;
            }
        }


        /* How You Can Support */

         .opcsw-support-section {
            padding: 80px 20px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            margin: 0 auto;
            max-width: 1400px;
        }

        .opcsw-support-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .opcsw-support-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .opcsw-support-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-support-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .opcsw-support-subtitle {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .opcsw-support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .opcsw-support-card {
            background: var(--white);
            border-radius: 12px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--medium-gray);
        }

        .opcsw-support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .opcsw-support-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .opcsw-support-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            border-radius: 50%;
            color: var(--white);
            font-size: 2rem;
            background: var(--gradient-primary);
        }

        /* Different colors for each icon */
        .opcsw-support-card:nth-child(1) .opcsw-support-icon {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        }
        
        .opcsw-support-card:nth-child(2) .opcsw-support-icon {
            background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
        }
        
        .opcsw-support-card:nth-child(3) .opcsw-support-icon {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
        }
        
        .opcsw-support-card:nth-child(4) .opcsw-support-icon {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
        }
        
        .opcsw-support-card:nth-child(5) .opcsw-support-icon {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
        }

        .opcsw-support-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-purple);
        }

        .opcsw-support-card-description {
            font-size: 1rem;
            color: var(--dark-gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .opcsw-support-card-btn {
            display: inline-block;
            padding: 10px 25px;
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .opcsw-support-card-btn:hover {
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
        }

        .opcsw-support-button {
            display: block;
            margin: 0 auto;
            padding: 14px 32px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .opcsw-support-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
        }

        /* Animation for cards */
        .opcsw-support-card {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .opcsw-support-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation delays for staggered effect */
        .opcsw-support-card:nth-child(1) { transition-delay: 0.1s; }
        .opcsw-support-card:nth-child(2) { transition-delay: 0.2s; }
        .opcsw-support-card:nth-child(3) { transition-delay: 0.3s; }
        .opcsw-support-card:nth-child(4) { transition-delay: 0.4s; }
        .opcsw-support-card:nth-child(5) { transition-delay: 0.5s; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .opcsw-support-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .opcsw-support-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .opcsw-support-title {
                font-size: 2rem;
            }
            
            .opcsw-support-section {
                padding: 60px 15px;
            }
            
            .opcsw-support-icon {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }
        }


        /* Latest update*/

         .opcsw-updates {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
        }

        .opcsw-updates__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .opcsw-updates__header {
            text-align: center;
            margin-bottom: 50px;
        }

        .opcsw-updates__title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-updates__title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .opcsw-updates__description {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .opcsw-updates__filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .opcsw-updates__filter {
            padding: 10px 20px;
            background: var(--light-gray);
            border: none;
            border-radius: var(--tag-radius);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            color: var(--dark-gray);
        }

        .opcsw-updates__filter:hover {
            background: var(--medium-gray);
            transform: translateY(-2px);
        }

        .opcsw-updates__filter--active {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .opcsw-updates__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .opcsw-updates__card {
            background: var(--card-bg);
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .opcsw-updates__card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .opcsw-updates__img-container {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .opcsw-updates__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .opcsw-updates__card:hover .opcsw-updates__img {
            transform: scale(1.05);
        }

        .opcsw-updates__tag {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 15px;
            border-radius: var(--tag-radius);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--white);
            z-index: 2;
        }

        .opcsw-updates__tag--activities {
            background: var(--primary-blue);
        }

        .opcsw-updates__tag--photos {
            background: var(--primary-pink);
        }

        .opcsw-updates__tag--events {
            background: var(--primary-orange);
        }

        .opcsw-updates__tag--schemes {
            background: var(--primary-purple);
        }

        .opcsw-updates__content {
            padding: 25px;
        }

        .opcsw-updates__date {
            display: block;
            font-size: 0.85rem;
            color: var(--dark-gray);
            margin-bottom: 10px;
        }

        .opcsw-updates__card-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--primary-purple);
            line-height: 1.3;
        }

        .opcsw-updates__excerpt {
            font-size: 1rem;
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .opcsw-updates__link {
            display: inline-flex;
            align-items: center;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
        }

        .opcsw-updates__link:hover {
            color: var(--primary-purple);
            transform: translateX(5px);
        }

        .opcsw-updates__link::after {
            content: '→';
            margin-left: 5px;
            transition: var(--transition);
        }

        .opcsw-updates__link:hover::after {
            transform: translateX(3px);
        }

        /* Lightbox styles */
        .opcsw-updates__lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .opcsw-updates__lightbox--active {
            display: flex;
            opacity: 1;
        }

        .opcsw-updates__lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .opcsw-updates__lightbox-img {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .opcsw-updates__lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .opcsw-updates__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .opcsw-updates {
                padding: 40px 15px;
            }
            
            .opcsw-updates__title {
                font-size: 2rem;
            }
            
            .opcsw-updates__grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .opcsw-updates__filters {
                gap: 8px;
            }
            
            .opcsw-updates__filter {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .opcsw-updates__title {
                font-size: 1.7rem;
            }
            
            .opcsw-updates__content {
                padding: 20px;
            }
            
            .opcsw-updates__card-title {
                font-size: 1.2rem;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .opcsw-updates__card {
                opacity: 1;
                transform: none;
                animation: none;
            }
        }


        /* Contact us */

   .opcsw-contact {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
        }

        .opcsw-contact__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .opcsw-contact__header {
            text-align: center;
            margin-bottom: 60px;
        }

        .opcsw-contact__title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .opcsw-contact__title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .opcsw-contact__subtitle {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .opcsw-contact__content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .opcsw-contact__info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .opcsw-contact__trust-details {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
        }

        .opcsw-contact__trust-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-blue);
        }

        .opcsw-contact__detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            gap: 15px;
        }

        .opcsw-contact__detail-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-blue);
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        .opcsw-contact__detail-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-purple);
            margin-bottom: 5px;
        }

        .opcsw-contact__detail-content p {
            color: var(--dark-gray);
        }

        .opcsw-contact__social {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .opcsw-contact__social-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-purple);
        }

        .opcsw-contact__social-icons {
            display: flex;
            gap: 15px;
        }

        .opcsw-contact__social-link {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-gray);
            color: var(--primary-purple);
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .opcsw-contact__social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-md);
        }

        .opcsw-contact__social-link--instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: var(--white);
        }

        .opcsw-contact__social-link--whatsapp:hover {
            background: #25D366;
            color: var(--white);
        }

        .opcsw-contact__social-link--twitter:hover {
            background: #1DA1F2;
            color: var(--white);
        }

        .opcsw-contact__social-link--facebook:hover {
            background: #4267B2;
            color: var(--white);
        }

        .opcsw-contact__form-container {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
        }

        .opcsw-contact__form-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-blue);
        }

        .opcsw-contact__form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .opcsw-contact__form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .opcsw-contact__form-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-purple);
        }

        .opcsw-contact__form-input,
        .opcsw-contact__form-textarea {
            padding: 12px 15px;
            border: 2px solid var(--medium-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .opcsw-contact__form-input:focus,
        .opcsw-contact__form-textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 150, 214, 0.1);
        }

        .opcsw-contact__form-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .opcsw-contact__form-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 25px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            margin-top: 10px;
        }

        .opcsw-contact__form-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
        }

        .opcsw-contact__form-button:active {
            transform: translateY(-1px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .opcsw-contact__content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .opcsw-contact {
                padding: 60px 15px;
            }
            
            .opcsw-contact__title {
                font-size: 2rem;
            }
            
            .opcsw-contact__trust-details,
            .opcsw-contact__form-container {
                padding: 25px 20px;
            }
            
            .opcsw-contact__trust-name,
            .opcsw-contact__form-title {
                font-size: 1.3rem;
            }
            
            .opcsw-contact__social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .opcsw-contact__title {
                font-size: 1.7rem;
            }
            
            .opcsw-contact__subtitle {
                font-size: 1rem;
            }
            
            .opcsw-contact__trust-name,
            .opcsw-contact__form-title {
                font-size: 1.2rem;
            }
            
            .opcsw-contact__detail {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .opcsw-contact__detail-icon {
                align-self: center;
            }
            
            .opcsw-contact__social-title {
                text-align: center;
            }
            
            .opcsw-contact__form-button {
                padding: 14px 20px;
                font-size: 1rem;
            }
        }

		
		/* Ngo Activity */


		   .ngo-activities {
            padding: 80px 20px;
            background-color: var(--section-bg);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.8) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.6) 0%, transparent 20%);
            position: relative;
        }

        .ngo-activities__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .ngo-activities__header {
            text-align: center;
            margin-bottom: 60px;
        }

        .ngo-activities__title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .ngo-activities__title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .ngo-activities__subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto;
        }

        .ngo-activities__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .ngo-activities__card {
            background-color: white;
            border-radius: 12px;
            padding: 30px 25px;
            box-shadow: 0 4px 12px var(--shadow-color);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .ngo-activities__card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .ngo-activities__card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--primary-light);
        }

        .ngo-activities__icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(198, 40, 40, 0.1);
            border-radius: 50%;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .ngo-activities__card:hover .ngo-activities__icon {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }

        .ngo-activities__icon svg {
            width: 35px;
            height: 35px;
            fill: var(--primary-color);
            transition: all 0.3s ease;
        }

        .ngo-activities__card:hover .ngo-activities__icon svg {
            fill: white;
        }

        .ngo-activities__card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .ngo-activities__card-desc {
            color: var(--text-light);
            font-size: 1.19rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .ngo-activities__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .ngo-activities__grid {
                grid-template-columns: 1fr;
            }
            
            .ngo-activities__title {
                font-size: 2rem;
            }
            
            .ngo-activities__subtitle {
                font-size: 1rem;
            }
        }


		.operational-areas-section {
            position: relative;
            min-height: 90vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--background-color) 0%, #f0f4f8 100%);
            padding: 4rem 2rem;
        }

        /* World Map Background */
        .world-map-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .world-map-bg.visible {
            opacity: 1;
        }

        .world-map-bg svg {
            width: 100%;
            height: 100%;
            opacity: 0.08;
            filter: blur(1px);
        }

        /* Gradient Overlay */
        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(255, 253, 249, 0.8) 70%);
            pointer-events: none;
        }

        /* Animated Global Points */
        .global-points {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .global-point {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--secondary-light);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--secondary-light);
            animation: pulse 2s ease-in-out infinite;
            opacity: 0;
        }

        .global-point.visible {
            opacity: 1;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
            }
        }

        /* Content Container */
        .content-wrapper {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease;
        }

        .content-wrapper.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Text Content */
        .text-content {
            padding: 2rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
          
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .globe-icon {
            display: inline-block;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Odisha Map Container */
        .odisha-map-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 600px;
            margin: 0 auto;
        }

        .odisha-map-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 244, 248, 0.8));
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .map-title {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        /* Odisha Map SVG */
        .odisha-map {
            position: relative;
            width: 100%;
            height: 450px;
        }

        .odisha-outline {
            fill: #e8f4f8;
            stroke: var(--secondary-light);
            stroke-width: 2;
            filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.2));
        }

        /* Location Pins */
        .location-pin {
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pinDrop 0.6s ease backwards;
        }

        .location-pin:hover .pin-circle {
            r: 8;
        }

        .location-pin:hover .pin-glow {
            r: 20;
            opacity: 0.4;
        }

        .pin-glow {
            fill: var(--primary-light);
            opacity: 0.2;
            animation: pinGlow 2s ease-in-out infinite;
        }

        .pin-circle {
            fill: var(--primary-color);
            transition: all 0.3s ease;
        }

        .pin-icon {
            fill: white;
        }

        @keyframes pinGlow {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1);
            }
            50% {
                opacity: 0.4;
                transform: scale(1.1);
            }
        }

        @keyframes pinDrop {
            0% {
                transform: translateY(-50px);
                opacity: 0;
            }
            60% {
                transform: translateY(5px);
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Tooltip */
        .tooltip {
            position: absolute;
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            pointer-events: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: var(--secondary-color);
        }

        .tooltip.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Bottom Tagline */
        .tagline {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text-light);
            opacity: 0;
            transition: opacity 1s ease 1s;
        }

        .tagline.visible {
            opacity: 1;
        }

        .tagline::before {
            content: '✦';
            color: var(--accent-color);
            margin-right: 0.5rem;
            font-size: 1.5rem;
        }

        .tagline::after {
            content: '✦';
            color: var(--accent-color);
            margin-left: 0.5rem;
            font-size: 1.5rem;
        }

        /* Connection Lines */
        .connection-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .connection-line {
            stroke: var(--secondary-light);
            stroke-width: 1;
            fill: none;
            opacity: 0.3;
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 3s ease forwards;
        }

        @keyframes drawLine {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .odisha-map-container {
                max-width: 400px;
            }

            .operational-areas-section {
                min-height: auto;
                padding: 3rem 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .section-title {
                font-size: 1.8rem;
            }

            .odisha-map-container {
                height: 500px;
            }

            .odisha-map {
                height: 380px;
            }
        }

/* Get Involved */

 .vgi-get-involved {
            padding: 80px 20px;
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }

        .vgi-get-involved::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C62828' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .vgi-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .vgi-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .vgi-section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .vgi-section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .vgi-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .vgi-card {
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px var(--shadow-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .vgi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .vgi-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .vgi-card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .vgi-card:hover .vgi-card-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
        }

        .vgi-card-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .vgi-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .vgi-card p {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .vgi-card-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .vgi-card:hover .vgi-card-btn {
            background-color: var(--primary-color);
            color: white;
        }

        .vgi-cta {
            text-align: center;
        }

        .vgi-cta-btn {
            display: inline-block;
            padding: 18px 45px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: var(--text-on-primary);
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .vgi-cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
            z-index: -1;
            transition: all 0.4s ease;
            opacity: 0;
        }

        .vgi-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(198, 40, 40, 0.4);
        }

        .vgi-cta-btn:hover::before {
            opacity: 1;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .vgi-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .vgi-cards {
                grid-template-columns: 1fr;
            }
            
            .vgi-section-title h2 {
                font-size: 2rem;
            }
            
            .vgi-card {
                padding: 30px 20px;
            }
        }

        /* Animation Classes */
        .vgi-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .vgi-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .vgi-delay-1 {
            transition-delay: 0.2s;
        }

        .vgi-delay-2 {
            transition-delay: 0.4s;
        }

        
        .vorsw-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .vorsw-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, var(--vorsw-background-color), var(--vorsw-section-bg));
        }

        .vorsw-heading {
            font-family: 'Poppins', sans-serif;
            text-align: center;
            margin-bottom: 20px;
            color: var(--vorsw-primary-color);
            font-weight: 700;
            font-size: 2.5rem;
        }

        .vorsw-subtext {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
            color: var(--vorsw-text-light);
            font-size: 1.1rem;
        }

        .vorsw-quote {
            text-align: center;
            font-style: italic;
            margin-bottom: 40px;
            padding: 20px;
            background-color: rgba(255, 213, 79, 0.1);
            border-radius: 10px;
            color: var(--vorsw-primary-dark);
            font-size: 1.2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Category Filter */
        .vorsw-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .vorsw-filter-btn {
            background: white;
            border: 1px solid var(--vorsw-border-color);
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vorsw-filter-btn:hover {
            background-color: var(--vorsw-primary-light);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(198, 40, 40, 0.2);
        }

        .vorsw-filter-btn.active {
            background-color: var(--vorsw-primary-color);
            color: white;
            border-color: var(--vorsw-primary-color);
        }

        /* Video Section */
        .vorsw-video-container {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
        }

        .vorsw-video-wrapper {
            position: relative;
            width: 100%;
            max-width: 800px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .vorsw-video-thumbnail {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--vorsw-secondary-color), var(--vorsw-secondary-light));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            cursor: pointer;
            position: relative;
        }

        .vorsw-video-thumbnail i {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--vorsw-accent-color);
        }

        .vorsw-video-thumbnail h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .vorsw-video-thumbnail p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Gallery Grid */
        .vorsw-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .vorsw-gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px var(--vorsw-shadow-color);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: vorsw-fadeInUp 0.6s forwards;
        }

        .vorsw-gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .vorsw-gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .vorsw-gallery-item:hover .vorsw-gallery-img {
            transform: scale(1.05);
        }

        .vorsw-gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .vorsw-gallery-item:hover .vorsw-gallery-overlay {
            transform: translateY(0);
        }

        .vorsw-gallery-caption {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .vorsw-gallery-date {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* View More Button */
        .vorsw-view-more {
            text-align: center;
            margin-top: 30px;
        }

        .vorsw-btn {
            display: inline-block;
            
            padding: 12px 30px;
            border-radius: 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
        }

        .vorsw-btn:hover {
            background-color: var(--vorsw-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(198, 40, 40, 0.4);
        }

        /* Lightbox */
        .vorsw-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .vorsw-lightbox.active {
            display: flex;
            opacity: 1;
        }

        .vorsw-lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .vorsw-lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }

        .vorsw-lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 15px;
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
        }

        .vorsw-lightbox-close, 
        .vorsw-lightbox-prev, 
        .vorsw-lightbox-next {
            position: absolute;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .vorsw-lightbox-close {
            top: -50px;
            right: 0;
        }

        .vorsw-lightbox-prev, 
        .vorsw-lightbox-next {
            top: 50%;
            transform: translateY(-50%);
        }

        .vorsw-lightbox-prev {
            left: -50px;
        }

        .vorsw-lightbox-next {
            right: -50px;
        }

        .vorsw-lightbox-close:hover, 
        .vorsw-lightbox-prev:hover, 
        .vorsw-lightbox-next:hover {
            color: var(--vorsw-accent-color);
        }

        /* Video Modal */
        .vorsw-video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1001;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .vorsw-video-modal.active {
            display: flex;
            opacity: 1;
        }

        .vorsw-video-modal-content {
            width: 90%;
            max-width: 800px;
            position: relative;
        }

        .vorsw-video-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .vorsw-video-modal-close:hover {
            color: var(--vorsw-accent-color);
        }

        .vorsw-video-player {
            width: 100%;
            height: 450px;
            border-radius: 8px;
        }

        /* Animations */
        @keyframes vorsw-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .vorsw-gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .vorsw-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .vorsw-heading {
                font-size: 2rem;
            }
            
            .vorsw-video-thumbnail {
                height: 300px;
            }
            
            .vorsw-video-thumbnail h3 {
                font-size: 1.5rem;
            }
            
            .vorsw-lightbox-prev {
                left: 10px;
            }
            
            .vorsw-lightbox-next {
                right: 10px;
            }
            
            .vorsw-lightbox-close {
                top: 10px;
                right: 10px;
            }
        }

        @media (max-width: 576px) {
            .vorsw-gallery {
                grid-template-columns: 1fr;
            }
            
            .vorsw-section {
                padding: 50px 0;
            }
            
            .vorsw-filter {
                gap: 10px;
            }
            
            .vorsw-filter-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            
            .vorsw-video-thumbnail {
                height: 250px;
            }
            
            .vorsw-video-thumbnail i {
                font-size: 3rem;
            }
            
            .vorsw-video-thumbnail h3 {
                font-size: 1.3rem;
            }
            
            .vorsw-video-player {
                height: 300px;
            }
        }

/* Gallery Section */
    .vorsw-gallery-section {
      padding: 80px 0;
      background: linear-gradient(to bottom, var(--background-color), var(--section-bg));
    }

    .vorsw-gallery-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .vorsw-gallery-heading {
      font-family: "Poppins", sans-serif;
      text-align: center;
      margin-bottom: 20px;
      color: var(--primary-color);
      font-weight: 700;
      font-size: 2.5rem;
    }

    .vorsw-gallery-subtext {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      color: var(--text-light);
      font-size: 1.1rem;
    }

    .vorsw-gallery-quote {
      text-align: center;
      font-style: italic;
      margin-bottom: 40px;
      padding: 20px;
      background-color: rgba(255, 213, 79, 0.15);
      border-radius: 10px;
      color: var(--primary-dark);
      font-size: 1.2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Filter Buttons */
    .vorsw-gallery-filter {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 40px;
    }

    .vorsw-gallery-filter-btn {
      background: white;
      border: 1px solid var(--border-color);
      padding: 10px 20px;
      border-radius: 30px;
      cursor: pointer;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .vorsw-gallery-filter-btn:hover {
      background-color: var(--primary-light);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(198, 40, 40, 0.2);
    }

    .vorsw-gallery-filter-btn.active {
      background-color: var(--primary-color);
      color: white;
      border-color: var(--primary-color);
    }

    /* Video Section */
    .vorsw-gallery-video-container {
      display: flex;
      justify-content: center;
      margin-bottom: 50px;
    }

    .vorsw-gallery-video-wrapper {
      position: relative;
      width: 100%;
      max-width: 800px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .vorsw-gallery-video-thumbnail {
      width: 100%;
      height: 400px;
      background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      cursor: pointer;
    }

    .vorsw-gallery-video-thumbnail i {
      font-size: 4rem;
      margin-bottom: 20px;
      color: var(--accent-color);
    }



        /* About Us subpage */
        
    .vng-about-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, var(--background-color) 0%, var(--section-bg) 100%);
    }

    .vng-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .vng-section-title {
      text-align: center;
      margin-bottom: 60px;
      opacity: 0;
      animation: vng-fadeInUp 0.8s ease forwards;
    }

    .vng-section-title span {
      display: inline-block;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--primary-color);
      margin-bottom: 10px;
      position: relative;
      padding-bottom: 10px;
    }

    .vng-section-title span::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
      border-radius: 2px;
    }

    .vng-section-title h1 {
      font-size: 42px;
      font-weight: 700;
      color: var(--secondary-color);
      margin-top: 15px;
      line-height: 1.3;
    }

    .vng-content-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }

    .vng-description {
      background: var(--text-on-primary);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 30px var(--shadow-color);
      border-left: 5px solid var(--primary-color);
      opacity: 0;
      animation: vng-fadeInLeft 0.8s ease 0.2s forwards;
    }

    .vng-description p {
      font-size: 17px;
      color: var(--text-light);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .vng-description p:last-child {
      margin-bottom: 0;
      font-weight: 500;
      color: var(--secondary-color);
    }

    /* ===========================
       TEAM SECTION
    ============================ */

    .vng-team-section {
      background: var(--text-on-primary);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 8px 30px var(--shadow-color);
      margin-bottom: 40px;
      opacity: 0;
      animation: vng-fadeInRight 0.8s ease 0.4s forwards;
    }

    .vng-team-title {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 30px;
      text-align: center;
      position: relative;
      padding-bottom: 15px;
    }

    .vng-team-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--accent-color);
    }

    .vng-team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .vng-team-card {
      background: linear-gradient(135deg, var(--section-bg) 0%, var(--background-color) 100%);
      padding: 25px;
      border-radius: 10px;
      border: 2px solid var(--border-color);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .vng-team-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--primary-color), var(--secondary-light));
      transform: translateX(-4px);
      transition: transform 0.3s ease;
    }

    .vng-team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px var(--shadow-color);
      border-color: var(--primary-light);
    }

    .vng-team-card:hover::before {
      transform: translateX(0);
    }

    .vng-team-role {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-color);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .vng-team-name {
      font-size: 20px;
      font-weight: 700;
      color: var(--secondary-color);
    }

    /* ===========================
       INFO CARDS
    ============================ */

    .vng-info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      opacity: 0;
      animation: vng-fadeInUp 0.8s ease 0.6s forwards;
    }

    .vng-info-card {
      background: var(--text-on-primary);
      padding: 35px 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 8px 30px var(--shadow-color);
      border-top: 4px solid var(--primary-color);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .vng-info-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.05), transparent);
      transition: left 0.5s ease;
    }

    .vng-info-card:hover::before {
      left: 100%;
    }

    .vng-info-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px var(--shadow-color);
    }

    .vng-info-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px;
    }

    .vng-info-value {
      font-size: 22px;
      font-weight: 700;
      color: var(--secondary-color);
      position: relative;
      z-index: 1;
    }

    .vng-info-status {
      display: inline-block;
      margin-top: 10px;
      padding: 6px 16px;
      background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
      color: var(--secondary-color);
      font-size: 12px;
      font-weight: 600;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(255, 213, 79, 0.3);
    }

    /* ===========================
       ANIMATIONS
    ============================ */

    @keyframes vng-fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes vng-fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes vng-fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* ===========================
       RESPONSIVE
    ============================ */

    @media (max-width: 768px) {
      .vng-about-section {
        padding: 50px 15px;
      }

      .vng-section-title h1 {
        font-size: 28px;
      }

      .vng-description,
      .vng-team-section {
        padding: 25px;
      }

      .vng-description p {
        font-size: 16px;
      }

      .vng-team-grid {
        grid-template-columns: 1fr;
      }

      .vng-info-cards {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .vng-section-title h1 {
        font-size: 24px;
      }

      .vng-team-title {
        font-size: 22px;
      }
    }
 



        /* Our Operational Area */


            /* Section */
    .operational-areas {
      padding: var(--spacing-xl) var(--spacing-sm);
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: var(--spacing-lg);
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: var(--spacing-xs);
      color: var(--primary-color);
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
    }

    /* Counter Strip */
    .counter-strip {
      display: flex;
      justify-content: space-around;
      background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-light)
      );
      color: var(--text-on-primary);
      padding: var(--spacing-md);
      border-radius: var(--radius-lg);
      margin-bottom: var(--spacing-lg);
      box-shadow: 0 4px 12px var(--shadow-color);
    }

    .counter-item {
      text-align: center;
      flex: 1;
    }

    .counter-value {
      display: block;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: var(--spacing-xs);
    }

    .counter-label {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    /* Controls */
    .controls {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-sm);
      margin-bottom: var(--spacing-lg);
    }

    .search-box {
      position: relative;
      max-width: 400px;
      margin: 0 auto;
      width: 100%;
    }

    .search-input {
      width: 100%;
      padding: var(--spacing-sm) var(--spacing-md);
      padding-left: 2.5rem;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .search-input:focus {
      outline: none;
      border-color: var(--primary-light);
      box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
    }

    .search-icon {
      position: absolute;
      left: var(--spacing-sm);
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-light);
    }

    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-xs);
      justify-content: center;
    }

    .chip {
      padding: var(--spacing-xs) var(--spacing-sm);
      background-color: var(--section-bg);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-xl);
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
    }

    .chip:hover {
      background-color: var(--primary-light);
      color: var(--text-on-primary);
      transform: translateY(-2px);
    }

    .chip.active {
      background-color: var(--primary-color);
      color: var(--text-on-primary);
      border-color: var(--primary-color);
    }

    /* Cards */
    .cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-lg);
    }

    .card {
      background-color: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow-color);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--shadow-color);
    }

    .card-header {
      background-color: var(--primary-color);
      color: var(--text-on-primary);
      padding: var(--spacing-sm);
    }

    .card-title {
      font-size: 1.2rem;
      margin: 0;
    }

    .card-body {
      padding: var(--spacing-md);
    }

    .card-description {
      color: var(--text-light);
      margin-bottom: var(--spacing-sm);
    }

    .card-badges {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-xs);
      margin-bottom: var(--spacing-md);
    }

    .badge {
      padding: 0.25rem var(--spacing-xs);
      background-color: var(--secondary-light);
      color: var(--text-on-primary);
      border-radius: var(--radius-sm);
      font-size: 0.8rem;
    }

    .badge.agriculture {
      background-color: #4caf50;
    }

    .badge.women {
      background-color: #e91e63;
    }

    .badge.education {
      background-color: #9c27b0;
    }

    .badge.environment {
      background-color: #009688;
    }

    .card-footer {
      padding: 0 var(--spacing-md) var(--spacing-md);
    }

    .map-button {
      display: inline-block;
      padding: var(--spacing-xs) var(--spacing-sm);
      background-color: var(--primary-color);
      color: var(--text-on-primary);
      border: none;
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
      text-decoration: none;
    }

    .map-button:hover {
      background-color: var(--primary-light);
      transform: scale(1.05);
    }

    .map-area {
      margin-top: var(--spacing-lg);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow-color);
      height: 400px;
      background-color: var(--section-bg);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .map-fallback {
      text-align: center;
      padding: var(--spacing-lg);
      color: var(--text-light);
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive */
    @media (min-width: 768px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      .search-box {
        margin: 0;
      }
    }

    @media (min-width: 1024px) {
      .cards-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .chip:focus-visible,
    .map-button:focus-visible {
      outline: 2px solid var(--accent-color);
      outline-offset: 2px;
    }
