@charset "utf-8";
/* CSS Document */


/* =====================================================
   MAIN SECTION
===================================================== */

.connectivity-section {
    position: relative;
    width: 100%;
    min-height: 680px;
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
    background: #f4f1eb;
}


/* =====================================================
   LEFT VIDEO
===================================================== */

.connectivity-media {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
}

.connectivity-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.connectivity-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
}


/* =====================================================
   MAP TITLE
===================================================== */

.map-title {
    position: absolute;
    right: 50px;
    top: 50px;
    z-index: 5;
}

.map-title span {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -1px;
}


/* =====================================================
   RIGHT MAP
===================================================== */

.connectivity-map {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.9) 0%,
            rgba(244,241,235,0.95) 40%,
            rgba(229,224,214,1) 100%
        );
}


/* =====================================================
   SATELLITE BUTTON
===================================================== */

.satellite-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 50;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 11px 16px;

    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50px;

    background: rgba(255,255,255,0.85);

    color: #222;

    font-size: 12px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.satellite-btn:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

.satellite-btn svg {
    width: 14px;
    height: 14px;
}


/* =====================================================
   MAP RINGS
===================================================== */

.map-rings {
    position: absolute;
    inset: 0;
    overflow: hidden;
}


/* =====================================================
   CENTER LOGO
===================================================== */

