        :root {
            --primary: #b8860b;
            --primary-dark: #8b6500;
            --primary-light: #daa520;
            --text-light: #1f2937;
            --text-light-secondary: #28282a;
            --bg-light: #ffffff;
            --bg-light-secondary: #f9fafb;
            --border-light: #e5e7eb;
            --text-dark: #f3f4f6;
            --text-dark-secondary: #d1d5db;
            --bg-dark: #111827;
            --bg-dark-secondary: #1f2937;
            --border-dark: #374151;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            /* background-color: var(--bg-light); */
            color: var(--text-light);
            line-height: 1.6;
            transition: background-color 0.3s, color 0.3s;
        }

        body.dark-mode {
            background-color: var(--bg-dark);
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 5rem 2rem 4rem;
            text-align: center;
            margin-top: 80px;
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
            animation: fadeInDown 0.8s ease;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 1.3rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease;
            font-weight: 300;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Content Section */
        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            text-decoration: none;
            margin-bottom: 3rem;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1rem;
        }

        body.dark-mode .back-btn {
            color: var(--primary-light);
        }

        .back-btn:hover {
            gap: 1rem;
            color: var(--primary-dark);
        }

        /* Intro Section */
        .section-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .intro-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
            transition: transform 0.3s;
        }

        .intro-image:hover {
            transform: scale(1.02);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .intro-text h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .intro-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-light-secondary);
            margin-bottom: 1.5rem;
        }

        body.dark-mode .intro-text p {
            color: var(--text-dark-secondary);
        }

        /* Ventures Section */
        .ventures-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }

        .venture-card {
            background-color: var(--bg-light-secondary);
            padding: 2.5rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary);
            transition: all 0.3s;
            position: relative;
        }

        body.dark-mode .venture-card {
            background-color: var(--bg-dark-secondary);
        }

        .venture-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
        }

        .venture-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }

        .venture-card i {
            margin-right: 0.5rem;
            font-size: 1.3rem;
        }

        .venture-card p {
            color: var(--text-light-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        body.dark-mode .venture-card p {
            color: var(--text-dark-secondary);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 4rem 3rem;
            border-radius: 12px;
            margin: 4rem 0;
            text-align: center;
            box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
        }

        .stat {
            animation: slideIn 0.6s ease forwards;
        }

        .stat:nth-child(2) {
            animation-delay: 0.2s;
        }

        .stat:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Impact Section */
        .impact-section {
            margin: 4rem 0;
        }

        .impact-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary);
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .impact-item {
            background-color: var(--bg-light-secondary);
            padding: 2.5rem;
            border-radius: 12px;
            transition: all 0.3s;
            border-top: 4px solid var(--primary);
        }

        body.dark-mode .impact-item {
            background-color: var(--bg-dark-secondary);
        }

        .impact-item:hover {
            box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
            transform: translateY(-8px);
        }

        .impact-item h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }

        .impact-item i {
            margin-right: 0.75rem;
            font-size: 1.5rem;
        }

        .impact-item p {
            color: var(--text-light-secondary);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        body.dark-mode .impact-item p {
            color: var(--text-dark-secondary);
        }

        /* Initiatives Section */
        .initiatives-section {
            margin: 4rem 0;
        }

        .initiatives-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary);
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .initiatives-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .initiative-item {
            background-color: var(--bg-light-secondary);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--primary);
            transition: all 0.3s;
            display: flex;
            gap: 1.5rem;
        }

        body.dark-mode .initiative-item {
            background-color: var(--bg-dark-secondary);
        }

        .initiative-item:hover {
            box-shadow: 0 10px 30px rgba(184, 134, 11, 0.15);
            transform: translateX(8px);
        }

        .initiative-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .initiative-content h3 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
        }

        .initiative-content p {
            color: var(--text-light-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        body.dark-mode .initiative-content p {
            color: var(--text-dark-secondary);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 4rem 3rem;
            border-radius: 12px;
            text-align: center;
            margin: 4rem 0;
            box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
        }

        .cta-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: white;
            color: var(--primary);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            background-color: #f9f9f9;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-intro {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .hero {
                padding: 3rem 1.5rem 2.5rem;
                margin-top: 60px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .intro-text h2 {
                font-size: 1.8rem;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .impact-section h2,
            .initiatives-section h2 {
                font-size: 2rem;
            }

            .content-wrapper {
                padding: 2rem 1.5rem;
            }

            .cta-section {
                padding: 3rem 1.5rem;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .initiative-item {
                flex-direction: column;
                text-align: center;
            }

            .initiative-icon {
                margin: 0 auto;
            }


            .ps-footer-wrap {
                gap: 0px !important;

            }

            .ps-details-area {
                text-align: center !important;
                padding-left: 0px !important;
            }

            .ps-footer-wrap {
                gap: 20px !important;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .intro-text h2 {
                font-size: 1.5rem;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .ventures-grid {
                grid-template-columns: 1fr;
            }
        }

        body.dark .venture-card {
            background-color: rgba(0, 0, 0, 0.178);
        }

        body.dark .venture-card p {
            color: whitesmoke;
        }

        body.dark .intro-text p {
            color: whitesmoke;
        }

        body.dark .impact-item {
            background-color: rgba(0, 0, 0, 0.178);
        }

        body.dark .impact-item p {
            color: whitesmoke;
        }

        body.dark .initiative-item {
            background-color: rgba(0, 0, 0, 0.178);

        }

        body.dark .initiative-item p {
            color: whitesmoke;

        }



        /* ===== Desktop Sidebar (Right Side) ===== */
        .social-sidebar-right {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            background-color: #996600;
            padding: 15px 10px;
            border-top-left-radius: 15px;
            border-bottom-left-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .social-icon {
            color: white;
            font-size: 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.2);
            color: #222;
            background-color: white;
            border-radius: 50%;
            padding: 5px;
        }

        /* ===== Mobile View: Bottom Navbar ===== */
        @media (max-width: 768px) {
            .social-sidebar-right {
                top: auto;
                bottom: 0;
                right: 0;
                left: 0;
                transform: none;
                flex-direction: row;
                justify-content: space-around;
                background-color: #996600;
                padding: 10px 0;
                border-radius: 0;
                box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
            }

            .social-icon {
                font-size: 22px;
            }

            .social-icon:hover {
                transform: translateY(-3px);
            }
        }

        @media (max-width: 480px) {
            .social-icon {
                font-size: 20px;
            }
        }


        /* Background */
        /* Background */
        .ps-footer-bg {
            background: url('images/Footer image 1.jpg') no-repeat center center;
            background-size: cover;
            color: #ffffff;
            padding: 10px 20px;
            font-family: "Poppins", sans-serif;
        }


        /* Wrapper Layout */
        .ps-footer-wrap {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 200px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* Left Section */
        .ps-photo-area {
            flex: 1;
            text-align: center;
            min-width: 250px;
            border-radius: 1000px;
        }

        .ps-profile-pic {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            border: 2px solid #d8b56a;
            background-color: white;
            object-fit: cover;
        }

        /* Center Section */
        .ps-details-area {
            flex: 2;
            text-align: start;
            min-width: 300px;
            padding-left: 50px;

        }

        .ps-name {
            font-size: 28px;
            font-weight: 700;
            margin: 0;
        }

        .ps-role {
            color: #d8b56a;
            letter-spacing: 2px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .ps-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ps-contact-list li {
            margin: 15px 0;
            font-size: 15px;
        }

        .ps-contact-list i {
            color: #d8b56a;
            margin-right: 10px;
        }

        .ps-contact-list a {
            color: #fff;
            text-decoration: none;
        }

        .ps-contact-list a:hover {
            color: #d8b56a;
        }

        /* Right Section */
        .ps-logo-area {
            flex: 1;
            text-align: center;
            min-width: 250px;
        }

        .ps-logo img.footer-logo {
            width: 100px;
            /* adjust as needed */
            height: auto;
            object-fit: contain;
        }


        .ps-brand {
            font-size: 70px;
            font-weight: 700;
            color: #d8b56a;
            margin-bottom: 15px;
        }


        .ps-social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 2px;
            background-color: #ffffff;
            /* white background */
            color: #0b2341;
            /* icon color (dark blue) */
            border-radius: 50%;
            /* makes it circular */
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .ps-social-icons a:hover {
            background-color: #d8b56a;
            /* gold hover color */
            color: #ffffff;
            /* white icon on hover */
            transform: scale(1.1);
            /* smooth zoom effect */
        }


        /* Responsive */
        @media (max-width: 768px) {
            .ps-footer-wrap {
                flex-direction: column;
                text-align: center;
            }

            .ps-profile-pic {
                width: 150px;
                height: 150px;
            }
        }


        @media (max-width: 1240px) {

            .ps-footer-wrap {
                gap: 50px !important;

            }
        }



        /* Company Logos Section */
        .ps-company-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin: 20px 0;
        }

        .ps-company-logos img {
            width: 100px;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
            /* background-color: white; */
            border-radius: 8px;
            padding: 6px;
        }

        .ps-company-logos img:hover {
            transform: scale(1.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .ps-company-logos img {
                width: 60px;
            }
        }

        @media (max-width: 768px) {
            .ps-footer-wrap {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .ps-company-logos {
                gap: 10px;
            }

            .ps-company-logos img {
                width: 55px;
            }
        }

        @media (max-width: 480px) {
            .ps-company-logos img {
                width: 85px;
            }
        }

        .size {
            width: 100px;
        }