/* Root variables */
        :root {
            --bg: #0e0b10;
            --cl: #faf7fa;
            --muted: #d7cfd6;
            --brand: #5f2a52;
            --brand-2: #862a2a;
            --card: #ffffff;
            --ink: #231f25;
            --shadow: 0 10px 30px rgba(0,0,0,.12);
            --radius: 18px;
            --radius-sm: 14px;
        }

        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            color: #2d3436;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Utilities */
        .container {
            width: min(1100px, 92%);
            margin-inline: auto;
        }

        .grid {
            display: grid;
            gap: 22px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: 0;
            background: linear-gradient(45deg, var(--brand), var(--brand-2));
            color: #fff;
            padding: 0.9rem 1.15rem;
            /* border-radius: 999px; */
            font-weight: 600;
            letter-spacing: 0.2px;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }

          /* .discovery-call-btn{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: 0;
            background: linear-gradient(45deg, #ffffff, #ffffff);
            color: #000000;
            padding: 0.9rem 1.15rem;
          
            font-weight: 600;
            letter-spacing: 0.2px;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        } */
         .discovery-call-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: 0;
            background: linear-gradient(45deg, #ffffff, #ffffff);
            color: #000000;
            padding: 0.9rem 1.15rem;
            border-radius: 6px;
            font-weight: 600;
            letter-spacing: 0.2px;
            box-shadow: var(--shadow);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.discovery-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #f8f8f8, #f0f0f0);
}

        .btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(45deg, #6d2349, #7a2525);
            box-shadow: 0 14px 34px rgba(95,42,82,.35);
        }

        .kicker {
            color: #b28a94;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.13em;
            font-size: 0.78rem;
        }

        h1, h2, h3 {
            line-height: 1.15;
            margin: 0 0 0.5rem 0;
        }

        h2 {
            font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
        }

        p {
            margin: 0.5rem 0 0 0;
        }

        .muted {
            color: #6b6168;
        }

        /* Header Styles */
        .harshwal-nav-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .harshwal-navbar-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            position: relative;
        }

        .harshwal-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            margin-right: auto;
            flex-shrink: 0;
        }

        .harshwal-nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .harshwal-nav-menu-list {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .harshwal-nav-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            height: 70px;
        }

        .harshwal-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 3px;
            transition: color 0.3s;
            height: 100%;
            cursor: pointer;
            white-space: nowrap;
        }

        .harshwal-nav-link:hover {
            color: #5f2a52;
        }

        .harshwal-nav-link-dropdown::after {
            content: '▼';
            font-size: 9px;
            transition: transform 0.3s;
            margin-left: 2px;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
            transform: rotate(180deg);
        }

        .harshwal-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 999;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .harshwal-nav-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
        }

        .harshwal-nav-dropdown-item:hover {
            background: #f5f7fa;
            color: #5f2a52;
            padding-left: 25px;
        }

        .harshwal-nav-cta-btn {
            background: linear-gradient(45deg, #5f2a52, #862a2a);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            margin-left: 10px;
        }

        .harshwal-nav-cta-btn:hover {
            background: linear-gradient(45deg, #6d2349, #7a2525);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
        }

        .harshwal-nav-mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .harshwal-nav-mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #5f2a52;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
            display: block;
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 72vh;
            display: grid;
            place-items: center;
            color: #fff;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            /* background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat; */
            background-image: url('../assets/304.jpg');
            transform: translateZ(0) scale(1.03);
            will-change: transform;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            /* background: linear-gradient(135deg, rgba(95, 42, 82, 0.9) 0%, rgba(134, 42, 42, 0.9) 100%); */
            
            backdrop-filter: saturate(110%);
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 7rem 0 5rem;
        }

        .hero h1 {
            font-size: clamp(2rem, 3.6vw + 1rem, 3.8rem);
            font-weight: 900;
            letter-spacing: 0.01em;
        }

        .hero .sub {
            max-width: 800px;
            margin: 0.9rem auto 1.2rem;
            color: #eadfe3;
        }

        .hero .cta {
            margin-top: 1.1rem;
        }

        /* Fade */
        .fade {
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 120px;
            pointer-events: none;
            background: linear-gradient(to bottom, transparent, #ffffff 40%);
            z-index: 2;
        }

        /* Sections */
        section {
            padding: 64px 0;
        }

        .section-head {
            text-align: center;
            margin-bottom: 28px;
        }

        /* Pillars */
        .pillars {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 22px;
            box-shadow: var(--shadow);
            border: 1px solid #f2edf0;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(95,42,82,.15);
        }

        .card .bar {
            height: 6px;
            width: 92px;
            background: linear-gradient(45deg, var(--brand), var(--brand-2));
            border-radius: 999px;
            margin: 0 auto 14px;
            opacity: 0.9;
        }

        .card .pillar-icon {
            height: 60px;
            width: 60px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: linear-gradient(45deg, rgba(95,42,82,.12), rgba(134,42,42,.12));
            margin: 0 auto 16px;
            font-size: 28px;
            color: var(--brand);
            box-shadow: 0 4px 12px rgba(95,42,82,.08);
            transition: transform 0.3s ease;
        }

        .card:hover .pillar-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Framework content */
        .framework-content {
            max-width: 900px;
            margin: 32px auto 0;
            text-align: center;
        }

        .framework-content .copy {
            color: #4b4348;
            margin-bottom: 24px;
        }

        /* Custom bullet list */
        .custom-list {
            list-style: none;
            padding: 0;
            max-width: 900px;
            margin: 0 auto;
        }

        .custom-list li {
            position: relative;
            padding-left: 32px;
            margin: 12px 0;
            color: #4b4348;
        }

        .custom-list li::before {
            content: '\f058'; /* Font Awesome check-circle */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--brand);
            font-size: 1.1em;
        }

        /* Features */
        .features {
            background: linear-gradient(180deg, #f6f0f3 0%, #f9f5f7 100%);
        }

        .feature-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            margin-top: 16px;
        }

        .feature {
            background: #fff;
            border: 1px solid #f0e7ec;
            border-radius: var(--radius-sm);
            padding: 18px;
            box-shadow: var(--shadow);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .feature:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(95,42,82,.12);
        }

        .icon {
            height: 36px;
            width: 36px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            background: linear-gradient(45deg, rgba(95,42,82,.08), rgba(134,42,42,.08));
            margin-bottom: 10px;
        }

        /* CTA band */
        .cta-band {
            text-align: center;
        }

        .cta-band .panel {
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: #fff;
            padding: 26px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .cta-band .panel p {
            margin: 0 auto 14px;
            max-width: 780px;
            color: #f0dde1;
        }

        /* Video block */
        .video-wrap {
            display: grid;
            place-items: center;
            
        }

        .video-card {
            aspect-ratio: 16/9;
            width: min(900px, 92%);
            border-radius: 22px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(180deg, #f6eff1, #efe6ea);
            border: 1px solid #f2e6ea;
            box-shadow: var(--shadow);
           
            background-image: url('../assets/tom_video.png'), linear-gradient(135deg, rgba(95, 42, 82, 0.1) 0%, rgba(134, 42, 42, 0.1) 100%);
        }

        .play {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            cursor: pointer;
            background: url("..assets/harshwal_building.png") center/cover no-repeat;
            background-image: url('../assets/tom_video.png')
        }
         

        .play .btn-round {
            height: 68px;
            width: 68px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #fff;
            box-shadow: 0 12px 40px rgba(0,0,0,.18);
        }

        .play svg {
            transform: translateX(2px);
        }

        .play p {
            position: absolute;
            bottom: 16px;
            left: 0;
            right: 0;
            text-align: center;
            color: #7f6970;
            font-size: 0.9rem;
        }

        /* Modal */
        .modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,.6);
            z-index: 40;
        }

        .modal.open {
            display: flex;
            animation: fadeIn 0.2s ease;
        }

        .modal .sheet {
            width: min(1000px, 92%);
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 20px 70px rgba(0,0,0,.5);
        }

        .modal .close {
            position: absolute;
            top: 22px;
            right: 22px;
            background: #fff;
            border: 0;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            cursor: pointer;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Footer styles (organized similarly) */
        .harshwal-footer {
            background: black;
            color: #ffffff;
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .harshwal-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .harshwal-footer-cta {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .harshwal-cta-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .harshwal-cta-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.5;
        }

        .harshwal-btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .harshwal-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .harshwal-footer-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 1024px) {
            .harshwal-footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .harshwal-footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .harshwal-company-info {
                grid-column: 1 / -1;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 767px) {
            .harshwal-footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .harshwal-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .harshwal-section-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .harshwal-footer-links {
            list-style: none;
            padding: 0;
        }

        .harshwal-footer-links li {
            margin-bottom: 0.8rem;
        }

        .harshwal-footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .harshwal-footer-link:hover {
            color: #ffffff;
        }

        .harshwal-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .harshwal-social-link {
            display: flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            font-weight: 600;
        }

        .harshwal-social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .harshwal-contact-info {
            margin-bottom: 1rem;
        }

        .harshwal-contact-label {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        .harshwal-contact-value {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.4;
            font-size: 0.95rem;
        }

        .harshwal-contact-value a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .harshwal-contact-value a:hover {
            color: #ffffff;
        }

        .harshwal-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
        }

        .harshwal-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .harshwal-footer-copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .harshwal-footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .harshwal-footer-legal-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .harshwal-footer-legal-link:hover {
            color: #ffffff;
        }

        /* Responsive styles */
        @media (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-logo img {
                height: 35px;
            }

            .harshwal-nav-menu-list {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                justify-content: flex-start;
                align-items: stretch;
            }

            .harshwal-nav-menu-list.harshwal-nav-active {
                left: 0;
            }

            .harshwal-nav-menu-item {
                width: 100%;
                height: auto;
                display: block;
            }

            .harshwal-nav-link {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f0f0f0;
                height: auto;
                font-size: 14px;
            }

            .harshwal-nav-link-dropdown::after {
                content: '+';
                font-size: 20px;
                font-weight: 300;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-link-dropdown::after {
                content: '−';
            }

            .harshwal-nav-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background: #f8f9fa;
                border-radius: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-dropdown {
                display: block;
                max-height: 500px;
            }

            .harshwal-nav-dropdown-item {
                padding: 12px 40px;
                border-bottom: 1px solid #e0e0e0;
            }

            .harshwal-nav-dropdown-item:last-child {
                border-bottom: none;
            }

            .harshwal-nav-dropdown-item:hover {
                padding-left: 45px;
            }

            .harshwal-nav-mobile-toggle {
                display: flex;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(1) {
                transform: rotate(-45deg) translate(-6px, 6px);
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(2) {
                opacity: 0;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(3) {
                transform: rotate(45deg) translate(-7px, -8px);
            }

            .harshwal-nav-cta-btn {
                margin: 20px;
                display: block;
                text-align: center;
                width: calc(100% - 40px);
            }

            .pillars {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .feature-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                min-height: 70vh;
            }
        }

        @media (max-width: 768px) {
            .harshwal-footer {
                padding: 3rem 0 1rem;
            }

            .harshwal-footer-content {
                padding: 0 1.5rem;
            }

            .harshwal-footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }

            .harshwal-footer-legal {
                justify-content: center;
                gap: 0.8rem;
                flex-wrap: wrap;
                order: 1;
            }

            .harshwal-footer-copyright {
                order: 2;
                font-size: 0.75rem;
                margin-top: 0.5rem;
            }
        }
        /* Add this to your existing <style> section */
        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            
        }

        .video-card {
            position: relative;
        }

        .play {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            z-index: 2;
        }

        /* Main Section */
        /* Main Section */
.tom-framework {
    padding: 80px 24px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(95, 42, 82, 0.02) 30%, #ffffff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 64px;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    /* color: rgba(95, 42, 82, 0.7); */
    color:#6c757d;
    font-weight: 500;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.pillar-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 25px -8px rgba(95, 42, 82, 0.15);
    border: 1px solid rgba(95, 42, 82, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(95, 42, 82, 0.25);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px;
}

.pillar-card:hover .card-overlay {
    opacity: 0.05;
}

.card-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.icon-container {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pillar-card:hover .icon-container {
    transform: scale(1.1);
}

.icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-title {
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pillar-description {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Content Section - Updated for better spacing and vertical image */
.content-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
    margin-top: 40px;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.description p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(95, 42, 82, 0.02);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(134, 42, 42, 0.05);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 9px;
}

.check-icon svg {
    width: 16px;
    height: 16px;
    color: white;
    stroke-width: 2.5;
}

.benefit-item p {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Image Column - Updated for vertical orientation */
.image-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(95, 42, 82, 0.25);
    width: 100%;
    max-width: 400px;
    height: 500px; /* Fixed height for vertical orientation */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    opacity: 0.1;
    mix-blend-mode: overlay;
}

/* Decorative Elements */
.decorative-element-1 {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #5f2a52 0%, #862a2a 100%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(24px);
    z-index: -1;
}

.decorative-element-2 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #6b2f5a 0%, #922e2e 100%);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(32px);
    z-index: -1;
}

/* Responsive Design - Updated for better mobile experience */
@media (max-width: 1200px) {
    .content-section {
        gap: 60px;
    }
    
    .image-container {
        height: 450px;
        max-width: 350px;
    }
}

@media (max-width: 1024px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .image-column {
        order: -1;
        justify-content: center;
    }
    
    .image-container {
        height: 400px;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tom-framework {
        padding: 60px 16px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .content-section {
        gap: 32px;
    }
    
    .pillar-card {
        padding: 24px;
    }
    
    .description p {
        font-size: 1rem;
    }
    
    /* Change to horizontal orientation on mobile */
    .image-container {
        height: 220px;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tom-framework {
        padding: 40px 12px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .pillar-title {
        font-size: 1.25rem;
    }
    
    .content-column {
        gap: 24px;
    }
    
    .content-section {
        gap: 24px;
    }
    
    /* Horizontal image for small mobile */
    .image-container {
        height: 200px;
        max-width: 100%;
        width: 100%;
    }
    
    .benefit-item {
        padding: 12px;
    }
}

@media (max-width: 360px) {
    /* Horizontal image for very small screens */
    .image-container {
        height: 180px;
        max-width: 100%;
        width: 100%;
    }
    
    .decorative-element-1,
    .decorative-element-2 {
        display: none; /* Hide decorative elements on very small screens */
    }
}

/* Add this for Font Awesome icons */
.fa-icon {
    font-size: 22px;
    color: white;
}