@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Poppins:wght@400;600&display=swap');

        .sec1{
          
            color: #fff;
            font-family: 'Poppins', sans-serif;
            overflow: hidden;
        }

        .viewport {
            width: 100vw;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px 40px;
        }

        /* 1. LEFT HEADING */
        .side-heading {
            position: absolute;
            left: 40px;
            top: 30%;
            z-index: 10;
        }

        .side-heading h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 55px;
            line-height: 0.85;
            text-transform: uppercase;
             color:#002d49;
        }

        .side-heading span {
            color: #00d2ff;
        }

        /* 2. HERO SECTION (CENTER) */
        .hero-section {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
          
        }

        .main-circle-wrapper {
            position: relative;
            z-index: 20;
            text-align: center;
        }

        .main-circle {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            border: 8px solid #00d2ff;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 0 40px rgba(0, 210, 255, 0.3);
            background: #111;
            transition: transform 0.3s;
        }

        .main-circle:hover {
            transform: scale(1.02);
        }

        .main-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* WINGS (CIRCLE KE PEECHE) */
        .wing {
            position: absolute;
            background: rgba(20, 20, 20, 0.08);
            backdrop-filter: blur(20px);
            height: 90px;
            z-index: -1;
            opacity: 0;
            width: 0;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            align-items: center;
        }

        .wing-left {
            right: 50%;
            border-radius: 50px 0 0 50px;
            justify-content: center;
        }

        .wing-right {
            left: 50%;
            border-radius: 0 50px 50px 0;
            padding-left: 50px;
            justify-content: center;
            color: #000;
        }

        .wing.active.wing-left {
            width: 400px;
            right: 200px;
            opacity: 1;
        }

        .wing.active.wing-right {
            width: 400px;
            left: 263px;
            opacity: 1;
            bottom: 200px;
        }



        .btn-know {
            background: #00d2ff;
            color: #000;
            padding: 10px 22px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 700;
            font-size: 12px;
            display: inline-block;
        }

        /* 3. CARDS CONTAINER (BOTTOM) */
        .cards-shelf {
            width: 100%;
            height: 180px;
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding: 10px 0;
            scrollbar-width: none;
        }

        .cards-shelf::-webkit-scrollbar {
            display: none;
        }

        .card-item {
            min-width: 140px;
            height: 150px;
            background:black;
            border: 2px solid #222;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: 0.4s;
            position: relative;
        }

        .card-item:hover {
            border-color: #444;
            transform: translateY(-8px);
        }

        .card-item.active {
            border-color: #00d2ff;
            background: black;
            box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
        }

        .card-thumb {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 12px;
            border: 2px solid #333;
        }

        .card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-item span {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            color:white;
            text-align: center;
        }

        .card-item.active span {
            color: #00d2ff;
        }

        .nav-controls {
            margin-bottom: 10px;
            text-align: center;
        }

        .nav-controls h2 {
            margin-bottom: 8px;
            letter-spacing: 1px;
            color:#002d49;
        }

        .nav-controls button {
            background: none;
            border: 1px solid #444;
            color:#002d49;
            padding: 4px 12px;
            cursor: pointer;
            border-radius: 4px;
            margin-top:30px
        }
        .viewport{
         background-image: url('./new-pages-img/new-img/background-img8.jpg'); /* Image ka sahi path */
    background-size: cover;                /* Image ko poori screen par fit karega */
    background-position: center;           /* Image ka center hissa dikhayega */
    background-repeat: no-repeat;          /* Image ko baar-baar repeat nahi hone dega */
    background-attachment: fixed;
        }


/* --- FIXED RESPONSIVE CODE --- */

@media (max-width: 992px) {
    .viewport {
        height: auto;
        padding: 20px 10px;
        display: block; /* Flex hata diya taaki flow natural rahe */
        overflow-y: auto;
    }

    /* 1. Heading Center */
    .side-heading {
        position: relative;
        left: 0;
        top: 40px;
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }

    .side-heading h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    /* 2. Hero Section & Circle Fix */
    .hero-section {
        display: block; /* Flex remove kiya position fix karne ke liye */
        text-align: center;
        margin: 0 auto;
    }

    .main-circle-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .main-circle {
        width: 220px;
        height: 220px;
        margin: 0 auto;
        position: relative; /* Fixed position */
        border-width: 6px;
    }

    /* 3. Wings ko simple stack banaya (No absolute movement) */
 .wing {
        position: relative !important;
        width: auto !important;
        height: auto !important;
        opacity: 1 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: 299px !important;
        background: none !important;
        backdrop-filter: none !important;
        margin-top: 15px;
        z-index: 30;
        display: flex;
        justify-content: center;
    }

    #main-desc {
        display: none; /* Description mobile par hata di clean look ke liye */
    }

    /* 4. Controls & Title */
    .nav-controls {
        width: 100%;
    }

    .nav-controls h2 {
        font-size: 20px;
        color: #00d2ff;
        margin-bottom: 50px;
        padding: 0 10px;
    }

    /* 5. Bottom Cards */
    .cards-shelf {
        margin-top: 30px;
        height: 140px;
        padding-bottom: 10px;
    }

    .card-item {
        min-width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .main-circle {
        width: 180px;
        height: 180px;
    }
    .side-heading h1 {
        font-size: 26px;
    }
}