:root {
    --brand: #01b5fb;
    --sub: #6ac754;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

#patta ,#chitta{
    scroll-margin-top: 100px;
}



        .land-services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .land-section-header {
            text-align: center;
            margin-bottom: 60px;
            color: white;
        }

        .land-section-header h2 {
            font-size: 30px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .land-section-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        .land-service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border:1px solid rgb(123, 123, 123);
            box-shadow: var(--shadow);
        }

        .land-service-item:hover {
            transform: translateY(-10px);
        }

        .land-service-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

        .land-service-image img {
            width: 100%;
            height: 90%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .land-service-item:hover .land-service-image img {
            transform: scale(1.1);
        }

        .land-service-content {
            padding: 40px;
        }

        .land-service-content h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            font-weight: 700;
        }

        .land-service-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 25px;
        }

        .land-service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .land-service-features li {
            
            color: #555;
            font-size: 1rem;
            display: flex;
            align-items: center;
        }

        .land-service-btn {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .land-service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Reverse layout for alternating items */
        .land-service-item.land-reverse {
            grid-template-columns: 1fr 1fr;
        }

        .land-service-item.land-reverse .land-service-image {
            order: 2;
        }

        .land-service-item.land-reverse .land-service-content {
            order: 1;
        }

        @media (max-width: 768px) {
            .land-service-item,
            .land-service-item.land-reverse {
                grid-template-columns: 1fr;
            }

            .land-service-item.land-reverse .land-service-image,
            .land-service-item.land-reverse .land-service-content {
                order: 0;
            }

            .land-section-header h2 {
                font-size: 2rem;
            }

            .land-service-content h3 {
                font-size: 1.8rem;
            }

            .land-service-image {
                height: 300px;
            }

            .land-service-image img {
            width: 100%;
            height: 90%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        }

        .land-ser-icon{
            font-size: 30px;
            margin-right: 10px;
            color:var(--brand);
        }



        /* form */
  .contact-form {
    max-width: 95%;
    margin: auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: linear-gradient(rgba(255, 255, 255, 0.625), rgba(255, 255, 255, 0.532)), url('../img/image-3/form-bg.jpg') center/cover no-repeat;
    box-shadow: var(--shadow);
}
@media (max-width: 768px) {
    .contact-form {
       max-width: 95%;
    }
}


.contact-form label {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
}


.btn-submit {
    margin:10px auto ;
    display: block;
    width: 200px;
    background:var(--brand);
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    cursor: pointer;
    border:1px solid var(--brand);
}

.btn-submit:hover {
    background: white;
    border:1px solid var(--brand);
    color:var(--brand);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }
}