
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            --chart-size: 260px;
            --hole-size-percentage: 40%;
            --gap: 6px;
            --max-spread: 200px;
        }

        html {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
            width: 100%;
            max-width: 100%;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: white;
            position: relative;
            z-index: 10;
            width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }

        .nav-left {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-home {
            background: #000;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-size: 14px;
            cursor: pointer;
        }

        .discover-btn {
            background: #000;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 0px 0px 0px 12px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            position: absolute;
            z-index: 30;
            right: 40px;
            top: 24px;
        }

        /* Orange accent bar */
        .accent-bar {
            height: 8px;
            background: linear-gradient(90deg, #d97e3a 0%, #ff9a56 100%);
            width: 60%;
            margin: 0 auto;
            border-radius: 10px;
        }

        /* Main container */
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            padding: 40px 40px;
            background: white;
            min-height: 90vh;
            position: relative;
            margin-top: -50px;
            padding-top: 90px;
            align-items: start;
        }

        /* Left section */
        .left-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
            z-index: 15;
        }

        /* Carousel */
        .carousel {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
            position: relative;
            z-index: 20;
            margin-top: -22px;
            overflow-x: auto;
        }

        .carousel-item {
            flex: 0 0 calc(25% - 10px);
            height: 150px;
            background: linear-gradient(135deg, #d97e3a, #ff9a56);
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-item-label {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            z-index: 10;
        }

        .carousel-arrow.left {
            left: 10px;
        }

        .carousel-arrow.right {
            right: 10px;
        }

        /* Content text */
        .content-text {
            margin-top: 30px;
        }

        .cosmic-brand {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #000;
            max-width: 500px;
        }

        .description {
            font-size: 12px;
            color: #666;
            line-height: 1.6;
            max-width: 450px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Tags */
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tag {
            background: white;
            border: 1px solid #ddd;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tag:hover {
            background: #f5f5f5;
        }

        /* Social icons */
        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            border: 1px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: #000;
            color: white;
        }

        /* Right section */
        .right-section {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -100px;
            z-index: 10;
        }

        /* Featured image container */
        .featured-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #d97e3a, #ff9a56);
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 550px;
        }

        .featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Info boxes */
        .info-box {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 20px;
            font-size: 11px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            z-index: 20;
        }

        .info-box.top-right {
            top: 46px;
            right: 40px;
        }

        .info-box.bottom-right {
            bottom: 100px;
            right: 40px;
        }

        /* Numbers circle */
        .number-circle {
            position: absolute;
            left: 30px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #ff9a56;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
        }

        .number-circle.one {
            top: 230px;
        }

        .number-circle.two {
            top: 280px;
        }

        .number-circle.three {
            top: 330px;
            
        }

        /* Footer text inside image */
        .image-footer-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            font-size: 9px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.4;
        }

        /*cutout section*/
        .cutout {
            width: 85px;
            height: 165px;
            background: white;
            position: absolute;
            top: 70px;
            left: 0;
            border-radius: 0px 15px 15px 0px;
        }

        /*cutout section*/
        .cutin {
            width: 148px;
            height: 41px;
            background: white;
            position: absolute;
            top: 0;
            right: 0;
            border-radius: 0px 0px 0px 12px;
        }

        /* Navigation Mobile Responsive */
        @media (max-width: 1024px) {
            nav {
                padding: 16px 24px;
            }

            .nav-left {
                gap: 20px;
            }

            .nav-links {
                gap: 20px;
            }

            .discover-btn {
                padding: 8px 16px;
                font-size: 12px;
                right: 24px;
            }
        }

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

            .nav-left {
                gap: 15px;
            }

            .nav-links {
                gap: 15px;
                font-size: 12px;
            }

            .nav-home {
                padding: 8px 16px;
                font-size: 12px;
            }

            .discover-btn {
                padding: 6px 12px;
                font-size: 11px;
                right: 16px;
                top: 20px;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 10px 12px;
                flex-wrap: wrap;
            }

            .nav-left {
                gap: 10px;
            }

            .nav-links {
                gap: 10px;
                font-size: 11px;
            }

            .nav-home {
                padding: 6px 12px;
                font-size: 11px;
            }

            .discover-btn {
                padding: 5px 10px;
                font-size: 10px;
                right: 12px;
                top: 16px;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                margin-top: 0;
                padding-top: 40px;
            }

            h1 {
                font-size: 36px;
            }

            .carousel-item {
                height: 100px;
            }

            .right-section {
                margin-top: 0;
            }

            .carousel {
                margin-right: 0;
            }
        }
