        :root {
            --bg-primary: #fafafa;
            --bg-secondary: #ffffff;
            --text-primary: #1a1a1a;
            --text-secondary: #383838;
            --accent: #b8860b;
            --accent-hover: #9a7109;
            --accent-light: rgba(184, 134, 11, 0.1);
            --border: #e0e0e0;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
        }

        [data-theme="dark"] {
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --text-primary: #f5f5f5;
            --text-secondary: #a0a0a0;
            --accent: #daa520;
            --accent-hover: #b8860b;
            --accent-light: rgba(218, 165, 32, 0.15);
            --border: #2a2a2a;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            transition: background 0.4s ease, color 0.4s ease;
            overflow-x: hidden;
        }



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /* font-family: "Poppins", sans-serif; */
            font-family: "Montserrat", sans-serif;

            transition: background 0.3s, color 0.3s;
        }

        body {
            background: #fdf7f7;
            color: #1a1a1a;
        }

        /* Navbar */

        .nav-bar {
            display: flex;
            justify-content: space-between;
            width: 100%;
            align-items: center;
            z-index: 9999;
        }


        /* .navbar.scrolled {
    background: var(--nav);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
} */

        .navbar.scrolled {
            background: var(--nav);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
            backdrop-filter: blur(6px);
        }

        /* .navbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    padding: 15px 50px;
    transition: 0.3s;
    position: fixed;
    width: 100%;
} */
        .navbar {
            position: fixed;
            top: 0;
            /* make sure it hugs the viewport top */
            left: 0;
            right: 0;
            width: 100%;
            z-index: 9999;
            /* sit above all other content */
            display: flex !important;
            justify-content: space-between !important;
            align-items: center;
            padding: 15px 50px;
            transition: 0.3s;
        }

        .logo img {
            height: 50px;
        }

        nav ul {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 25px;
        }

        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        nav ul li a i {
            color: #b8860b;
        }

        .mode-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: #ffffff;
            background-color: #000;
            font-size: 22px;
            height: 38px;
            width: 38px;
            border-radius: 8px;
        }

        /* .mode-btn .i{

} */

        /* Hamburger menu button */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #D8B474;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive navbar */
        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 70px;
                right: 0;
                width: 100%;
                background-color: var(--bg);
                text-align: center;
                padding: 20px 0;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 20px;
                display: flex;
                align-items: flex-start;
                justify-content: center;
                padding-left: 30px;
            }

            .menu-toggle {
                display: block;
            }

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

            }

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

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

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 50px;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-size: 48px;
            color: var(--text);
            font-family: 'Oswald', sans-serif;
            /* color: #222222; */

        }

        .hero p {
            color: var(--text);
            margin: 20px 0;
            line-height: 1.6;
            font-size: 18px !important;
            font-weight: 400 !important;
            color: var(--para) !important;

            /* adds space between lines */

        }

        .btn-group {
            display: flex;
            gap: 15px;
        }

        .btn-primary,
        .btn-outline {
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
        }

        .btn-primary {
            background-color: #D8B474;
            border: none;
            color: #fff;
        }

        .btn-outline {
            background: none;
            border: 2px solid #D8B474;
            color: #D8B474;
        }

        /* ===========================
   🌗 COLOR VARIABLES
=========================== */
        :root {
            --bg: #ffffff;
            --text: #222222;
            --nav: #ffffff;
            --card: #ffffff;
            --accent: #b8860b;
            --overlay: rgba(0, 0, 0, 0.8);
            --btn-bg: #ffffff;
            --btn-text: #667eea;
            --btn-hover-bg: #667eea;
            --btn-hover-text: #ffffff;
        }

        body.dark {
            --bg: #1a1a1a;
            --text: #ffffff;
            --nav: #2a2a2a;
            --card: #222222;
            --accent: #d4af37;
            --overlay: rgba(255, 255, 255, 0.15);
            --btn-bg: #333333;
            --btn-text: #d4af37;
            --btn-hover-bg: #d4af37;
            --btn-hover-text: #000000;
        }

        /* ===========================
   🌗 APPLY VARIABLES
=========================== */
        body {
            background: var(--bg);
            color: var(--text);
            font-family: "Montserrat", sans-serif;
            margin: 0;
            transition: background 0.4s, color 0.4s;
        }

        /* Navbar */
        .navbar {
            background: var(--nav);
            transition: background 0.4s;
        }

        nav ul li a {
            color: var(--text);
        }

        /* Gallery Section */
        .gallery-header {
            color: var(--text);
        }

        .photo-item {
            background: var(--card);
        }

        .photo-overlay {
            background: linear-gradient(to top, var(--overlay), transparent);
        }

        /* Buttons */
        .toggle-btn {
            background: var(--btn-bg);
            color: var(--btn-text);
            border: none;
            transition: all 0.3s ease;
        }

        .toggle-btn:hover {
            background: var(--btn-hover-bg);
            color: var(--btn-hover-text);
        }


        @media (max-width: 992px) {
            .menu-btn {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                right: 0;
                background: #fff;
                width: 100%;
                display: none;
                flex-direction: column;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: block;
                animation: fadeIn 0.4s ease;
            }

            .nav-links ul {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 0;
            }

            .nav-links a {
                justify-content: center;
            }
        }

        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #D8B474;
            font-size: 26px;
            cursor: pointer;
        }




        .theme-toggle {
            background: var(--accent-light);
            border: 1px solid var(--accent);
            border-radius: 30px;
            padding: 10px 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
        }

        .theme-toggle:hover {
            background: var(--accent);
            color: white;
            transform: scale(1.05);
        }

        .main-container {
            max-width: 1400px;
            margin: 100px auto 0;
            padding: 60px 40px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            margin-bottom: 100px;
            align-items: start;
        }

        .image-section {
            position: sticky;
            top: 120px;
            animation: fadeInLeft 1s ease;
        }

        .profile-frame {
            width: 100%;
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--accent), #d4af37);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease;
        }

        .profile-frame:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .profile-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
        }

        .profile-placeholder {
            font-size: 140px;
            color: white;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .content-section {
            animation: fadeInRight 1s ease;
        }

        .section-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            background: var(--accent-light);
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 24px;
            animation: fadeIn 1s ease 0.3s both;
        }

        .main-heading {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            /* background: linear-gradient(135deg, var(--text-primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
            background-clip: text;
            animation: fadeIn 1s ease 0.4s both;
            /* color: #222222; */
        }

        .intro-text {
            font-size: 20px;
            /* color: var(--text-secondary); */
            margin-bottom: 50px;
            line-height: 1.8;
            animation: fadeIn 1s ease 0.5s both;
        }

        .ventures-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .venture-item {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease both;
        }

        .venture-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--accent);
            transition: height 0.4s ease;
        }

        .venture-item:hover::before {
            height: 100%;
        }

        .venture-item:nth-child(1) {
            animation-delay: 0.6s;
        }

        .venture-item:nth-child(2) {
            animation-delay: 0.7s;
        }

        .venture-item:nth-child(3) {
            animation-delay: 0.8s;
        }

        .venture-item:nth-child(4) {
            animation-delay: 0.9s;
        }

        .venture-item:nth-child(5) {
            animation-delay: 1s;
        }

        .venture-item:nth-child(6) {
            animation-delay: 1.1s;
        }

        .venture-item:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent);
        }

        .venture-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .venture-description {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .philosophy-block {
            background: var(--bg-secondary);
            border-radius: 24px;
            padding: 60px;
            margin-bottom: 60px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            animation: fadeInUp 1s ease 0.8s both;
        }

        .philosophy-block .section-label {
            animation: none;
        }

        .philosophy-heading {
            font-size: 27px;
            font-weight: 800;
            margin-bottom: 28px;
            /* color: var(--text-primary); */
        }

        .philosophy-text {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 50px;
        }

        .quote-container {
            background: linear-gradient(135deg, #b8860b, #d4af37);
            border-radius: 20px;
            padding: 50px 60px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(184, 134, 11, 0.3);
        }

        .quote-container::after {
            content: '"';
            position: absolute;
            font-size: 200px;
            font-family: Georgia, serif;
            color: rgba(255, 255, 255, 0.1);
            top: -30px;
            right: 40px;
            line-height: 1;
        }

        .quote-content {
            font-size: 21px;
            font-weight: 600;
            font-style: italic;
            color: white;
            line-height: 1.5;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .quote-attribution {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 600;
            text-align: right;
            position: relative;
            z-index: 1;
        }

        .vision-block {
            background: var(--bg-secondary);
            border-radius: 24px;
            padding: 60px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            animation: fadeInUp 1s ease 1s both;
        }

        .vision-text {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 40px;
        }

        .bio-downloads {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 2px solid transparent;
        }

        .download-primary {
            background: var(--accent);
            color: white;
        }

        .download-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
        }

        .download-secondary {
            background: transparent;
            color: var(--accent);
            border-color: var(--accent);
        }

        .download-secondary:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

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

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

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

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

        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .image-section {
                position: relative;
                top: 0;
            }

            .main-heading {
                font-size: 42px;
            }

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

            .philosophy-block,
            .vision-block {
                padding: 40px;
            }

            .quote-container {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-header {
                padding: 16px 20px;
            }

            .main-container {
                padding: 40px 20px;
            }

            .main-heading {
                font-size: 32px;
            }

            .intro-text {
                font-size: 18px;
            }

            .philosophy-heading {
                font-size: 32px;
            }

            .quote-content {
                font-size: 22px;
            }

            .bio-downloads {
                flex-direction: column;
            }

            .download-btn {
                width: 100%;
                justify-content: center;
            }
        }

        body.dark .intro-text {
            color: #cdcaca;
        }

        body.dark .venture-item {
            background-color: #424141;
        }

        body.dark .venture-description {
            color: rgb(230, 228, 228);
        }

        body.dark .philosophy-block {
            background-color: #3a3a3a;
        }

        body.dark .philosophy-text {
            color: whitesmoke;
        }

        body.dark .vision-block {
            background-color: #3a3a3a;

        }

        body.dark .vision-text {
            color: whitesmoke;
        }


        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #D8B474;
            font-size: 26px;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }

        }




        /* ===== 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;
            }

            .profile-frame {
                height: 400px;

            }

            .main-heading {
                font-size: 20PX;
                line-height: 1.4;
            }

            .ventures-container {
                margin-bottom: 0px;
            }
        }




        /* Background */
        /* Background */
        .ps-footer-bg {
            background: url('images/Footer image 1.jpg') no-repeat center center;
            background-size: cover;
            color: #ffffff;
            /* padding: 20px 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;
            /* changed from center to 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: 1030px) {


            .ps-footer-bg {
                background: url('images/web banner DAMI psd 1.jpg') no-repeat center center;

            }
        } */


        @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;
            }

            /* .ps-footer-bg {
                background: url('images/web banner DAMI psd 1.jpg') no-repeat center center;
                height: 780px;
                object-fit: fill;

            } */
        }

        .size {
            width: 100px;
        }


        /* Footer Content Layout */
        .footer-container {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 40px;
            text-align: left;
        }

        /* Logo and About */
        .footer-logo {
            width: 130px;
            /* margin-bottom: 15px; */
            filter: brightness(1.1);
        }