    .video-bg-section {
        position: relative;
        overflow: hidden;
        height: 100vh;
        /* Screen full cover */
        display: flex;
        align-items: center;
    }

    .video-bg-section .bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        z-index: -1;
        /* content ke peeche rahega */
    }

    /* Text ko visible rakhne ke liye overlay optional */
    .video-bg-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        /* dark overlay, zaroorat ho to badha sakte ho */
        z-index: -1;
    }
.video-bg-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;     /* 🔥 vertical center */
  justify-content: center; /* 🔥 horizontal center */
  text-align: center;
  overflow: hidden;
}

/* background video full cover */
.video-bg-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* hero content center */
.video-bg-section .xb-hero_content {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

/* optional spacing fine-tune */
.video-bg-section .hero-title {
  margin-bottom: 15px;
}

.video-bg-section strong {
  display: block;
  margin-bottom: 15px;
  font-size: 30px;
}

.video-bg-section .content {
  margin-bottom: 25px;
}

    /* ===========end hero section ============= */

    /* strt after hero section css */
    .exhibit-section {
        padding: 60px 5%;
        text-align: center;
        background: #ffffff;
        position: relative;
    }

    .exhibit-section::before {
        content: "";
        position: absolute;
        top: 20%;
        right: -35%;
        transform: translate(-50%, -50%);
        width: 360px;
        height: 334px;
        background: linear-gradient(180deg, rgba(24, 255, 158, 0) 0%, #0041f5 100%);
        filter: blur(100px);
        z-index: 1;
        pointer-events: none;
    }

    .top-text {
        font-size: 14px;
        letter-spacing: 1px;
        color: #3e3e3e;
    }

    .titles {
        font-size: 45px;
        font-weight: 500;
        color: #0d0d0d;
        line-height: 1.2;
    }

    .titles1 {
        font-size: 50px;
        font-weight: 500;
        color: #0d0d0d;
        line-height: 1.2;
    }

    .titles span {
        color: #0056d2;
        /* background-image: linear-gradient(45deg, #050d43, #33a1ff 50%, #007bff 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    }

    .desc {
        max-width: max-content;
        margin: 20px auto;
        font-size: 16px;
        color: #5a5a5a;
        line-height: 1.6;
    }

    .cta-btn {
        background: linear-gradient(45deg, #050D43, #0056d2);
        color: #fff;
        padding: 10px 22px;
        font-size: 16px;
        border-radius: 30px;
        display: inline-block;
        margin-top: 20px;
        font-weight: 600;
        transition: 0.3s;
    }

    .cta-btn:hover {
        background: #0056d2;
        transform: scale(1.05);
    }

    .slide {
        display: none;
    }

    .slide.active {
        display: block;
    }

    /* Slider Controls */
    /* Slider Controls */
    .slide-controls {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

    .arrow {
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        color: #050D43;
        padding: 8px 14px;
        transition: 0.3s;
        user-select: none;
    }

    .arrow:hover {
        background: #050D43;
        color: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .exhibit-section::before {
            content: "";
            position: absolute;
            top: 20%;
            right: -88%;
            transform: translate(-50%, -50%);
            width: 260px;
            height: 234px;
            background: linear-gradient(180deg, rgba(24, 255, 158, 0) 0%, #0041f5 100%);
            filter: blur(100px);
            z-index: 1;
            pointer-events: none;
        }

        .titles {
            font-size: 22px;
        }

        .titles1 {
            font-size: 50px;
            font-weight: 500;
            color: #0d0d0d;
            line-height: 1.2;
        }

        .desc {
            font-size: 14px !important;
            width: 90%;
        }

        .cta-btn {
            color: #fff;
            padding: 8px 28px;
            font-size: 14px;
        }
    }

    /* =========================================== */
    /* =====gallery section css========== */

    .gallery-section {
        max-width: 1150px;
        margin: auto;
        padding: 60px 5%;
        position: relative;
    }

    .gallery-section::before {
        content: "";
        position: absolute;
        top: 5%;
        left: -18%;
        transform: translate(-50%, -50%);
        width: 360px;
        height: 334px;
        background: linear-gradient(180deg, rgba(24, 255, 158, 0) 0%, #0041f5 100%);
        filter: blur(100px);
        z-index: 1;
        pointer-events: none;
    }

    /* ======== TOP ROW ======== */
    .gallery-row.top {
        display: flex;
        justify-content: center;
        gap: 14px;
    }

    /* ======== CENTER GRID ======== */
    .gallery-center-wrap {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 14px;
        margin-top: 14px;
        margin-bottom: 5px;
    }

    /* Side Columns */
    .side-column {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .side-column img {
        height: 215px;
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    /* ======== CENTER VIDEO ======== */
    .gallery-video {
        height: 300px;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
    }

    .gallery-video iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        border: none;
        opacity: 0;
        pointer-events: none;
    }

    .gallery-video.active iframe {
        opacity: 1;
        pointer-events: auto;
    }

    .gallery-video.active .video-thumb,
    .gallery-video.active .play-btn,
    .gallery-video.active .video-text {
        display: none;
    }

    .video-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Text Overlay */
    .video-text {
        position: absolute;
        left: 20px;
        bottom: 14px;
        color: #fff;
        text-shadow: 0px 0px 10px black;
    }

    /* Play Button */
    .play-btn {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: #000;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        line-height: 25px;
        cursor: pointer;
    }



    /* ======== BOTTOM ROW ======== */
    .gallery-row.bottom {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: -135px;
    }

    .gallery-row img {
        width: 240px;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* ---------------------------------------------------
   RESPONSIVE SCALING (SAME LAYOUT, SMALLER SIZES)
--------------------------------------------------- */

    /* Tablet */
    @media(max-width:992px) {

        .gallery-section {
            padding: 50px 10px;
        }

        .gallery-row img {
            width: 180px;
            height: 120px;
        }

        .side-column img {
            height: 180px;
        }

        .gallery-video {
            height: 240px;
        }
    }

    /* Mobile */
    @media(max-width:600px) {

        .gallery-section::before {
            content: "";
            position: absolute;
            top: 0%;
            left: -18%;
            transform: translate(-50%, -50%);
            width: 260px;
            height: 234px;
            background: linear-gradient(180deg, rgba(24, 255, 158, 0) 0%, #0041f5 100%);
            filter: blur(100px);
            z-index: 1;
            pointer-events: none;
        }

        /* SCALE DOWN EVERYTHING */
        .gallery-row img {
            width: 120px;
            height: 90px;
        }

        .side-column img {
            /* height:120px; */
            height: auto;
        }

        .gallery-video {
            height: 180px;
        }

        .play-btn {
            height: 40px;
            width: 40px;
            font-size: 18px;
            bottom: 10px;
            right: 10px;
        }

        .video-text {
            left: 12px;
            bottom: 40px;
            font-size: 12px;
        }

        .video-text h4,
        h2 {
            font-size: 14px;
        }

        .gallery-center-wrap {
            gap: 10px;
        }

        .gallery-row {
            gap: 10px;
        }

        .gallery-row.bottom {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-top: 0px;
        }
    }

    /* ==================================== */
    /* ====after gallery section css====== */

    .festival-section {
        position: relative;
        text-align: center;
        padding: 60px 5%;
        /* background: #051125; */
        overflow: hidden;
        background: linear-gradient(rgb(0 0 0 / 34%), rgb(5 8 26 / 90%)), url(../img/bizz/position-bg.jpg) no-repeat center center;
        background-size: cover;
    }

    .festival-content {
        position: relative;
        z-index: 2;
    }

    /* Heading Styling */
    .festival-section h2 {
        font-size: 48px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
    }

    .festival-section h2 span {
        color: #0056d2;
        /* background-image: linear-gradient(45deg, #050d43, #33a1ff 50%, #007bff 100%);
        background-clip: text;
        -webkit-text-fill-color: transparent; */
    }

    /* Paragraph */
    .festival-section p {
        max-width: 750px;
        margin: 25px auto;
        font-size: 16px;
        color: #fff;
        line-height: 1.7;
    }

    /* Button */
    .ticket-btn {
        background: linear-gradient(45deg, #050D43, #0056d2);
        color: #fff;
        padding: 12px 30px;
        font-size: 16px;
        border-radius: 30px;
        display: inline-block;
        margin-top: 12px;
        font-weight: 600;
        transition: 0.3s;
    }

    .ticket-btn:hover {
        background: #0056d2;
        transform: scale(1.07);
    }

    /* Background Dot Pattern */
    .bg-pattern {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40%;
        opacity: 0.8;
        pointer-events: none;
        filter: saturate(0.5);
    }

    .bg-pattern1 {
        position: absolute;
        bottom: 100px;
        left: -130px;
        width: 35%;
        opacity: 0.8;
        pointer-events: none;
        filter: contrast(0.5);
        transform: rotate(90deg);
    }

    /* 📱 Responsive Adjustments */
    @media(max-width:900px) {
        .festival-section h2 {
            font-size: 38px;
        }
    }

    .gsap-desc {
        font-size: 16px;
    }

    @media(max-width:600px) {
        .festival-section h2 {
            font-size: 22px;
        }

        .festival-section p {
            font-size: 14px;
        }

        .ticket-btn {
            padding: 8px 28px;
            font-size: 14px;
        }

        .gsap-desc {
            font-size: 16px;
        }
    }

    .bg-earth {
        position: absolute;
        bottom: -400px;
        /* half hide for next section */
        left: 50%;
        transform: translateX(-50%) translateY(0);
        width: 700px;
        /* adjust as needed */
        opacity: 0.55;
        z-index: 0;
        pointer-events: none;
        filter: drop-shadow(2px 4px 30px #007bff);
    }

    @media(max-width:600px) {
        .bg-earth {
            bottom: -200px;
        }
    }

    /* ===================================== */
    /*============= speaker section css============= */
    /* Background */
    .speakers-section {
        /* background: #040b17; */
        color: #fff;
        padding: 120px 5%;
        text-align: center;
        background: linear-gradient(rgb(0 0 0 / 56%), rgb(5 8 26)), url(../img/bizz/speaker-bg.jpg) no-repeat center center;
        background-size: cover;
    }

    /* Top Heading */
    .speakers-header .small-title {
        font-size: 14px;
        letter-spacing: 2px;
        color: #6bc8ff;
        margin-bottom: 8px;
    }

    .speakers-header h2 {
        font-size: 44px;
        font-weight: 800;
        line-height: 1.3;
    }

    .speakers-header span {
        color: #0056d2;
    }

    /* Aqua color */

    .speaker-btn {
        background: linear-gradient(45deg, #050D43, #0056d2);
        color: #fff;
        padding: 10px 30px;
        border-radius: 30px;
    }

    .speaker-btn:hover {
        color: #fff;

    }

    /* SLIDER CARDS */
    .speaker-slider {
        margin: 60px auto 30px;
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 15px;
        scrollbar-width: none;
    }

    .speaker-slider::-webkit-scrollbar {
        display: none;
    }

    .speaker-card {
        min-width: 280px;
        /* background:#0e1626;
    border-radius:14px;
    padding:20px; */
        text-align: left;
        position: relative;
        overflow: hidden;
    }

    .speaker-card img.speaker-photo {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 14px;
    }

    .speaker-card h3 {
        font-size: 20px;
        font-weight: 800;
    }

    .speaker-card .org {
        color: #a4b8c9;
        margin: 3px 0;
    }

    .speaker-card .role {
        color: #0056d2;
        font-weight: 600;
    }

    /* ROUND BOTTOM SLIDER */
    .speaker-thumbs {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 25px;
    }

    .speaker-thumbs img {
        height: 55px;
        width: 55px;
        border-radius: 50%;
        object-fit: cover;
        opacity: 0.6;
        cursor: pointer;
        transition: 0.3s;
    }

    .speaker-thumbs img:hover,
    .speaker-thumbs img.active {
        opacity: 1;
        transform: scale(1.15);
    }

    /* Bottom Note */
    .many-more {
        margin-top: 12px;
        color: #8ea6b6;
        letter-spacing: 2px;
        font-size: 14px;
    }

    /* 📱 Mobile Responsive */
    @media(max-width:700px) {
        .speakers-header h2 {
            font-size: 22px;
        }

        .speaker-card {
            min-width: 240px;
        }

        .speaker-btn {
            /* background: #fff; */
            color: #fff;
            padding: 8px 28px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
        }
    }

    /* ============================== */

    /* =========after speaker slider css ======*/

    .network-section {
        /* background: #040b17; */
        padding: 80px 5%;
        position: relative;
        overflow: hidden;
        background: linear-gradient(rgb(0 0 0 / 56%), rgb(5 8 26 / 93%)), url(../img/bizz/makers-bg.jpg) no-repeat center center;
        background-size: cover;
    }

    .network-container {
        max-width: 1300px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        padding: 0 40px;
    }

    /* LEFT CONTENT */
    .tag {
        color: #6bc8ff;
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .title {
        font-size: 48px;
        font-weight: 800;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .title span {
        color: #0056d2;
    }

    .desc {
        /* width: 90%; */
        font-size: 16px;
        color: #4b4b4b;
        line-height: 1.7;
        margin-bottom: 35px;
    }

    .desc1 {
        max-width: 1400px;
        font-size: 16px;
        color: #d3d3d3;
        line-height: 1.7;
        margin-bottom: 35px;
    }

    .stats {
        display: flex;
        flex-direction: column;
        gap: 28px;
        margin-bottom: 35px;
    }

    .stats .label {
        font-size: 16px;
        color: #cfcfcf;
        /* text-transform: uppercase; */
    }

    .stats h3 {
        font-size: 26px;
        color: white;
        font-weight: 800;
    }

    /* BUTTON */
    .partner-btn {
        background: linear-gradient(45deg, #050D43, #0056d2);
        padding: 10px 30px;
        border-radius: 30px;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        display: inline-block;
    }

    /* RIGHT MASONRY IMAGES */
    .network-images {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
        z-index: 2;
    }

    .network-images img {
        border-radius: 10px;
    }

    .network-images .img {
        border-radius: 14px;
        object-fit: contain;
        width: 100%;

    }

    .img-1 {
        grid-column: 1 / span 2;
        /* height:300px; */
    }

    /* .img-2{
    height:260px;
}
.img-3{
    height:260px;
} */

    /* BACKGROUND DOT SHAPE (OPTIONAL LIKE ORIGINAL) */
    /* .network-section::after {
        content: "";
        position: absolute;
        right: 0px;
        bottom: 0;
        width: 350px;
        height: 350px;
        background: url(../img/bizz/dot.png) no-repeat;
        background-size: cover;
        opacity: 1;
        z-index: 1;
        filter: contrast(0.5);
    } */

    /* 📱 RESPONSIVE */
    @media(max-width:1000px) {
        .network-container {
            flex-direction: column;
            text-align: center;
        }

        .desc {
            width: 100%
        }

        .network-images {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media(max-width:600px) {

        /* .img-1{height:230px;}
    .img-2,.img-3{height:200px;} */
        .title {
            font-size: 22px;
        }

        .desc1 {
            font-size: 14px;
            color: #d3d3d3;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .stats h3 {
            font-size: 18px;
            color: white;
            font-weight: 700;
        }

        .partner-btn {
            padding: 8px 28px;
            font-size: 14px;
        }

        .premier-title {
            font-size: 22px !important;
            font-weight: 800;
            color: #0C1222;
            margin: 10px 0 25px;
            line-height: 1.25;
        }

        .premier-p {
            font-size: 14px;
        }
        .speaker-thumbs img {
    height: 35px;
    width: 35px;
        }
    }

    /* =========================== */
    /*===================partner section css============== */

    .multi-marquee {
        background: #030B17;
        padding: 60px 0;
        overflow: hidden;
    }

    /* every row */
    .marquee-row {
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 35px;
    }

    /* moving row */
    .marquee-track {
        display: flex;
        gap: 70px;
        animation: scroll-left 18s linear infinite;
    }

    /* logos styling */
    .marquee-track img {
        height: 30px;
        opacity: .9;
        filter: invert(1);
        transition: .3s;
    }

    .marquee-track img:hover {
        filter: none;
        opacity: 1;
        transform: scale(1.12);
    }

    /* RIGHT ➝ LEFT movement */
    @keyframes scroll-left {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* responsive */
    @media(max-width:768px) {
        .marquee-track img {
            height: 55px;
        }

        .marquee-track {
            gap: 45px;
        }
    }

    @media(max-width:480px) {
        .marquee-track img {
            height: 42px;
        }

        .marquee-track {
            gap: 30px;
        }
    }

    /* ======================================== */
    /* =========after partner section=============== */

    .premier-section {
        width: 100%;
        padding: 80px 0;
        background: #fff;
        position: relative;
    }

    .premier-section::before {
        content: "";
        position: absolute;
        top: 90%;
        left: 0;
        transform: translate(-50%, -50%);
        width: 260px;
        height: 234px;
        background: linear-gradient(180deg, rgba(24, 255, 158, 0) 0%, #0041f5 100%);
        filter: blur(100px);
        z-index: 1;
        pointer-events: none;
    }

    /* container for center alignment */
    .container {
        width: 100%;
        max-width: 1320px;
        margin: auto;
    }

    /* top texts */
    .premier-date {
        color: #050D43;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
        letter-spacing: 1px;
        /* text-align:left; */
    }

    /* top spacing adjust */
    .premier-title {
        font-size: 34px;
        font-weight: 800;
        color: #0C1222;
        margin: 10px 0 10px;
        line-height: 1.25;
    }

    .premier-p {
        max-width: 900px;
    }

    .premier-card-wrapper {
        display: flex;
        justify-content: flex-start;
        gap: 60px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .premier-title span {
        /* color: #0056d2; */
        background-image: linear-gradient(45deg, #050d43, #33a1ff 50%, #007bff 100%);
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* card box */
    .premier-card {
        width: 350px;
        height: 240px;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        transition: .3s ease;
        cursor: pointer;
    }

    /* hover lift */
    .premier-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
    }

    /* img fit */
    .premier-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* CTA Button (now <a>) */
    .premier-card a {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        padding: 8px 7px;
        font-weight: 600;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
        transition: .25s;
        text-decoration: none;
        color: #000;
        display: inline-block;
        width: 170px;
        text-align: center;
    }

    .premier-card a:hover {
        background: #0056d2;
        color: #fff;
    }

    /* Responsive */
    @media(max-width:1024px) {
        .premier-card {
            width: 300px;
            height: 220px;
        }
    }

    @media(max-width:550px) {
        .premier-card {
            width: 100%;
            max-width: 350px;
        }
    }

    /* ========================= */
  .proptech-challenge-section {
    padding: 120px 0;
    /* background: linear-gradient(50deg, #040b17 0%, #0f2e67 100%); */
    text-align: center;
    /* background: linear-gradient(rgb(255 255 255 / 10%), rgb(255 255 255 / 84%)), url(../img/bizz/building3.jpg) no-repeat center center;  */
    background: linear-gradient(rgb(4 13 26 / 68%), rgb(4 11 23 / 84%)), url(../img/bizz/building3.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
/* .proptech-challenge-section::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 350px;
    height: 350px;
    background: url(../img/bizz/dot.png) no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: 1;
    filter: contrast(0.5);
} */
/* MAIN HEADING (Match WHY THIS SUMMIT EXISTS) */
.pc-main-heading {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.pc-main-heading span{
    color: #0056d2;
}
/* SUB HEADING */
.pc-sub-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* DESCRIPTION */
.pc-description {
    max-width: max-content;
    margin: 0 auto 50px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}

/* GRID */
.pc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* CARDS */
.pc-card {
       /* background: radial-gradient(300.16% 53.29% at 100% 98.08%, #1f5edc 0%, #15151500 45.18% 45.18%); */
    background: #ffffff url(../img/bizz/sales-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 40px 30px;
    border-radius: 16px;
    /* border: 1px solid #002e8b; */
    /* background: linear-gradient(45deg, #0b224c, #276fff); */
    border-radius: 12px;
    border: 1px solid rgb(24 45 87);
    /* box-shadow: 0 0 8px rgba(25, 75, 174, 0.6), 0 0 20px rgba(25, 75, 174, 0.4), inset 0 0 20px rgba(25, 75, 174, 0.3); */
    transition: all 3s ease-in-out;
}

.pc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: transparent;
    /* background:radial-gradient(300.16% 100.29% at 100% 98.08%, #1f5edc 0%, #15151500 45.18% 45.18%); */
}

.pc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    /* border: 4px solid #6698ff; */
    padding: 5px;
    /* background: linear-gradient(135deg, #ffffff, #ffffff); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

.pc-card h4 {
        font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.pc-card p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: .5px;
}

/* BOTTOM */
.pc-bottom {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.pc-btn {
    background: linear-gradient(90deg,#1f5edc,#0a1f44);
    padding: 10px 26px;
    font-size: 16px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.solution-section {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgb(0 0 0 / 61%), rgb(0 0 0 / 85%)), url(../img/bizz/building2.jpg) no-repeat center center;
    background-size: cover;
    /* background-attachment: fixed; */
}

.solution-heading {
    font-size: 48px;
    font-weight: 800;
    color: #0056d2;
    margin-bottom: 10px;
}

.solution-heading span {
    color: #ffffff;
}

.solution-sub {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.solution-desc {
    max-width: max-content;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    position: relative;
    background: #ffffff url(../img/bizz/meet-bg.jpeg) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    padding: 40px 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(25, 75, 174, 0.6), 0 0 20px rgba(25, 75, 174, 0.4), inset 0 0 20px rgba(25, 75, 174, 0.3);

}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.solution-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: #4281ff;
    margin-bottom: 10px;
    letter-spacing: .2px;
}

.solution-card p {
    font-size: 16px;
    color: #ffffff;
    margin-top: 25px;
}

.solution-btn {
    background: linear-gradient(90deg,#1f5edc,#0a1f44);
    padding: 14px 45px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.audience-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f3f5f9 0%, #e9edf3 100%);
    text-align: center;
}

.audience-heading {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.audience-heading span {
    color: #1f5edc;
}

.audience-sub {
    font-size: 18px;
    font-weight: 700;
    color: #1f5edc;
    margin-bottom: 25px;
}

.audience-desc {
    max-width: max-content;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #1f1f1f;
    line-height: 1.5;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.audience-card {
 
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(rgb(0 0 0 / 21%), rgb(0 0 0 / 46%)), url(../img/bizz/built-bg.jpeg) no-repeat;
    background-position: center center;
    background-size: cover;
    /* border: 1px solid var(--divider-color); */
    border-radius: 20px;
    padding: 30px 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.audience-card h4 {
        font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: .2px;
}

.audience-card p {
        font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 25px;
}

.audience-btn {
    background: linear-gradient(90deg,#1f5edc,#0a1f44);
    padding: 14px 45px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.roi-section {
    padding: 120px 0;
    background: #ffffff;
    text-align: center;
}

.roi-heading {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.roi-heading span {
    color: #1f5edc;
}

.roi-sub {
    font-size: 18px;
    font-weight: 700;
    color: #1f5edc;
    margin-bottom: 25px;
}

.roi-desc {
    max-width: max-content;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #1f1f1f;
    line-height: 1.4;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.roi-card {
    /* padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e3e7ee; */
    border: 1px solid #e3e7ee;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(rgb(0 0 0 / 21%), rgb(0 0 0 / 46%)), url(../img/bizz/lucknow-bg.jpeg) no-repeat;
    background-position: center center;
    background-size: cover;
    /* border: 1px solid var(--divider-color); */
    border-radius: 20px;
    padding: 30px 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.roi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.roi-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: .2px;
}

.roi-card p {
        font-size: 14px;
    color: #ffffff;
    line-height: 20px;
    margin-top: 25px;
    font-weight: 500;
    letter-spacing: .2px;
}

.roi-bottom {
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.roi-btn {
    background: linear-gradient(90deg,#1f5edc,#0a1f44);
    padding: 14px 45px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.urgency-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #f3f5f9 0%, #e9edf3 100%);
    text-align: center;
}

.urgency-heading {
    font-size: 48px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.urgency-heading span {
    color: #1f5edc;
}

.urgency-sub {
    font-size: 18px;
    font-weight: 700;
    color: #1f5edc;
    margin-bottom: 25px;
}

.urgency-desc {
        max-width: max-content;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #1f1f1f;
    line-height: 1.5;
}

.urgency-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.urgency-item {
    /* background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e3e7ee; */
        position: relative;
    background: #ffffff url(../img/bizz/first-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    /* border: 1px solid var(--divider-color); */
    border-radius: 20px;
    padding: 30px 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.urgency-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.urgency-item h4 {
    letter-spacing: .2px;
    font-size: 20px;
    font-weight: 600;
    color: #4482ff;
    margin-bottom: 10px;
}

.urgency-item p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin-top: 25px;
}

.urgency-btn {
    background: linear-gradient(90deg,#1f5edc,#0a1f44);
    padding: 14px 45px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.final-cta-section {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg,#0a1f44,#000814);
    color: #fff;
    text-align: center;
}

.final-heading {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-heading span {
    color: #1f5edc;
}

.final-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
}

.final-note {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 35px;
}

.final-btn {
    background: linear-gradient(90deg,#1f5edc,#3c8cff);
    padding: 16px 50px;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.final-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(31,94,220,0.4);
}
/* ================= RESPONSIVE FIXES ================= */

/* Tablet */
@media (max-width: 1024px) {

    .pc-grid,
    .audience-grid,
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .urgency-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-main-heading,
    .solution-heading,
    .audience-heading,
    .roi-heading,
    .urgency-heading,
    .final-heading {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .pc-grid,
    .audience-grid,
    .roi-grid,
    .solution-grid,
    .urgency-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .proptech-challenge-section,
    .solution-section,
    .audience-section,
    .roi-section,
    .urgency-section,
    .final-cta-section {
        padding: 80px 20px;
    }

    .pc-main-heading,
    .solution-heading,
    .audience-heading,
    .roi-heading,
    .urgency-heading,
    .final-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .pc-description,
    .solution-desc,
    .audience-desc,
    .roi-desc,
    .urgency-desc,
    .final-desc {
        font-size: 14px;
        font-weight: 400;
    }
    .urgency-sub, .audience-sub {
    font-size: 16px;
    line-height: 1.2;
    }
    .solution-sub {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    }
    .pc-sub-heading {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


 /* ----------home page speaker image------------- */
/* ===== WRAPPER ===== */
.main-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* ===== GRID CONTAINER ===== */
.speaker-container {
  display: grid;
  gap: 24px;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ===== TABLET ===== */
@media (max-width: 1199px) {
  .speaker-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .speaker-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
  }
}

/* ===== CARD ===== */
.speaker-cards {
  /* background: linear-gradient(180deg, #0b2345, #071a33); */
  background: linear-gradient(rgb(5 8 26 / 66%), rgb(5 8 26 / 37%)), url(../img/speaker/speaker-bg.png) no-repeat center center;
  background-size: cover;
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  color: #fff;
  width: 100%;
  min-width: 0;
  transition: 0.25s ease;
}

.speaker-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* ===== IMAGE ===== */
.speaker-cards img {
  width: 100%;
  /* height: 210px; */
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

/* ===== TEXT ===== */
.speaker-cards h4 {
  font-size: 16px;
  margin: 6px 0;
  letter-spacing: 0.7px;
   font-weight: 500;
  text-transform: uppercase;

}

.roles {
  font-size: 14px;
  color: #ebf6ff;
  text-transform: uppercase;
}

.tags {
  font-size: 12px;
  color: #9cc4ff;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
}
/* ================================== */