@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

        :root {
            --primary: #fec107; /* Vibrant Yellow */
            --primary-hover: #e0a800;
            --text-dark: #0f172a; /* Dark Navy/Black */
            --text-gray: #475569; /* Slate Gray */
            --bg-light: #fafaf9; /* Off-white background */
            --white: #ffffff;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .about-section {
            padding: 100px 5%;
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        /* LEFT CONTENT */
        .about-content {
            flex: 1;
        }

        .subtitle {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--primary);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.95rem;
            margin-bottom: 24px;
        }

        .subtitle .lines {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .subtitle .line {
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        
        .subtitle .line:first-child {
            width: 24px;
        }
        
        .subtitle .line:last-child {
            width: 16px;
        }

        .title {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            color: var(--text-dark);
        }

        .title span {
            color: var(--primary);
        }

        .description {
            color: var(--text-gray);
            font-size:15px;
            margin-bottom: 24px;
            max-width: 95%;
            font-weight: 500;
        }

        /* FEATURES GRID */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .feature-icon-wrapper {
            width: 64px;
            height: 64px;
            background: var(--white);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .feature-item:hover .feature-icon-wrapper {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(254, 193, 7, 0.2);
        }

        /* Custom SVGs with two-tone yellow */
        .feature-icon-wrapper svg {
            width: 32px;
            height: 32px;
            fill: none;
            stroke: var(--primary);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .feature-text h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-dark);
        }

        .feature-text p {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.5;
            font-weight: 500;
        }

        /* BUTTON */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: var(--primary);
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.05rem;
            padding: 16px 36px;
            border-radius: 10px;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(254, 193, 7, 0.25);
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(254, 193, 7, 0.35);
        }

        .btn-primary svg {
            width: 22px;
            height: 22px;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(5px);
        }

        /* RIGHT IMAGES */
        .about-images {
            flex: 1;
            position: relative;
            padding-left: 50px;
            padding-bottom: 50px;
        }

        .image-main-wrapper {
            position: relative;
            width: 100%;
            height: 550px;
            z-index: 1;
        }
        
        .bg-shape-yellow {
            position: absolute;
            top: 20px;
            left: -25px;
            bottom: -25px;
            right: 15px;
            background-color: var(--primary);
            border-radius: 80px 80px 0 80px;
            z-index: -1;
            transition: transform 0.5s ease;
        }

        .about-images:hover .bg-shape-yellow {
            transform: translate(-5px, 5px);
        }

        .image-main {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 80px 80px 80px 0;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .image-circle-wrapper {
            position: absolute;
            bottom: -40px;
            left: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 12px solid var(--white);
            overflow: hidden;
            z-index: 2;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .image-circle {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .image-circle-wrapper:hover .image-circle {
            transform: scale(1.1);
        }

        .badge-yellow {
            position: absolute;
            bottom: -15px;
            left: -30px;
            width: 150px;
            height: 150px;
            background-color: var(--primary);
            border-radius: 50%;
            border: 10px solid var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 3;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            animation: float 4s ease-in-out infinite;
        }

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

        .badge-yellow svg {
            width: 32px;
            height: 32px;
            fill: var(--text-dark);
            stroke: none;
            margin-bottom: 6px;
        }

        .badge-yellow span {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--text-dark);
            text-transform: uppercase;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
        
        /* Background Dots Pattern */
        .bg-dots {
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 250px;
            height: 250px;
            background-image: radial-gradient(#cbd5e1 3px, transparent 3px);
            background-size: 24px 24px;
            z-index: 0;
            opacity: 0.6;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            .about-section {
                gap: 40px;
                padding: 80px 4%;
            }
            .title {
                font-size: 40px;
            }
            .image-main-wrapper {
                height: 500px;
            }
            .image-circle-wrapper {
                width: 260px;
                height: 260px;
                left: -30px;
            }
            .badge-yellow {
                width: 130px;
                height: 130px;
                left: -20px;
            }
        }

        @media (max-width: 992px) {
            .about-section {
                flex-direction: column;
                gap: 80px;
            }
            .about-content, .about-images {
                width: 100%;
            }
            .about-images {
                padding-left: 20px;
                max-width: 700px;
                margin: 0 auto;
            }
            .title {
                font-size: 3.5rem;
            }
            .image-circle-wrapper {
                left: -20px;
            }
            .badge-yellow {
                left: -20px;
            }
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2.6rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .image-main-wrapper {
                height: 400px;
            }
            .image-circle-wrapper {
                width: 220px;
                height: 220px;
                bottom: -30px;
                left: -10px;
                border-width: 8px;
            }
            .badge-yellow {
                width: 110px;
                height: 110px;
                border-width: 6px;
                bottom: -15px;
                left: -10px;
            }
            .badge-yellow svg {
                width: 24px;
                height: 24px;
            }
            .badge-yellow span {
                font-size: 0.7rem;
            }
            .about-images {
                padding-left: 0;
            }
            .bg-shape-yellow {
                left: -15px;
                bottom: -15px;
            }
            .btn-primary {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .title {
                font-size: 2.2rem;
            }
            .image-main-wrapper {
                height: 300px;
            }
            .image-circle-wrapper {
                width: 160px;
                height: 160px;
                border-width: 6px;
            }
            .badge-yellow {
                width: 90px;
                height: 90px;
            }
            .badge-yellow span {
                font-size: 0.6rem;
            }
        }
