* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: #fafafa;
            color: #111111;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Loading Screen */
        #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fafafa;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.8s ease;
        }

        #loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-logo {
            width: 300px;
            height: auto;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e0e0e0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            background: rgba(250, 250, 250, 0.98);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-logo img {
            height: 170px;
            width: auto;
             display: flex;
    align-items: center;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            color: #111111;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s ease;
            letter-spacing: -0.01em;
        }

        .nav-links a:not(.nav-cta):hover {
            color: #666;
        }

        .nav-cta {
            background: #111111;
            color: #ffffff !important;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .nav-cta:hover {
            background: #000000;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
        }

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

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

        .hero-badge {
            display: inline-block;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
            animation: slideUp 0.6s ease-out 0.2s both;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content h1 {
            font-family: 'Instrument Serif', serif;
            font-size: 72px;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
            color: #111111;
            animation: slideUp 0.6s ease-out 0.3s both;
        }

        .hero-content p {
            font-size: 20px;
            color: #666;
            margin-bottom: 45px;
            line-height: 1.7;
            font-weight: 400;
            max-width: 650px;
            animation: slideUp 0.6s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: slideUp 0.6s ease-out 0.5s both;
        }

        .btn-primary {
            background: #111111;
            color: #ffffff;
            padding: 16px 32px;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #000000;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-secondary {
            background: transparent;
            color: #111111;
            padding: 16px 32px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            border-color: #111111;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            animation: bounce 2s ease-in-out infinite;
        }

        .scroll-indicator:hover {
            opacity: 1;
        }

        .scroll-indicator span {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #666;
        }

        .scroll-indicator::after {
            content: '↓';
            font-size: 20px;
            color: #111111;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* CEO Flex Section */
        .ceo-section {
            padding: 120px 60px;
            background: #ffffff;
            border-top: 1px solid #e0e0e0;
        }

        .ceo-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .ceo-header {
            margin-bottom: 70px;
        }

        .ceo-badge {
            display: inline-block;
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .ceo-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 56px;
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            color: #111111;
        }

        .ceo-header p {
            font-size: 19px;
            color: #666;
            max-width: 700px;
            line-height: 1.7;
        }

        .ceo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .ceo-card {
            background: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 16px;
            padding: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .ceo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #111111;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .ceo-card:hover::before {
            transform: scaleX(1);
        }

        .ceo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: #111111;
        }

        .ceo-card.large {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        .ceo-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #111111, #333333);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 auto 30px;
            transition: transform 0.4s ease;
        }

        .ceo-card:hover .ceo-photo {
            transform: scale(1.05);
        }

        .ceo-card.large .ceo-photo {
            width: 280px;
            height: 280px;
            font-size: 96px;
            margin: 0;
        }

        .ceo-name {
            font-family: 'Instrument Serif', serif;
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 8px;
            color: #111111;
           
        }
        .ceo-icon {
  /* --- This is how you make it small --- */
  width: 170px;   /* Set your desired width */
  height: 170px;  /* Set your desired height */

  /* These lines help align it with the text */
  vertical-align: middle;
  margin-right: 5px; /* Adds a nice space */
}

        .ceo-card.large .ceo-name {
            font-size: 48px;
        }

        .ceo-title {
            font-size: 15px;
            color: #666;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ceo-bio {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .ceo-card.large .ceo-bio {
            font-size: 18px;
            line-height: 1.9;
        }

        .ceo-achievements {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
        }

        .achievement {
            text-align: left;
        }

        .achievement-value {
            font-size: 32px;
            font-weight: 700;
            color: #111111;
            display: block;
            margin-bottom: 6px;
            font-family: 'Space Grotesk', sans-serif;
        }

        .achievement-label {
            font-size: 13px;
            color: #999;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .ceo-quote {
            font-family: 'Instrument Serif', serif;
            font-size: 22px;
            font-style: italic;
            color: #111111;
            line-height: 1.6;
            margin-top: 30px;
            padding-left: 24px;
            border-left: 3px solid #111111;
        }

        /* Thoughts Section */
        .thoughts-section {
            padding: 100px 60px;
            background: #fafafa;
        }

        .thoughts-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .thoughts-badge {
            display: inline-block;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

        .thoughts-container h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 40px;
            color: #111111;
        }

        .thought-card {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .thought-card:hover {
            transform: translateX(8px);
            border-color: #111111;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .thought-meta {
            font-size: 13px;
            color: #999;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .thought-content {
            font-size: 17px;
            color: #111111;
            line-height: 1.8;
        }

        /* Stats Section */
        .stats-section {
            background: #111111;
            padding: 100px 60px;
            color: #ffffff;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
        }

        .stat-item {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* Portfolio Preview */
        .portfolio-preview {
            padding: 120px 60px;
            background: #ffffff;
        }

        .portfolio-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .portfolio-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .portfolio-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 56px;
            font-weight: 400;
            margin-bottom: 20px;
            color: #111111;
        }

        .portfolio-header p {
            font-size: 19px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .portfolio-item {
            background: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px;
            transition: all 0.3s ease;
            text-align: center;
            cursor: pointer;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
            border-color: #111111;
        }

        .portfolio-icon {
            width: 64px;
            height: 64px;
            background: #111111;
            border-radius: 12px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #ffffff;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .portfolio-item h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #111111;
        }

        .portfolio-item p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 100px 60px;
            background: #fafafa;
            border-top: 1px solid #e0e0e0;
        }

        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-container h2 {
            font-family: 'Instrument Serif', serif;
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 16px;
            color: #111111;
        }

        .newsletter-container p {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px 20px;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            font-size: 15px;
            font-family: 'Space Grotesk', sans-serif;
            transition: all 0.2s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #111111;
            box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.05);
        }

        .newsletter-submit {
            background: #111111;
            color: #ffffff;
            padding: 16px 32px;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .newsletter-submit:hover {
            background: #000000;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Footer */
        footer {
            background: #ffffff;
            border-top: 1px solid #e0e0e0;
            padding: 80px 60px 40px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand img {
            height: 150px;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: #666;
            line-height: 1.7;
            max-width: 350px;
            font-size: 15px;
        }

        .footer-column h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #111111;
        }

        .footer-column a {
            display: block;
            color: #666;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 15px;
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: #111111;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: #111111;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 50px;
            height: 50px;
            background: #111111;
            color: #ffffff;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 56px;
            }

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

            .ceo-card.large {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .ceo-card.large .ceo-photo {
                margin: 0 auto 30px;
            }

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

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .nav-container {
                padding: 0 30px;
                height: 70px;
            }

            .nav-logo img {
                height: 100px;
            }

            .nav-links {
                gap: 20px;
            }

            .nav-links a {
                font-size: 14px;
            }

            .nav-cta {
                padding: 8px 18px;
            }

            .hero {
                padding-top: 70px;
            }

            .hero-container, .ceo-section, .thoughts-section, .portfolio-preview, .newsletter-section {
                padding: 60px 30px;
            }

            .hero-content h1 {
                font-size: 42px;
            }

            .hero-content p {
                font-size: 18px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .scroll-indicator {
                display: none;
            }

            .ceo-header h2, .portfolio-header h2 {
                font-size: 38px;
            }

            .ceo-achievements {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .ceo-card.large .ceo-photo {
                width: 200px;
                height: 200px;
                font-size: 72px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-submit {
                width: 100%;
            }

            footer {
                padding: 60px 30px 30px;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }

        /* Fade-in animation for scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }