.elementor-4062 .elementor-element.elementor-element-3ac9a00{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4062 .elementor-element.elementor-element-8697f75{--display:flex;--margin-top:16px;--margin-bottom:16px;--margin-left:0px;--margin-right:0px;}@media(max-width:767px){.elementor-4062 .elementor-element.elementor-element-3ac9a00{--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4062 .elementor-element.elementor-element-8697f75{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4062 .elementor-element.elementor-element-bd11ab3 > .elementor-widget-container{margin:12px 12px 12px 12px;}}@media(min-width:768px){.elementor-4062 .elementor-element.elementor-element-3ac9a00{--width:1200px;}}/* Start custom CSS for html, class: .elementor-element-bd11ab3 */@keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Header with Logo */
        .nri-property-tds-calc .header-section {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            text-align: center;
        }

        .nri-property-tds-calc h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1A1A1A;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .nri-property-tds-calc .highlight-text {
            color: #2B7FFF;
        }

        .nri-property-tds-calc .subtitle {
            font-size: 1.125rem;
            color: #6B7280;
            font-weight: 400;
        }

        .nri-property-tds-calc .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .nri-property-tds-calc .card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #E5E7EB;
            transition: all 0.3s ease;
        }

        .nri-property-tds-calc .card:hover {
            box-shadow: 0 8px 24px var(--shadow);
            transform: translateY(-4px);
        }

        .nri-property-tds-calc .card-header {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1A1A1A;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid #2B7FFF;
            padding-left: 0;
            background: transparent;
        }

        .nri-property-tds-calc .form-group {
            margin-bottom: 1.5rem;
        }

        .nri-property-tds-calc label {
            display: block;
            font-weight: 600;
            color: #1A1A1A;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .nri-property-tds-calc .input-wrapper {
            position: relative;
        }

        .nri-property-tds-calc .currency-symbol {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #6B7280;
            font-weight: 600;
            font-size: 1.125rem;
        }

        .nri-property-tds-calc input[type="number"] {
            width: 100%;
            padding: 1rem 1rem 1rem 2.5rem;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            font-size: 1.125rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: #F9FAFB;
            font-weight: 500;
        }

        .nri-property-tds-calc input[type="number"]:focus {
            outline: none;
            border-color: #2B7FFF;
            box-shadow: 0 0 0 4px #E8F4FF;
            background: #FFFFFF;
        }

        .nri-property-tds-calc .radio-group {
            display: flex;
            gap: 1rem;
        }

        .nri-property-tds-calc .radio-option {
            flex: 1;
        }

        .nri-property-tds-calc .radio-option input[type="radio"] {
            display: none;
        }

        .nri-property-tds-calc .radio-option label {
            display: block;
            padding: 1rem;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 600;
            background: #F9FAFB;
        }

        .nri-property-tds-calc .radio-option input[type="radio"]:checked + label {
            background: #2B7FFF;
            color: white;
            border-color: #2B7FFF;
            box-shadow: 0 4px 12px var(--shadow);
        }

        .nri-property-tds-calc .radio-option label:hover {
            border-color: #2B7FFF;
        }

        .nri-property-tds-calc button {
            width: 100%;
            padding: 1.25rem;
            background: #2B7FFF;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.125rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 4px 12px var(--shadow);
        }

        .nri-property-tds-calc button:hover {
            background: #1E5FD9;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
        }

       .nri-property-tds-calc button:active {
            transform: translateY(0);
        }

        .nri-property-tds-calc .results {
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .nri-property-tds-calc .result-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #E5E7EB;
        }

        .nri-property-tds-calc .result-item:last-child {
            border-bottom: none;
        }

        .nri-property-tds-calc .result-label {
            color: #6B7280;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .nri-property-tds-calc .result-value {
            font-weight: 700;
            font-size: 1.125rem;
            color: #1A1A1A;
        }

        .nri-property-tds-calc .breakdown-section {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid #E5E7EB;
        }

        .nri-property-tds-calc .breakdown-title {
            font-weight: 700;
            color: #1A1A1A;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .nri-property-tds-calc .calculation-step {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            font-size: 0.9rem;
        }

        .nri-property-tds-calc .calculation-step .label {
            color: #6B7280;
            font-weight: 500;
        }

        .calculation-step .value {
            font-weight: 600;
            color: #1A1A1A;
        }

        .nri-property-tds-calc .highlight-box {
            background: linear-gradient(135deg, #2B7FFF 0%, #1E5FD9 100%);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            margin-top: 1.5rem;
            box-shadow: 0 8px 24px var(--shadow);
        }

        .nri-property-tds-calc .highlight-box .amount {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 0.5rem 0;
            letter-spacing: -0.02em;
        }

        .nri-property-tds-calc .highlight-box .description {
            font-size: 0.95rem;
            opacity: 0.95;
            font-weight: 500;
        }

        .nri-property-tds-calc .info-section {
            background: #E8F4FF;
            border-left: 4px solid #2B7FFF;
            padding: 1.5rem;
            border-radius: 12px;
            margin-top: 2rem;
        }

        .nri-property-tds-calc .info-section h3 {
            color: #1A1A1A;
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
            font-weight: 700;
        }

        .nri-property-tds-calc .info-section ul {
            list-style: none;
            padding-left: 0;
        }

        .nri-property-tds-calc .info-section li {
            padding: 0.5rem 0;
            color: #6B7280;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .nri-property-tds-calc .info-section li::before {
            content: "✓";
            color: #2B7FFF;
            font-weight: bold;
            display: inline-block;
            width: 1.5em;
            margin-right: 0.5rem;
            font-size: 1.1rem;
        }

        .nri-property-tds-calc .rate-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .nri-property-tds-calc .rate-table th {
            background: #2B7FFF;
            color: white;
            padding: 1rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .nri-property-tds-calc .rate-table th:first-child {
            border-radius: 8px 0 0 0;
        }

        .nri-property-tds-calc .rate-table th:last-child {
            border-radius: 0 8px 0 0;
        }

        .nri-property-tds-calc .rate-table td {
            padding: 1rem;
            border-bottom: 1px solid #E5E7EB;
            font-weight: 500;
        }

        .nri-property-tds-calc .rate-table tr:hover {
            background: #F9FAFB;
        }

        .nri-property-tds-calc .rate-table tr:last-child td {
            border-bottom: none;
        }

        .nri-property-tds-calc .full-width {
            grid-column: 1 / -1;
        }

        .nri-property-tds-calc .table-section-title {
            color: #1A1A1A;
            margin: 2rem 0 1rem;
            font-size: 1.125rem;
            font-weight: 700;
            padding-left: 0.5rem;
            border-left: 4px solid #2B7FFF;
        }

        .nri-property-tds-calc .table-section-title:first-of-type {
            margin-top: 0;
        }

      
        .nri-property-tds-calc .footer-info {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #E5E7EB;
            color: #6B7280;
            font-size: 0.875rem;
        }

        /* Blue dot accent (from logo) */
        .nri-property-tds-calc .blue-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #2B7FFF;
            border-radius: 50%;
            margin: 0 4px;
        }

          @media (max-width: 768px) {
            .nri-property-tds-calc h3 {
                font-size: 2rem;
            }

            .nri-property-tds-calc .calculator-grid {
                grid-template-columns: 1fr;
            }

            .nri-property-tds-calc .card {
                padding: 1.5rem;
            }

            .nri-property-tds-calc .highlight-box .amount {
                font-size: 2rem;
            }
        }
          @media (max-width: 767px) {
            .nri-property-tds-calc .header-section{
                padding:0;
                box-shadow: none;
            }
            .nri-property-tds-calc .card{
                padding:0;
                box-shadow: none;
                border: none;
            }
          }/* End custom CSS */