.map-logo-bg {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 170px;
    height: 170px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(255,255,255,0.35);

    border: 1px solid rgba(0,0,0,0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}

.map-logo-bg::before {
    content: "";
    position: absolute;

    width: 230px;
    height: 230px;

    border: 1px solid rgba(0,0,0,0.08);

    border-radius: 50%;
}

.map-logo-bg::after {
    content: "";
    position: absolute;

    width: 310px;
    height: 310px;

    border: 1px solid rgba(0,0,0,0.06);

    border-radius: 50%;
}


.logo-shape {
    position: relative;
    z-index: 5;

    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shape img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}


/* =====================================================
   LOCATIONS CONTAINER
===================================================== */

.locations-container {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 10;
}


/* =====================================================
   LOCATION
===================================================== */

.location {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 2px;

    cursor: pointer;

    transform: translate(-50%, -50%);

    z-index: 20;

    white-space: nowrap;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =====================================================
   LOCATION PIN
===================================================== */

.location-pin {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid rgba(0,0,0,0.12);

    box-shadow:
        0 5px 20px rgba(0,0,0,0.12);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.location-pin img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}


/* =====================================================
   LOCATION NAME
===================================================== */

.location-name {
    padding: 7px 11px;

    border-radius: 20px;

    background: rgba(255,255,255,0.88);

    border: 1px solid rgba(0,0,0,0.08);

    font-size: 11px;

    color: #222;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.06);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


/* =====================================================
   ACTIVE LOCATION
===================================================== */

.location.active {
    z-index: 40;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}

.location.active .location-pin {
    transform: scale(1.15);
    background: #222;
}

.location.active .location-name {
    background: #222;
    color: #fff;
}


/* =====================================================
   HOVER
===================================================== */

.location:hover {
    z-index: 50;

    transform:
        translate(-50%, -50%)
        scale(1.08);
}

.location:hover .location-pin {
    transform: scale(1.1);
}


/* =====================================================
   17 PROJECT POSITIONS
===================================================== */

/* Row / upper area */

.loc-1 {
    top: 18%;
    left: 18%;
}

.loc-2 {
    top: 30%;
    left: 10%;
}

.loc-3 {
    top: 45%;
    left: 16%;
}

.loc-4 {
    top: 20%;
    left: 38%;
}

.loc-5 {
    top: 63%;
    left: 12%;
}

.loc-6 {
    top: 78%;
    left: 27%;
}

.loc-7 {
    top: 73%;
    left: 48%;
}

.loc-8 {
    top: 57%;
    left: 61%;
}

.loc-9 {
    top: 34%;
    left: 69%;
}

.loc-10 {
    top: 17%;
    left: 63%;
}


/* Additional locations */

.loc-11 {
    top: 10%;
    left: 48%;
}

.loc-12 {
    top: 43%;
    left: 80%;
}

.loc-13 {
    top: 68%;
    left: 78%;
}

.loc-14 {
    top: 83%;
    left: 60%;
}

.loc-15 {
    top: 87%;
    left: 41%;
}

.loc-16 {
    top: 52%;
    left: 88%;
}

.loc-17 {
    top: 27%;

    left: 87%;
}


/* =====================================================
   PROPERTY CARD
===================================================== */

.property-card {
    position: absolute;

    right: 30px;
    bottom: 30px;

    width: min(430px, calc(100% - 60px));

    display: flex;

    background: rgba(255,255,255,0.95);

    border-radius: 8px;

    overflow: hidden;

    z-index: 60;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.15);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =====================================================
   PROPERTY IMAGE
===================================================== */

.property-image {
    width: 145px;
    min-width: 145px;

/*    height: 160px;*/

    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}


/* =====================================================
   PROPERTY CONTENT
===================================================== */

.property-content {
    flex: 1;

    padding: 20px;

    min-width: 0;

    display: flex;
    flex-direction: column;
}


/* =====================================================
   PROPERTY META
===================================================== */

.property-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 12px;

    font-size: 10px;

    color: #777;
}

.property-location {
    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.property-distance {
    flex-shrink: 0;

    color: #222;

    font-weight: 500;
}


/* =====================================================
   PROPERTY TITLE
===================================================== */

.property-title {
    font-size: 24px;

    line-height: 1.15;

    color: #222;

    font-weight: 500;

    margin-bottom: 7px;
}


/* =====================================================
   PROPERTY AREA
===================================================== */

.property-area {
    font-size: 12px;

    color: #777;

    margin-bottom: auto;
}


/* =====================================================
   PROPERTY FOOTER
===================================================== */

.property-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 20px;
}


/* =====================================================
   COUNT
===================================================== */

.property-count {
    font-size: 11px;

    color: #777;
}


/* =====================================================
   ARROWS
===================================================== */

.property-arrows {
    display: flex;

    align-items: center;

    gap: 7px;
}

.property-arrows button {
    width: 34px;
    height: 34px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(0,0,0,0.12);

    background: #fff;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.property-arrows button:hover {
    background: #222;

    transform: translateY(-2px);
}

.property-arrows button:hover img {
    filter: brightness(0) invert(1);
}

.property-arrows img {
    width: 14px;
    height: 14px;

    object-fit: contain;

    transition:
        filter 0.3s ease;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .connectivity-section {
        grid-template-columns: 40% 60%;
    }

    .map-title {
        left: 30px;
        bottom: 30px;
    }

    .map-title span {
        font-size: 32px;
    }

    .property-card {
        width: min(380px, calc(100% - 40px));
        left: 20px;
        bottom: 20px;
    }

    .location-name {
        font-size: 9px;
        padding: 6px 8px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .connectivity-section {
        display: block;
        min-height: auto;
    }


    /* VIDEO */

    .connectivity-media {
        height: 280px;
    }

    .map-title {
        left: 20px;
        bottom: 20px;
    }

    .map-title span {
        font-size: 27px;
    }


    /* MAP */

    .connectivity-map {
        min-height: 650px;
        height: 650px;
    }


    /* BUTTON */

    .satellite-btn {
        top: 15px;
        right: 15px;

        padding: 9px 12px;
    }


    /* CENTER */

    .map-logo-bg {
        width: 110px;
        height: 110px;
    }

    .map-logo-bg::before {
        width: 160px;
        height: 160px;
    }

    .map-logo-bg::after {
        width: 220px;
        height: 220px;
    }

    .logo-shape img {
        width: 50px;
        height: 50px;
    }


    /* LOCATIONS */

    .location {
        gap: 4px;
    }

    .location-pin {
        width: 25px;
        height: 25px;
    }

    .location-pin img {
        width: 13px;
        height: 13px;
    }

    .location-name {
        font-size: 8px;

        padding: 5px 7px;
    }


    /* CARD */

    .property-card {
        left: 15px;
        right: 15px;
        bottom: 15px;

        width: auto;

        min-height: 125px;
    }

    .property-image {
        width: 105px;
        min-width: 105px;
        height: 145px;
    }

    .property-content {
        padding: 14px;
    }

    .property-title {
        font-size: 20px;
    }

    .property-meta {
        display: block;

        line-height: 1.5;
    }

    .property-location {
        display: block;

        margin-bottom: 3px;
    }

    .property-distance {
        display: block;
    }

    .property-area {
        font-size: 10px;
    }

    .property-footer {
        margin-top: 10px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .connectivity-map {
        height: 600px;
        min-height: 600px;
    }

    .property-image {
        width: 90px;
        min-width: 90px;
        height: 135px;
    }

    .property-title {
        font-size: 17px;
    }

    .property-arrows button {
        width: 30px;
        height: 30px;
    }

    .loc-2,
    .loc-5,
    .loc-12,
    .loc-16,
    .loc-17 {
        transform: translate(-50%, -50%) scale(0.9);
    }

}

		 
		 .connectivity-silvassa .property-card{
left:30px;
}
</style> 
		
		
		<style>
		.locations-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Every location starts from center */
.locations-container .location {
    position: absolute;
    left: 50%;
    top: 50%;
    width: max-content;

    /* JS sets --angle and --radius */
    transform:
        translate(-50%, -50%)
        rotate(var(--angle))
        translateY(calc(-1 * var(--radius)))
        rotate(calc(-1 * var(--angle)));

    cursor: pointer;
    z-index: 2;
}

/* Location pin */
.location-pin {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-pin img {
      display: block;
}

/* Location text */
.location-name {
    margin-top: 6px;
    text-align: center;
    white-space: nowrap;
}

/* Active location */
.location.active {
    z-index: 10;
}

.location.active .location-pin {
    transform: scale(1.15);
}


/* ==============================
   MOBILE
   ============================== */

@media (max-width: 767px) {

    .locations-container {
        height: 400px;
    }

    .location-pin {
        width: 30px;
        height: 30px;
    }

    .location-name {
        font-size: 11px;
    }

}

.connectivity-silvassa .map-title {
    left: 50px;
}