/*carousel extra*/
.carousel-item:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
       
       
   
       

        .container {
            max-width: 1200px;
            
            position: static;
        }

       

        
        .logo {
            font-weight: 600;
            color: #999;
            font-size: 14px;
            letter-spacing: 1px;
        }

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

        nav a {
            text-decoration: none;
            color: #999;
            font-size: 13px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #333;
        }

        /* Heading Section */
        .heading-section {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 5;
        }

        h1 {
            font-size: 48px;
            color: #bbb;
            font-weight: 300;
            line-height: 1.4;
            letter-spacing: 0.5px;
        }

        /* Main Content Area */
        .content-wrapper {
            display: flex;
            gap: 40px;
            align-items: flex-start;
            position: relative;
            z-index: 5;
            margin-top: 150px;  


        }

        /* Small Decorator Squares */
        .decorator-square {
            position: relative;
            border-radius: 12px;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .decorator-top-left {
            
            width: 100px;
            height: 100px;
            align-self: flex-end;
            left: 280px;
        }

        .decorator-bottom-right {
            
            width: 100px;
            height: 100px;
            align-self: flex-start;
            right: 320px;
                
     
        }

        /* Left Cards Wrapper */
        .cards-wrapper {
            /* wrap cards in a single card container */
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            flex-shrink: 0;
        }

        .cards-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .small-card {
            background: transparent;
            border-radius: 20px;
            padding: 1px;
            display: flex;
            gap: 3px;
            align-items: center;
            box-shadow: none;
            transition: transform 0.3s;
            width: 200px;
        }

        .small-card:hover {
            transform: translateY(-4px);
        }

        .card-image {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: linear-gradient(135deg, #FFB347 0%, #FF8C69 100%);
            flex-shrink: 0;
        }

        .card-content {
            flex: 1;
        }

        .card-title {
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }

        .card-date {
            font-size: 11px;
            color: #999;
        }

        /* Center Large Card */
        .featured-card {
            background: #1a1a1a;
            border-radius: 30px;
            flex: 1;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .featured-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 200, 100, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .image-placeholder {
            /* new class for image placeholder content */
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #666;
            position: relative;
            z-index: 2;
        }

        .featured-icons {
            position: absolute;
            top: 40px;
            right: 50px;
            display: flex;
            gap: 20px;
            z-index: 2;
        }

        .icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .featured-details {
            position: absolute;
            bottom: 40px;
            left: 50px;
            font-size: 12px;
            color: #aaa;
            z-index: 2;
        }

        /* Right Text Block */
        .testimonial-block {
            width: 280px;
            
            flex-shrink: 0;
            align-self: flex-end; 
        }

        .testimonial-text {
            background: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        }

        .testimonial-author {
            font-size: 12px;
            color: #999;
            margin-top: 16px;
        }

        /* Dots Indicator */
        .dots-container {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 24px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #4A90E2;
            transform: scale(1.2);
        }

        .dot:nth-child(2) {
            background: #FF6B6B;
        }

        .dot:nth-child(3) {
            background: #FFB347;
        }
         /* responsive one */
    
        /* Responsive */
        @media (max-width: 1024px) {
            .content-wrapper {
                flex-direction: column;
                gap: 30px;
            }

            .featured-card {
                width: 100%;
            }

            h1 {
                font-size: 36px;
            }

            .yellow-circle {
                width: 200px;
                height: 200px;
                top: -40px;
                left: -50px;
            }
        }

        /* Mobile Tablets (768px and below) */
        @media (max-width: 768px) {
            .cards-wrapper {
                margin-left: 16px;
            }

            .featured-card {
                margin-left: 16px;
                margin-right: 16px;
                min-height: 320px;
            }

            .testimonial-text {
                margin-left: 16px;
                margin-right: 16px;
            }
        }

        /* Small Mobile Devices (480px and below) */
        @media (max-width: 480px) {
            .cards-wrapper {
                margin-left: 12px;
            }

            .featured-card {
                margin-left: 7px;
                margin-right: -7px;
                min-height: 260px;
                width: 360px;
            }

           

            .testimonial-text {
                margin-left: 12px;
                margin-right: 12px;
            }
        }

        /* Extra Small Devices (374px and below) */
        @media (max-width: 374px) {
            .cards-wrapper {
                margin-left: 8px;
            }

            .featured-card {
                margin-left: 8PX;
                margin-right: 8px;
                min-height: 220px;
                width: 390px;
            }

            .featured-image-container {

                margin-left: 0PX;
                margin-right: 8px;
                min-height: 220px;
                width: 340px;
            }

            .testimonial-text {
                margin-left: 8px;
                margin-right: 8px;
            }
        }

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

       

      
        /* 3. MAIN SECTIONS LAYOUT */

        .section {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .section-one {
            min-height: 500px;
            align-items: flex-start;
            
        }

        .section h2 {
            position: relative;
            font-size: 3.5rem;
            line-height: 1.1;
            max-width: 500px;
            margin-bottom: 20px;
            
        }

        .section-one .content-left p {
            position: relative;
            font-size: 1.1rem;
            max-width: 450px;
            color: #555;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
            line-height: 1.6;
        }

        /* 4. BUILD STACK EFFECT (Section 1 Right) */

        .build-stack {
            position: relative;
            width: 550px;
            height: 450px;
            right: 100px;
        }

        .build {
            position: absolute;
            width: 350px;
            height: 250px;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            transition: 0.35s ease;
            cursor: pointer;
        }

        /* Hover effect */
        .build:hover {
            transform: scale(1.1) translateY(-10px) !important;
            z-index: 99 !important;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }

        /* Back Right Build */
        .build-back-right {
            background-color: #5500ff;
            color: #fff;
            top: 70px;
            right: 300px;
            z-index: 3;
            transform: rotate(0deg) scale(0.95);
        }

        /* Back Left Build */
        .build-back-left {
            background-color: #ff0055;
            color: #fff;
            top: -15px;
            right: 200px;
            z-index: 2;
            transform: rotate(0deg) scale(0.9);
        }

        /* Frosted Build */
        .build-frosted {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #333;
            width: 400px;
            height: 300px;
            bottom: 0;
            right: 395px;
            z-index: 4;
            transform: none;
            top: 150px;
        }

        .build-frosted h2 {
            font-size: 2rem;
            font-weight: normal;
        }

        .build-image-placeholder {
            width: 100%;
            height: 70%;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
        }

        /* ===== MEDIA QUERIES FOR SECTION 3 - SMALL SCREENS ===== */

        /* Tablets & Small Devices (1024px and below) */
        @media (max-width: 1024px) {
            .section {
                flex-direction: column;
                gap: 30px;
                padding-top: 40px;
                padding-bottom: 40px;
            }

            .section-one {
                min-height: auto;
                align-items: center;
            }

            .content-left {
                width: 100%;
                text-align: center;
                order: 1;
            }

            .section h2 {
                font-size: 2.8rem;
                left: 0;
                max-width: 100%;
                margin-bottom: 15px;
            }

            .section-one .content-left p {
                font-size: 1rem;
                left: 0;
                max-width: 100%;
                color: #555;
            }

            .content-right {
                width: 100% !important;
                order: 2;
            }

            .build-stack {
                width: 100%;
                height: auto;
                right: 0;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
                position: relative;
            }

            .build {
                position: relative !important;
                width: 350px;
                height: 280px;
                padding: 30px;
                border-radius: 12px;
                top: auto !important;
                right: auto !important;
                transform: none !important;
                z-index: 1 !important;
                margin: 0;
            }

            .build:hover {
                transform: scale(1.05) translateY(-5px) !important;
                z-index: 10 !important;
            }

            .build-back-right {
                background-color: #5500ff;
                color: #fff;
            }

            .build-back-left {
                background-color: #ff0055;
                color: #fff;
            }

            .build-frosted {
                background: rgba(255, 255, 255, 0.2);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                border: 1px solid rgba(255, 255, 255, 0.3);
                color: #333;
                width: 350px;
                height: 280px;
                left: auto !important;
                top: auto !important;
                bottom: auto;
                position: relative !important;
            }

            .build-frosted h2 {
                font-size: 1.5rem;
            }
        }

        /* Mobile Landscape & Tablets (768px and below) */
        @media (max-width: 768px) {
            .section {
                flex-direction: column;
                gap: 25px;
                padding-top: 30px;
                padding-bottom: 30px;
            }

            .section h2 {
                font-size: 2.2rem;
                margin-bottom: 12px;
            }

            .section-one .content-left p {
                font-size: 0.95rem;
                line-height: 1.5;
            }

            .build-stack {
                gap: 15px;
            }

            .build {
                width: 310px;
                height: 240px;
                padding: 25px;
                border-radius: 10px;
            }

            .build-frosted {
                width: 310px;
                height: 240px;
            }

            .build-frosted h2 {
                font-size: 1.3rem;
            }
        }

        /* Mobile Portrait (599px and below) */
        @media (max-width: 599px) {
            .section {
                flex-direction: column;
                gap: 20px;
                padding-top: 25px;
                padding-bottom: 25px;
            }

            .section h2 {
                font-size: 1.8rem;
                margin-bottom: 10px;
                line-height: 1.2;
            }

            .section-one .content-left p {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .build-stack {
                gap: 12px;
            }

            .build {
                width: 280px;
                height: 210px;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            }

            .build:hover {
                transform: scale(1.03) translateY(-3px) !important;
            }

            .build-frosted {
                width: 280px;
                height: 210px;
            }

            .build-frosted h2 {
                font-size: 1.1rem;
                margin-bottom: 6px;
            }
        }

        /* Extra Small Devices (below 480px) */
        @media (max-width: 768px) {
            .section {
                position: relative;
                top: 50px !important;
            }

            .section2-text {
                top: 0 !important;
                margin-bottom: 0 !important;
            }

            .content-wrapper {
                margin-top: -20px !important;
            }

            #innovations {
                top: 50px !important;
            }

            .py-24.bg-zinc-50 {
                top: 15px !important;
            }
        }

        @media (max-width: 479px) {
            .section {
                flex-direction: column;
                gap: 15px;
                padding-top: 20px;
                padding-bottom: 20px;
                position: relative;
                top: 20px !important;
            }

            .section2-text {
                top: 0 !important;
                margin-bottom: 0 !important;
            }

             .section2-text {
                top: 0 !important;
                margin-bottom: 0 !important;
            }
            .content-wrapper {
                margin-top: -30px !important;
            }

            #innovations {
                top: 20px !important;
            }

            .py-24.bg-zinc-50 {
                top: 5px !important;
            }

            .section h2 {
                font-size: 1.5rem;
                margin-bottom: 8px;
                line-height: 1.15;
            }

            .section-one .content-left p {
                font-size: 0.85rem;
                line-height: 1.3;
            }

            .build-stack {
                gap: 10px;
            }

            .build {
                width: 240px;
                height: 180px;
                padding: 16px;
                border-radius: 8px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
                font-size: 0.9rem;
            }

            .build:hover {
                transform: scale(1.02) translateY(-2px) !important;
            }

            .build-frosted {
                width: 240px;
                height: 180px;
            }

            .build-frosted h2 {
                font-size: 1rem;
                margin-bottom: 5px;
                font-weight: 600;
            }
        }

        /* ===== BUILD CARD SELECTION STATES FOR MOBILE ===== */

        .build.selected {
            transform: scale(1.15) !important;
            z-index: 20 !important;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
        }

        .build.unselected {
            transform: scale(0.85) !important;
            opacity: 0.6;
            z-index: 1 !important;
        }

        .build-frosted.selected {
            transform: scale(1.15) !important;
            z-index: 20 !important;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2) !important;
        }

        .build-frosted.unselected {
            transform: scale(0.85) !important;
            opacity: 0.6;
            z-index: 1 !important;
        }

        /* 5. ICON CLUSTER (Section 2 Left) */

        .section-two {
            align-items: center;
            position: relative;
            left: 50px;
        }

        
/* Mobile Styles (Default) */
.content-left {
    margin-left: 0;
    text-align: center; 
    padding: 0 20px;    
}

/* Desktop Styles (Screens wider than 768px) */
@media (min-width: 768px) {
    .content-left {
        margin-left: 150px;
        
        padding: 0;
    }
}
   


        
        /* Section 2 Right Content */
        .section-two .content-right {
            max-width: 500px;
            right: 200px;
            position: relative;
        }

        .section-two h2 {
            position: relative;
            font-size: 3.5rem;
            line-height: 1.1;
            max-width: 500px;
            margin-bottom: 20px;
            left: 20px;
        }

        .section-two p {
            position: relative;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 15px;
             left: 20px;
            
        }

        .section-two .small-text {
            font-size: 0.9rem;
            color: #888;
        }

       .section2-heading {
    margin: 0 0 24px 0;   
    font-size: 2rem;
    font-weight: 600;
}
.section2-text {
    position: relative;
    text-align: center;
    max-width: 500px;  
    margin: 0 auto 40px;
    top: 50px;
    padding: 0 20px;
}

.section2-text p {
    margin-top: 12px;
    line-height: 1.6;
    opacity: 0.85;
    font-size: 0.95rem;
}

/*globals*/
@import "tailwindcss";

@theme inline {
  --color-background: #ffffff;
  --color-foreground: #18181b;
  --color-primary: #ff5f1f;
  --color-accent: #32cd32;
  --color-muted-foreground: #71717a;
  --color-border: #e4e4e7;
  
  --font-sans: "Geist", "Inter", system-ui, sans-serif;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
}

@layer base {
  body {
    @apply bg-background text-foreground antialiased;
  }
}

@layer components {
  /* Refined Glass Card for Light Mode */
  .glass-card {
    @apply bg-black/5 border border-black/10 backdrop-blur-sm transition-all duration-300;
  }

  .btn-primary {
    @apply px-6 py-3 bg-primary text-white font-bold rounded-xl transition-all hover:opacity-90 active:scale-95;
  }
}

/* Simplified Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f4f4f5; }
::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #ff5f1f; }



/*new css*/
@import "tailwindcss";
@import "tw-animate-css";

@custom-variant dark (&:is(.dark *));

:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: oklch(0.205 0 0);
  --primary-foreground: oklch(0.985 0 0);
  --secondary: oklch(0.97 0 0);
  --secondary-foreground: oklch(0.205 0 0);
  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --accent: oklch(0.97 0 0);
  --accent-foreground: oklch(0.205 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.577 0.245 27.325);
  --border: oklch(0.922 0 0);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

@theme inline {
  /* optional: --font-sans, --font-serif, --font-mono if they are applied in the layout.tsx */
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", serif;

  --radius: 1rem;
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}

/* Custom Serif Font Import for that high-end look */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600&display=swap");

/* Mobile Sidebar Styles */
.mobile-menu-toggle {
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle:hover {
    opacity: 0.7;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sidebar.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.sidebar-content {
    position: relative;
    width: 280px;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 41;
    padding-top: 80px;
}

.mobile-sidebar.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 16px 32px 16px;
    gap: 8px;
}

.sidebar-link {
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    border: 1px solid transparent;
}

.sidebar-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    opacity: 0.8;
}

.sidebar-link:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .sidebar-content {
        width: 260px;
    }
}
