
    /*----------body part--------*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .nav-link.active {
            color: #fff; /* Active link color */
            background-color: #007bff; /* Active background color */
        }

        /*------------Topbar------------ */
        .topbar {
            background: linear-gradient(135deg, #393d52 0%, #9368be 100%);
            color: white;
            padding: 12px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .topbar .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .topbar .logo1 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }


        .hero-section .logo1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
        }


        .hero-section .logo1 {
            width: 380px;
            height: 380px;
            border-radius: 50%;
            overflow: hidden;
           /* border: 3px solid white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
            margin-bottom: 1rem;

        }


        .topbar .logo1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .topbar .text h1 {
            font-size: 22px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .topbar .text p {
            font-size: 13px;
            opacity: 0.95;
            font-weight: 300;
        }

        .topbar .right-info {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .topbar .right-info a {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .topbar .right-info a:hover {
            background: white;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .topbar .right-info a i {
            color: white;
            font-size: 18px;
        }

        .topbar .right-info a:hover i {
            color: #667eea;
        }

        /*--------------- Navigation (it means menu bar-----------*/
        header {
            background: white;
            padding: 15px 5%;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 74px;
            z-index: 999;
        }

        header nav {
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }

        header nav a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        header nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

        header nav a:hover {
            color: #667eea;
        }

        header nav a:hover::after {
            width: 80%;
        }

        /*----------------- Hero Section  (First logo Page) -----------*/
        .bg-video {
           position: absolute;
           top: 0;
          left: 0;
          width: 100%;
          height: 100%;
           object-fit: cover;  
           z-index: -1;
          }
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
           /* background: linear-gradient(135deg, rgb(0 0 0 / 90%) 0%, rgb(212 195 230 / 90%) 100%), url(Building.jpeg) center / cover;*/
            background-attachment: fixed;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-section h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }

        .hero-section .subtitle {
            font-size: 22px;
            margin-bottom: 30px;
            font-weight: 300;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-section .tagline {
            font-size: 18px;
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        .my-button {
            background: white;
            color: #667eea;
            border: none;
            padding: 16px 45px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .my-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #667eea 0%,);
            color: white;
        }

        /*---------- Section Styling  it means box chya varch all text---------*/

        .section-title {
            text-align: center;
            padding: 80px 20px 20px;
            background: #f8f9fa;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 800;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 16px;
            color: #666;
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.8;
        }


          .btn-view{
    display:inline-block;
    padding:8px 12px;
    margin-top:10px;
    border-radius:6px;
    text-decoration:none;
    border:1px solid #007bff;
    background:transparent;
    cursor:pointer;
  }
  .btn-view:hover{ background: rgba(0,123,255,0.08); }
        /* -----------Property Section  All Boxses------------ */
        .property-section {
            padding: 60px 5% 80px;
            background: #f8f9fa;
        }

        .property-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
           
  
  overflow-x: auto; 
  white-space: nowrap;      /* LEFT + RIGHT scroll */
  overflow-y: hidden;
  padding-bottom: 20px;
  scroll-behavior: smooth;
        }

        .card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
        }

        .image-container {
            position: relative;
            height: 240px;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card:hover .image-container img {
            transform: scale(1.1);
        }

        .status {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 8px 18px;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .details {
            padding: 25px;
        }

        .details h3 {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            margin-bottom: 8px;
        }

        .builder {
            font-size: 13px;
            color: #667eea;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .features {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .price {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin: 15px 0;
        }

        .tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .tag {
            background: #f0f0f0;
            color: #666;
            font-size: 11px;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 15px;
            border: 1px solid #e0e0e0;
        }
 
/* Fixed top-left view button */
.view-btn {
 position: relative;
  padding: 8px 18px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 5;
  font-size: 16px;
}
/* Card width fix */
.card {
  min-width: 100px;   /* horizontal scroll साठी */
}

/* Hidden cards */
.hidden {
  display: none;
}
/* -------- Mobile Fix -------- */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh;    /* text कट होणार नाही */
    }

    .bg-video {
        height: 100%;
        object-fit: cover;
    }

    .hero-section h1 {
        font-size: 32px;
    }

}

         /* ---------- [About Section] ---------- */
        .about-section {
             display: flex; 
             align-items: center;
             justify-content: space-between; 
             padding: 100px 5%; 
             gap: 50px;
             background: white; 
            }

        .about-text {
             flex: 1;
             }

        .about-text h2 {
             font-size: 42px;
              margin-bottom: 20px; 
            }

        .about-text p {
             color: #666; 
             line-height: 1.8; 
             margin-bottom: 25px;
            }

        .about-text a { 
            background: linear-gradient(135deg, #667eea, #764ba2); 
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s; 
        }
        .about-text a:hover {
             opacity: 0.9; 
            }

        .about-image { 
            flex: 1;
         }

        .about-image img {
             width: 100%; 
             border-radius: 20px; 
             box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
            }

        /* ---------- [Contact Section] ---------- */
        .contact-section {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-align: center;
            padding: 80px 20px; 
        }

        .contact-section h2 { 
            font-size: 38px;
            margin-bottom: 10px; 
        }

        .contact-section p {
             font-size: 16px;
             margin-bottom: 10px; 
             opacity: 0.9;
             }

        .contact-info { 
            display: flex; 
            justify-content: center; 
            gap: 30px; 
            flex-wrap: wrap; 
        }

        .contact-info div {
             background: rgba(255,255,255,0.15); 
             padding: 20px 30px; 
             border-radius: 15px; 
             min-width: 250px; 
            }

        .contact-info i {
            font-size: 22px; 
            margin-bottom: 10px; 
        }

        /* ---------- [Footer] ---------- */
        footer { 
            background: #222; 
            color: #ccc; 
            text-align: center; 
            padding: 30px 20px; 
            font-size: 14px; 
        }

        footer a { 
            color: #667eea; 
            text-decoration: none; 
        }

        footer a:hover {
             text-decoration: underline; 
            }

        /* ---------- [Responsive] ---------- */
        @media (max-width: 768px) {

            .about-section {
                flex-direction: column; 
                text-align: center; 
            }
            .hero-section h1 {
                font-size: 38px; 
            }
        }
    @media (max-width: 768px) {
    .hero-section .logo1 {
        width: 200px;
        height: 200px;
    }
}
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 34px;
    }
    .hero-section .subtitle {
        font-size: 18px;
    }
    .hero-section .tagline {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    header nav {
        gap: 15px;
    }
    header nav a {
        font-size: 12px;
        padding: 6px 12px;
    }
}
@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
        gap: 20px;
    }
    .about-text h2 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .contact-info div {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 0;
    }
    .topbar .logo1 {
        width: 40px;
        height: 40px;
    }
}
